From Julian.Tenney at nottingham.ac.uk Tue Jan 24 14:20:02 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 24 Jan 2012 14:20:02 +0000 Subject: [Xerte-dev] Re: icons killed on page turn? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA0245B7D@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA0245B7D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA0245B92@EXCHANGE1.ad.nottingham.ac.uk> I had thought about handling this in the engine and having something in XMLNode.prototype.duplicate() that would say If (this.built != true){ //dupe away... this.built = true; } But wasn't sure if you'd ever want to run it more than once. I suppose that could be overridden, like icon.nextSibling.duplicate(n, true);// insists on the dupe even if it's been done before. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 24 January 2012 14:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: icons killed on page turn? More or less, yes. If you initialise anything in there, it won't be initialised again when the page is re-made. What it stops happening is this: SCR //icon.nextSibling.duplicate(numOfIcons - 1) DIS //an icon... ...shows numOfIcons icons, right? If you let that dupe code run again when the page is re-encountered, you're gonna end up with twice as many icons etc. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 24 January 2012 14:10 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: icons killed on page turn? So that logic should really only wrap dupe statements? ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte-dev at lists.nottingham.ac.uk Date: Tue, 24 Jan 2012 14:02:23 +0000 Subject: [Xerte-dev] Re: icons killed on page turn? icon is the xml. So it only needs the duping done once: if the resulting movieclip is killed, the xml still exists in its manipulated state ready to be parsed again. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 24 January 2012 14:00 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] icons killed on page turn? J, when do icons get killed? I have this logic in calcs all over the place: if (icon.built != 'true') { blah and thought that it would reset to undefined upon page turn, but I'm finding that not the case. ?? 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Tue Jan 24 14:23:38 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 24 Jan 2012 09:23:38 -0500 Subject: [Xerte-dev] Re: icons killed on page turn? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA0245B7D@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , , , , , , , , , ,,, , , , , , , , , , , , , , , , , , <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com>, , , , , , , , , , , , , , , , , , , , , , , ,,, , , , , , , , , , , , , , , , , , , , , , ,,, , , , , , , , , , , , , , , , , , , , , , ,,, , , , , , , , , , ,,, , , , , , , , , , , , , , ,,, , , , , , , , , , , , , , ,,, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0BA0245A6D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0BA0245A7E@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0BA0245A96@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0BA0245AB1@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0BA0245B43@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0BA0245B59@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0BA0245B7D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Yes, but I gaffed the point about it creating the underlying xml.I though it functioned within the context of "page" to prevent re-dupes happening while moving around within the contained page logic. So yes, my problems stem from arrays not being re-populated when I was expecting them to be. From: Julian.Tenney at nottingham.ac.uk To: xerte-dev at lists.nottingham.ac.uk Date: Tue, 24 Jan 2012 14:13:24 +0000 Subject: [Xerte-dev] Re: icons killed on page turn? More or less, yes. If you initialise anything in there, it won?t be initialised again when the page is re-made. What it stops happening is this: SCR //icon.nextSibling.duplicate(numOfIcons ? 1)DIS //an icon? ?shows numOfIcons icons, right? If you let that dupe code run again when the page is re-encountered, you?re gonna end up with twice as many icons etc. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 24 January 2012 14:10 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: icons killed on page turn? So that logic should really only wrap dupe statements? From: Julian.Tenney at nottingham.ac.uk To: xerte-dev at lists.nottingham.ac.uk Date: Tue, 24 Jan 2012 14:02:23 +0000 Subject: [Xerte-dev] Re: icons killed on page turn?icon is the xml. So it only needs the duping done once: if the resulting movieclip is killed, the xml still exists in its manipulated state ready to be parsed again. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 24 January 2012 14:00 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] icons killed on page turn? J, when do icons get killed? I have this logic in calcs all over the place: if (icon.built != 'true') { blah and thought that it would reset to undefined upon page turn, but I'm finding that not the case. ?? 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Tue Jan 24 20:42:27 2012 From: reijnders at tor.nl (Tom Reijnders) Date: Tue, 24 Jan 2012 21:42:27 +0100 Subject: [Xerte-dev] Re: Problem with auto numbering of folders when creating individual page wizard projects In-Reply-To: References: Message-ID: <20120124214227.96136h96e9ubw8tv@server.tor.nl> Oops, that can't be right. I'll have a look when I am back from the states. (Possibly earlier if I can get to my machine) Citeren Kemp Johnathan : > I am using Tom's latest editor.swf in desktop Xerte to test the new > individual page templates. > > I use Pages / Create a new page project. > > Then I add pages by selecting pages from the projects page menus e.g. Pages > / Interactivity / Annotated Diagram > > The pages are added automatically and a folder is created for each page, so > page one gets a folder page_000, the next page gets a folder page_001 etc. > > However once the folder number page_010 has been created things go wrong. > > Every subsequent page is being assigned to the folder page_009 and this is > filling up with the xml and xwd files for each subsequent page. > > Kind regards > > Johnathan > > 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. > > 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. > > ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. From jennysong.ss at gmail.com Wed Jan 25 00:46:58 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Wed, 25 Jan 2012 08:46:58 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Sure WP world will love it to bites :-) Pad, yesterday I didn't really remember how the single page initially loaded, only noticed the screen size problem when I played the Screen Size. Today I made a new post, at initial loading, it's not full fill the browser. Top and Left has small white space. Left and bottom has big space. Maybe because my computer screen is 1024*768, but I can't visit this localhost from another computer to test on a bigger screen. If you have a 1024*768, you can see what I mean. anyway, I attached a picture. On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > >It's already a wonderful addition to Xerte, and a magic to WP. Extra > treatment can be done only when you have time.**** > > Quite. I think it has the potential to be pretty popular?**** > > ** ** > > ** ** > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Jenny.S > *Sent:* 24 January 2012 12:04 > *To:* For Xerte technical developers > > *Subject:* [Xerte-dev] Re: Fixed for apple and htaccess issues**** > > ** ** > > It's already a wonderful addition to Xerte, and a magic to WP. Extra > treatment can be done only when you have time.**** > > On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley < > patrick.lockley at googlemail.com> wrote:**** > > Ah ok. I get you. > > I'm not sure that's something I'm going to fix - if it displays ok on > the first showing then that's ok for me. > > I might see if I can get those views working properly, but it's > problematic.**** > > > On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S wrote: > > yes, when view a single post, can play the content nicely. but if play > the > > Screen Size( on the bottom menu ), the screen is resized to a picture, > > either too big or too small. the Large size can still play, but if > resize to > > full screen or full window, it become a very small mobile phone sized > > picture. > > > > > > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > > wrote: > >> > >> I'm not sure what you mean by single page? > >> > >> When you view a post? > >> > >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > wrote: > >> > yes, the single page. if you try to play Screen Size, you will see the > >> > resized screen is just a thumbnail > >> > > >> > > >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >> > wrote: > >> >> > >> >> Charpad I know about > >> >> > >> >> Single page screen? > >> >> > >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > >> >> wrote: > >> >> > charpad.swf. is missing. probably it impacts on the screen size. > The > >> >> > single > >> >> > page screen starts from top left, but not stretch to bottom right. > >> >> > There's a > >> >> > space on right and bottom. > >> >> > > >> >> > > >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >> >> >> > >> >> >> > >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > wrote: > >> >> >> > >> >> >> By the way, Previous version didn't remove the language folder. > So, > >> >> >> the > >> >> >> new install need to remove old language folder manually. > >> >> >> > >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > > >> >> >> wrote: > >> >> >>> > >> >> >>> Pad, this version works! > >> >> >>> > >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley > >> >> >>> wrote: > >> >> >>>> > >> >> >>>> I think > >> >> >>>> > >> >> >>>> Definitely worked of MAC XAMPP then ported to PC > >> >> >>>> > >> >> >>>> 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. > >> >> >>>> > >> >> >>>> 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. > >> >> >>>> > >> >> >>>> > >> >> >>>> _______________________________________________ > >> >> >>>> Xerte-dev mailing list > >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>>> > >> >> >>>> > >> >> >>>> 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. > >> >> >>>> > >> >> >>>> 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. > >> >> >>>> > >> >> >>>> > >> >> >>> > >> >> >> > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev**** > > ** ** > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: screen.PNG Type: image/png Size: 21437 bytes Desc: not available URL: From patrick.lockley at googlemail.com Wed Jan 25 10:31:07 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 25 Jan 2012 10:31:07 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I think there isn't the full HTML on those pages, so I need to code it in. Didn't get the chance to touch it last night, will try to make a release candidate tonight. Does anyone mind if I make it available Monday - best day for announcing things? On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S wrote: > Sure WP world will love it to bites :-) > > Pad, yesterday I didn't really remember how the single page initially > loaded, only noticed the screen size problem when I played the Screen Size. > Today I made a new post, at initial loading,? it's not full fill the > browser. Top and Left has small white space. Left and bottom has big space. > Maybe because my computer screen is 1024*768, but I can't visit this > localhost from another computer to test on a bigger screen. If you have a > 1024*768, you can see what I mean. > anyway, I attached a picture. > > > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > wrote: >> >> >It's already a wonderful addition to Xerte, and a magic to WP. Extra >> > treatment can be done only when you have time. >> >> Quite. I think it has the potential to be pretty popular? >> >> >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S >> Sent: 24 January 2012 12:04 >> To: For Xerte technical developers >> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >> >> It's already a wonderful addition to Xerte, and a magic to WP. Extra >> treatment can be done only when you have time. >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> wrote: >> >> Ah ok. I get you. >> >> I'm not sure that's something I'm going to fix - if it displays ok on >> the first showing then that's ok for me. >> >> I might see if I can get those views working properly, but it's >> problematic. >> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S wrote: >> > yes, when view a single post, can play the content nicely. but if play >> > the >> > Screen Size( on the bottom menu ), the screen is resized to a picture, >> > either too big or too small. the Large size can still play, but if >> > resize to >> > full screen or full window, it become a very small mobile phone sized >> > picture. >> > >> > >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> > wrote: >> >> >> >> I'm not sure what you mean by single page? >> >> >> >> When you view a post? >> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> wrote: >> >> > yes, the single page. if you try to play Screen Size, you will see >> >> > the >> >> > resized screen is just a thumbnail >> >> > >> >> > >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> Charpad I know about >> >> >> >> >> >> Single page screen? >> >> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >> wrote: >> >> >> > charpad.swf. is missing. probably it impacts on the screen size. >> >> >> > The >> >> >> > single >> >> >> > page screen starts from top left, but not stretch to bottom right. >> >> >> > There's a >> >> >> > space on right and bottom. >> >> >> > >> >> >> > >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >> >> >> >> >> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >> >> wrote: >> >> >> >> >> >> >> >> By the way, Previous version didn't remove the language folder. >> >> >> >> So, >> >> >> >> the >> >> >> >> new install need to remove old language folder manually. >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >> >> >> >> >> >> wrote: >> >> >> >>> >> >> >> >>> Pad, this version works! >> >> >> >>> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >> >> >>> wrote: >> >> >> >>>> >> >> >> >>>> I think >> >> >> >>>> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> >> >> >> >>>> _______________________________________________ >> >> >> >>>> Xerte-dev mailing list >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>>> >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From Julian.Tenney at nottingham.ac.uk Wed Jan 25 10:32:02 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 25 Jan 2012 10:32:02 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> No, not at all, always good to make sure it's working before several thousand developers install it... ;-) -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 25 January 2012 10:31 To: For Xerte technical developers Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues I think there isn't the full HTML on those pages, so I need to code it in. Didn't get the chance to touch it last night, will try to make a release candidate tonight. Does anyone mind if I make it available Monday - best day for announcing things? On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S wrote: > Sure WP world will love it to bites :-) > > Pad, yesterday I didn't really remember how the single page initially > loaded, only noticed the screen size problem when I played the Screen Size. > Today I made a new post, at initial loading, it's not full fill the > browser. Top and Left has small white space. Left and bottom has big space. > Maybe because my computer screen is 1024*768, but I can't visit this > localhost from another computer to test on a bigger screen. If you have a > 1024*768, you can see what I mean. > anyway, I attached a picture. > > > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > wrote: >> >> >It's already a wonderful addition to Xerte, and a magic to WP. Extra >> > treatment can be done only when you have time. >> >> Quite. I think it has the potential to be pretty popular... >> >> >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S >> Sent: 24 January 2012 12:04 >> To: For Xerte technical developers >> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >> >> It's already a wonderful addition to Xerte, and a magic to WP. Extra >> treatment can be done only when you have time. >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> wrote: >> >> Ah ok. I get you. >> >> I'm not sure that's something I'm going to fix - if it displays ok on >> the first showing then that's ok for me. >> >> I might see if I can get those views working properly, but it's >> problematic. >> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S wrote: >> > yes, when view a single post, can play the content nicely. but if play >> > the >> > Screen Size( on the bottom menu ), the screen is resized to a picture, >> > either too big or too small. the Large size can still play, but if >> > resize to >> > full screen or full window, it become a very small mobile phone sized >> > picture. >> > >> > >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> > wrote: >> >> >> >> I'm not sure what you mean by single page? >> >> >> >> When you view a post? >> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> wrote: >> >> > yes, the single page. if you try to play Screen Size, you will see >> >> > the >> >> > resized screen is just a thumbnail >> >> > >> >> > >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> Charpad I know about >> >> >> >> >> >> Single page screen? >> >> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >> wrote: >> >> >> > charpad.swf. is missing. probably it impacts on the screen size. >> >> >> > The >> >> >> > single >> >> >> > page screen starts from top left, but not stretch to bottom right. >> >> >> > There's a >> >> >> > space on right and bottom. >> >> >> > >> >> >> > >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >> >> >> >> >> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >> >> wrote: >> >> >> >> >> >> >> >> By the way, Previous version didn't remove the language folder. >> >> >> >> So, >> >> >> >> the >> >> >> >> new install need to remove old language folder manually. >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >> >> >> >> >> >> wrote: >> >> >> >>> >> >> >> >>> Pad, this version works! >> >> >> >>> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >> >> >>> wrote: >> >> >> >>>> >> >> >> >>>> I think >> >> >> >>>> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> >> >> >> >>>> _______________________________________________ >> >> >> >>>> Xerte-dev mailing list >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>>> >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> 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. >> >> >> >>>> >> >> >> >>>> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From patrick.lockley at googlemail.com Wed Jan 25 10:36:13 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 25 Jan 2012 10:36:13 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: i am planning on releasing it as a 0.5 and having a "THIS IS IN DEV" on the description. Usually WP people just go "This could be great if <>" On Wed, Jan 25, 2012 at 10:32 AM, Julian Tenney wrote: > No, not at all, always good to make sure it's working before several thousand developers install it... > > ;-) > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 25 January 2012 10:31 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > > I think there isn't the full HTML on those pages, so I need to code it in. > > Didn't get the chance to touch it last night, will try to make a > release candidate tonight. > > Does anyone mind if I make it available Monday - best day for announcing things? > > On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S wrote: >> Sure WP world will love it to bites :-) >> >> Pad, yesterday I didn't really remember how the single page initially >> loaded, only noticed the screen size problem when I played the Screen Size. >> Today I made a new post, at initial loading, ?it's not full fill the >> browser. Top and Left has small white space. Left and bottom has big space. >> Maybe because my computer screen is 1024*768, but I can't visit this >> localhost from another computer to test on a bigger screen. If you have a >> 1024*768, you can see what I mean. >> anyway, I attached a picture. >> >> >> On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> wrote: >>> >>> >It's already a wonderful addition to Xerte, and a magic to WP. Extra >>> > treatment can be done only when you have time. >>> >>> Quite. I think it has the potential to be pretty popular... >>> >>> >>> >>> >>> >>> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S >>> Sent: 24 January 2012 12:04 >>> To: For Xerte technical developers >>> >>> >>> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >>> >>> >>> >>> It's already a wonderful addition to Xerte, and a magic to WP. Extra >>> treatment can be done only when you have time. >>> >>> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >>> wrote: >>> >>> Ah ok. I get you. >>> >>> I'm not sure that's something I'm going to fix - if it displays ok on >>> the first showing then that's ok for me. >>> >>> I might see if I can get those views working properly, but it's >>> problematic. >>> >>> >>> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S wrote: >>> > yes, when view a single post, can play the content nicely. but if play >>> > the >>> > Screen Size( on the bottom menu ), the screen is resized to a picture, >>> > either too big or too small. the Large size can still play, but if >>> > resize to >>> > full screen or full window, it become a very small mobile phone sized >>> > picture. >>> > >>> > >>> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >>> > wrote: >>> >> >>> >> I'm not sure what you mean by single page? >>> >> >>> >> When you view a post? >>> >> >>> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >>> >> wrote: >>> >> > yes, the single page. if you try to play Screen Size, you will see >>> >> > the >>> >> > resized screen is just a thumbnail >>> >> > >>> >> > >>> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >>> >> > wrote: >>> >> >> >>> >> >> Charpad I know about >>> >> >> >>> >> >> Single page screen? >>> >> >> >>> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >>> >> >> wrote: >>> >> >> > charpad.swf. is missing. probably it impacts on the screen size. >>> >> >> > The >>> >> >> > single >>> >> >> > page screen starts from top left, but not stretch to bottom right. >>> >> >> > There's a >>> >> >> > space on right and bottom. >>> >> >> > >>> >> >> > >>> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >>> >> >> > wrote: >>> >> >> >> >>> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >>> >> >> >> >>> >> >> >> >>> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >>> >> >> >> wrote: >>> >> >> >> >>> >> >> >> By the way, Previous version didn't remove the language folder. >>> >> >> >> So, >>> >> >> >> the >>> >> >> >> new install need to remove old language folder manually. >>> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >>> >> >> >> >>> >> >> >> wrote: >>> >> >> >>> >>> >> >> >>> Pad, this version works! >>> >> >> >>> >>> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >>> >> >> >>> wrote: >>> >> >> >>>> >>> >> >> >>>> I think >>> >> >> >>>> >>> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >>> >> >> >>>> >>> >> >> >>>> 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. >>> >> >> >>>> >>> >> >> >>>> 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. >>> >> >> >>>> >>> >> >> >>>> >>> >> >> >>>> _______________________________________________ >>> >> >> >>>> Xerte-dev mailing list >>> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >>>> >>> >> >> >>>> >>> >> >> >>>> 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. >>> >> >> >>>> >>> >> >> >>>> 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. >>> >> >> >>>> >>> >> >> >>>> >>> >> >> >>> >>> >> >> >> >>> >> >> >> >>> >> >> >> 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. >>> >> >> >> >>> >> >> >> 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. >>> >> >> >> >>> >> >> >> _______________________________________________ >>> >> >> >> Xerte-dev mailing list >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >>> >> >> >> 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. >>> >> >> >> >>> >> >> >> 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. >>> >> >> >> >>> >> >> >> >>> >> >> >> _______________________________________________ >>> >> >> >> Xerte-dev mailing list >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >>> >> >> >> 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. >>> >> >> >> >>> >> >> >> 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. >>> >> >> >> >>> >> >> >> >>> >> >> > >>> >> >> > >>> >> >> > _______________________________________________ >>> >> >> > Xerte-dev mailing list >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> >>> >> >> _______________________________________________ >>> >> >> Xerte-dev mailing list >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> > _______________________________________________ >>> >> > Xerte-dev mailing list >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> >>> >> _______________________________________________ >>> >> Xerte-dev mailing list >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> > _______________________________________________ >>> > Xerte-dev mailing list >>> > Xerte-dev at lists.nottingham.ac.uk >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> >>> >>> 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. >>> >>> 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. >>> >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> 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. >>> >>> 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. >>> >>> >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From jennysong.ss at gmail.com Wed Jan 25 10:39:15 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Wed, 25 Jan 2012 18:39:15 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: One more thing-- the upload not doing well. I tried several post today, the content page is available but without picture. On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > No, not at all, always good to make sure it's working before several > thousand developers install it... > > ;-) > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 25 January 2012 10:31 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > > I think there isn't the full HTML on those pages, so I need to code it in. > > Didn't get the chance to touch it last night, will try to make a > release candidate tonight. > > Does anyone mind if I make it available Monday - best day for announcing > things? > > On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S wrote: > > Sure WP world will love it to bites :-) > > > > Pad, yesterday I didn't really remember how the single page initially > > loaded, only noticed the screen size problem when I played the Screen > Size. > > Today I made a new post, at initial loading, it's not full fill the > > browser. Top and Left has small white space. Left and bottom has big > space. > > Maybe because my computer screen is 1024*768, but I can't visit this > > localhost from another computer to test on a bigger screen. If you have a > > 1024*768, you can see what I mean. > > anyway, I attached a picture. > > > > > > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > > wrote: > >> > >> >It's already a wonderful addition to Xerte, and a magic to WP. Extra > >> > treatment can be done only when you have time. > >> > >> Quite. I think it has the potential to be pretty popular... > >> > >> > >> > >> > >> > >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S > >> Sent: 24 January 2012 12:04 > >> To: For Xerte technical developers > >> > >> > >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >> > >> > >> > >> It's already a wonderful addition to Xerte, and a magic to WP. Extra > >> treatment can be done only when you have time. > >> > >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley > >> wrote: > >> > >> Ah ok. I get you. > >> > >> I'm not sure that's something I'm going to fix - if it displays ok on > >> the first showing then that's ok for me. > >> > >> I might see if I can get those views working properly, but it's > >> problematic. > >> > >> > >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S > wrote: > >> > yes, when view a single post, can play the content nicely. but if play > >> > the > >> > Screen Size( on the bottom menu ), the screen is resized to a picture, > >> > either too big or too small. the Large size can still play, but if > >> > resize to > >> > full screen or full window, it become a very small mobile phone sized > >> > picture. > >> > > >> > > >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > >> > wrote: > >> >> > >> >> I'm not sure what you mean by single page? > >> >> > >> >> When you view a post? > >> >> > >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > >> >> wrote: > >> >> > yes, the single page. if you try to play Screen Size, you will see > >> >> > the > >> >> > resized screen is just a thumbnail > >> >> > > >> >> > > >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> Charpad I know about > >> >> >> > >> >> >> Single page screen? > >> >> >> > >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > > >> >> >> wrote: > >> >> >> > charpad.swf. is missing. probably it impacts on the screen size. > >> >> >> > The > >> >> >> > single > >> >> >> > page screen starts from top left, but not stretch to bottom > right. > >> >> >> > There's a > >> >> >> > space on right and bottom. > >> >> >> > > >> >> >> > > >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >> >> >> > wrote: > >> >> >> >> > >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >> >> >> >> > >> >> >> >> > >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > >> >> >> >> wrote: > >> >> >> >> > >> >> >> >> By the way, Previous version didn't remove the language folder. > >> >> >> >> So, > >> >> >> >> the > >> >> >> >> new install need to remove old language folder manually. > >> >> >> >> > >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > >> >> >> >> > >> >> >> >> wrote: > >> >> >> >>> > >> >> >> >>> Pad, this version works! > >> >> >> >>> > >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley > >> >> >> >>> wrote: > >> >> >> >>>> > >> >> >> >>>> I think > >> >> >> >>>> > >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC > >> >> >> >>>> > >> >> >> >>>> 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. > >> >> >> >>>> > >> >> >> >>>> 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. > >> >> >> >>>> > >> >> >> >>>> > >> >> >> >>>> _______________________________________________ > >> >> >> >>>> Xerte-dev mailing list > >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>>> > >> >> >> >>>> > >> >> >> >>>> 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. > >> >> >> >>>> > >> >> >> >>>> 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. > >> >> >> >>>> > >> >> >> >>>> > >> >> >> >>> > >> >> >> >> > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> > >> >> >> > > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> > >> > >> > >> 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. > >> > >> 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. > >> > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> 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. > >> > >> 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. > >> > >> > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jan 25 10:49:22 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 25 Jan 2012 10:49:22 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Is the file there? On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S wrote: > One more thing-- the upload not doing well. I tried several post today, the > content page is available but without picture. > > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney > wrote: >> >> No, not at all, always good to make sure it's working before several >> thousand developers install it... >> >> ;-) >> >> -----Original Message----- >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 25 January 2012 10:31 >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> I think there isn't the full HTML on those pages, so I need to code it in. >> >> Didn't get the chance to touch it last night, will try to make a >> release candidate tonight. >> >> Does anyone mind if I make it available Monday - best day for announcing >> things? >> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S wrote: >> > Sure WP world will love it to bites :-) >> > >> > Pad, yesterday I didn't really remember how the single page initially >> > loaded, only noticed the screen size problem when I played the Screen >> > Size. >> > Today I made a new post, at initial loading, ?it's not full fill the >> > browser. Top and Left has small white space. Left and bottom has big >> > space. >> > Maybe because my computer screen is 1024*768, but I can't visit this >> > localhost from another computer to test on a bigger screen. If you have >> > a >> > 1024*768, you can see what I mean. >> > anyway, I attached a picture. >> > >> > >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> > wrote: >> >> >> >> >It's already a wonderful addition to Xerte, and a magic to WP. Extra >> >> > treatment can be done only when you have time. >> >> >> >> Quite. I think it has the potential to be pretty popular... >> >> >> >> >> >> >> >> >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S >> >> Sent: 24 January 2012 12:04 >> >> To: For Xerte technical developers >> >> >> >> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >> >> >> >> >> >> It's already a wonderful addition to Xerte, and a magic to WP. Extra >> >> treatment can be done only when you have time. >> >> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> >> wrote: >> >> >> >> Ah ok. I get you. >> >> >> >> I'm not sure that's something I'm going to fix - if it displays ok on >> >> the first showing then that's ok for me. >> >> >> >> I might see if I can get those views working properly, but it's >> >> problematic. >> >> >> >> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >> >> wrote: >> >> > yes, when view a single post, can play the content nicely. but if >> >> > play >> >> > the >> >> > Screen Size( on the bottom menu ), the screen is resized to a >> >> > picture, >> >> > either too big or too small. the Large size can still play, but if >> >> > resize to >> >> > full screen or full window, it become a very small mobile phone sized >> >> > picture. >> >> > >> >> > >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> I'm not sure what you mean by single page? >> >> >> >> >> >> When you view a post? >> >> >> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> >> wrote: >> >> >> > yes, the single page. if you try to play Screen Size, you will see >> >> >> > the >> >> >> > resized screen is just a thumbnail >> >> >> > >> >> >> > >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> Charpad I know about >> >> >> >> >> >> >> >> Single page screen? >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >> >> >> >> >> >> wrote: >> >> >> >> > charpad.swf. is missing. probably it impacts on the screen >> >> >> >> > size. >> >> >> >> > The >> >> >> >> > single >> >> >> >> > page screen starts from top left, but not stretch to bottom >> >> >> >> > right. >> >> >> >> > There's a >> >> >> >> > space on right and bottom. >> >> >> >> > >> >> >> >> > >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >> >> > wrote: >> >> >> >> >> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >> >> >> wrote: >> >> >> >> >> >> >> >> >> >> By the way, Previous version didn't remove the language >> >> >> >> >> folder. >> >> >> >> >> So, >> >> >> >> >> the >> >> >> >> >> new install need to remove old language folder manually. >> >> >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >> >> >> >> >> >> >> >> wrote: >> >> >> >> >>> >> >> >> >> >>> Pad, this version works! >> >> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >> >> >> >>> wrote: >> >> >> >> >>>> >> >> >> >> >>>> I think >> >> >> >> >>>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >> >> >> >> >>>> >> >> >> >> >>>> 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. >> >> >> >> >>>> >> >> >> >> >>>> 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. >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>>> _______________________________________________ >> >> >> >> >>>> Xerte-dev mailing list >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>>> 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. >> >> >> >> >>>> >> >> >> >> >>>> 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. >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > Xerte-dev mailing list >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Wed Jan 25 10:55:00 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Wed, 25 Jan 2012 18:55:00 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: No, media folder is empty. By the way, when delete post, the preview.xml and data.xml got deleted, but media folder can't be deleted, error says Permission denied. I'm on Windows, so the permission problem might just be mine alone. But the uploads should get in there. On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley wrote: > Is the file there? > > On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S wrote: > > One more thing-- the upload not doing well. I tried several post today, > the > > content page is available but without picture. > > > > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney > > wrote: > >> > >> No, not at all, always good to make sure it's working before several > >> thousand developers install it... > >> > >> ;-) > >> > >> -----Original Message----- > >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > Lockley > >> Sent: 25 January 2012 10:31 > >> To: For Xerte technical developers > >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >> > >> I think there isn't the full HTML on those pages, so I need to code it > in. > >> > >> Didn't get the chance to touch it last night, will try to make a > >> release candidate tonight. > >> > >> Does anyone mind if I make it available Monday - best day for announcing > >> things? > >> > >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S > wrote: > >> > Sure WP world will love it to bites :-) > >> > > >> > Pad, yesterday I didn't really remember how the single page initially > >> > loaded, only noticed the screen size problem when I played the Screen > >> > Size. > >> > Today I made a new post, at initial loading, it's not full fill the > >> > browser. Top and Left has small white space. Left and bottom has big > >> > space. > >> > Maybe because my computer screen is 1024*768, but I can't visit this > >> > localhost from another computer to test on a bigger screen. If you > have > >> > a > >> > 1024*768, you can see what I mean. > >> > anyway, I attached a picture. > >> > > >> > > >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > >> > wrote: > >> >> > >> >> >It's already a wonderful addition to Xerte, and a magic to WP. Extra > >> >> > treatment can be done only when you have time. > >> >> > >> >> Quite. I think it has the potential to be pretty popular... > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of > Jenny.S > >> >> Sent: 24 January 2012 12:04 > >> >> To: For Xerte technical developers > >> >> > >> >> > >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >> >> > >> >> > >> >> > >> >> It's already a wonderful addition to Xerte, and a magic to WP. Extra > >> >> treatment can be done only when you have time. > >> >> > >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley > >> >> wrote: > >> >> > >> >> Ah ok. I get you. > >> >> > >> >> I'm not sure that's something I'm going to fix - if it displays ok on > >> >> the first showing then that's ok for me. > >> >> > >> >> I might see if I can get those views working properly, but it's > >> >> problematic. > >> >> > >> >> > >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S > >> >> wrote: > >> >> > yes, when view a single post, can play the content nicely. but if > >> >> > play > >> >> > the > >> >> > Screen Size( on the bottom menu ), the screen is resized to a > >> >> > picture, > >> >> > either too big or too small. the Large size can still play, but if > >> >> > resize to > >> >> > full screen or full window, it become a very small mobile phone > sized > >> >> > picture. > >> >> > > >> >> > > >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> I'm not sure what you mean by single page? > >> >> >> > >> >> >> When you view a post? > >> >> >> > >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > > >> >> >> wrote: > >> >> >> > yes, the single page. if you try to play Screen Size, you will > see > >> >> >> > the > >> >> >> > resized screen is just a thumbnail > >> >> >> > > >> >> >> > > >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >> >> >> > wrote: > >> >> >> >> > >> >> >> >> Charpad I know about > >> >> >> >> > >> >> >> >> Single page screen? > >> >> >> >> > >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > >> >> >> >> > >> >> >> >> wrote: > >> >> >> >> > charpad.swf. is missing. probably it impacts on the screen > >> >> >> >> > size. > >> >> >> >> > The > >> >> >> >> > single > >> >> >> >> > page screen starts from top left, but not stretch to bottom > >> >> >> >> > right. > >> >> >> >> > There's a > >> >> >> >> > space on right and bottom. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >> >> >> >> > wrote: > >> >> >> >> >> > >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > > >> >> >> >> >> wrote: > >> >> >> >> >> > >> >> >> >> >> By the way, Previous version didn't remove the language > >> >> >> >> >> folder. > >> >> >> >> >> So, > >> >> >> >> >> the > >> >> >> >> >> new install need to remove old language folder manually. > >> >> >> >> >> > >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > >> >> >> >> >> > >> >> >> >> >> wrote: > >> >> >> >> >>> > >> >> >> >> >>> Pad, this version works! > >> >> >> >> >>> > >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley > >> >> >> >> >>> wrote: > >> >> >> >> >>>> > >> >> >> >> >>>> I think > >> >> >> >> >>>> > >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC > >> >> >> >> >>>> > >> >> >> >> >>>> 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. > >> >> >> >> >>>> > >> >> >> >> >>>> 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. > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>>> _______________________________________________ > >> >> >> >> >>>> Xerte-dev mailing list > >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>>> 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. > >> >> >> >> >>>> > >> >> >> >> >>>> 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. > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>> > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> _______________________________________________ > >> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> _______________________________________________ > >> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > _______________________________________________ > >> >> >> >> > Xerte-dev mailing list > >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > >> >> > >> >> > >> >> > >> >> 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. > >> >> > >> >> 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. > >> >> > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > >> >> 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. > >> >> > >> >> 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. > >> >> > >> >> > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jan 25 11:21:45 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 25 Jan 2012 11:21:45 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: ok, so windows uploads and media folder not deleted. I played with rights issues in the latest version. On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S wrote: > No, media folder is empty. > By the way, when delete post, the preview.xml and data.xml got deleted, but > media folder can't be deleted, error says Permission denied. > ?I'm on Windows, so the permission problem might just be mine alone. But the > uploads should get in there. > > On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley > wrote: >> >> Is the file there? >> >> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S wrote: >> > One more thing-- the upload not doing well. I tried several post today, >> > the >> > content page is available but without picture. >> > >> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >> > wrote: >> >> >> >> No, not at all, always good to make sure it's working before several >> >> thousand developers install it... >> >> >> >> ;-) >> >> >> >> -----Original Message----- >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> >> Lockley >> >> Sent: 25 January 2012 10:31 >> >> To: For Xerte technical developers >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >> >> I think there isn't the full HTML on those pages, so I need to code it >> >> in. >> >> >> >> Didn't get the chance to touch it last night, will try to make a >> >> release candidate tonight. >> >> >> >> Does anyone mind if I make it available Monday - best day for >> >> announcing >> >> things? >> >> >> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >> >> wrote: >> >> > Sure WP world will love it to bites :-) >> >> > >> >> > Pad, yesterday I didn't really remember how the single page initially >> >> > loaded, only noticed the screen size problem when I played the Screen >> >> > Size. >> >> > Today I made a new post, at initial loading, ?it's not full fill the >> >> > browser. Top and Left has small white space. Left and bottom has big >> >> > space. >> >> > Maybe because my computer screen is 1024*768, but I can't visit this >> >> > localhost from another computer to test on a bigger screen. If you >> >> > have >> >> > a >> >> > 1024*768, you can see what I mean. >> >> > anyway, I attached a picture. >> >> > >> >> > >> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> >> > wrote: >> >> >> >> >> >> >It's already a wonderful addition to Xerte, and a magic to WP. >> >> >> > Extra >> >> >> > treatment can be done only when you have time. >> >> >> >> >> >> Quite. I think it has the potential to be pretty popular... >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >> >> >> Jenny.S >> >> >> Sent: 24 January 2012 12:04 >> >> >> To: For Xerte technical developers >> >> >> >> >> >> >> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >> >> >> >> >> >> >> >> >> >> It's already a wonderful addition to Xerte, and a magic to WP. Extra >> >> >> treatment can be done only when you have time. >> >> >> >> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> >> >> wrote: >> >> >> >> >> >> Ah ok. I get you. >> >> >> >> >> >> I'm not sure that's something I'm going to fix - if it displays ok >> >> >> on >> >> >> the first showing then that's ok for me. >> >> >> >> >> >> I might see if I can get those views working properly, but it's >> >> >> problematic. >> >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >> >> >> wrote: >> >> >> > yes, when view a single post, can play the content nicely. but if >> >> >> > play >> >> >> > the >> >> >> > Screen Size( on the bottom menu ), the screen is resized to a >> >> >> > picture, >> >> >> > either too big or too small. the Large size can still play, but if >> >> >> > resize to >> >> >> > full screen or full window, it become a very small mobile phone >> >> >> > sized >> >> >> > picture. >> >> >> > >> >> >> > >> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> I'm not sure what you mean by single page? >> >> >> >> >> >> >> >> When you view a post? >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> >> >> >> >> >> >> wrote: >> >> >> >> > yes, the single page. if you try to play Screen Size, you will >> >> >> >> > see >> >> >> >> > the >> >> >> >> > resized screen is just a thumbnail >> >> >> >> > >> >> >> >> > >> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> >> >> > wrote: >> >> >> >> >> >> >> >> >> >> Charpad I know about >> >> >> >> >> >> >> >> >> >> Single page screen? >> >> >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >> >> >> >> >> >> >> >> wrote: >> >> >> >> >> > charpad.swf. is missing. probably it impacts on the screen >> >> >> >> >> > size. >> >> >> >> >> > The >> >> >> >> >> > single >> >> >> >> >> > page screen starts from top left, but not stretch to bottom >> >> >> >> >> > right. >> >> >> >> >> > There's a >> >> >> >> >> > space on right and bottom. >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >> >> >> > wrote: >> >> >> >> >> >> >> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >> >> >> >> >> >> >> >> >> >> wrote: >> >> >> >> >> >> >> >> >> >> >> >> By the way, Previous version didn't remove the language >> >> >> >> >> >> folder. >> >> >> >> >> >> So, >> >> >> >> >> >> the >> >> >> >> >> >> new install need to remove old language folder manually. >> >> >> >> >> >> >> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >> >> >> >> >> >> >> >> >> >> wrote: >> >> >> >> >> >>> >> >> >> >> >> >>> Pad, this version works! >> >> >> >> >> >>> >> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >> >> >> >> >>> wrote: >> >> >> >> >> >>>> >> >> >> >> >> >>>> I think >> >> >> >> >> >>>> >> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >> >> >> >> >> >>>> >> >> >> >> >> >>>> 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. >> >> >> >> >> >>>> >> >> >> >> >> >>>> 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. >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>>> _______________________________________________ >> >> >> >> >> >>>> Xerte-dev mailing list >> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>>> 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. >> >> >> >> >> >>>> >> >> >> >> >> >>>> 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. >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > _______________________________________________ >> >> >> >> >> > Xerte-dev mailing list >> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> > >> >> >> >> >> > 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. >> >> >> >> >> > >> >> >> >> >> > 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. >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > Xerte-dev mailing list >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From patrick.lockley at googlemail.com Wed Jan 25 11:24:57 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 25 Jan 2012 11:24:57 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Can you swap the old upload.php in and see if that fixes it? On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley wrote: > ok, so windows uploads and media folder not deleted. > > I played with rights issues in the latest version. > > > > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S wrote: >> No, media folder is empty. >> By the way, when delete post, the preview.xml and data.xml got deleted, but >> media folder can't be deleted, error says Permission denied. >> ?I'm on Windows, so the permission problem might just be mine alone. But the >> uploads should get in there. >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley >> wrote: >>> >>> Is the file there? >>> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S wrote: >>> > One more thing-- the upload not doing well. I tried several post today, >>> > the >>> > content page is available but without picture. >>> > >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >>> > wrote: >>> >> >>> >> No, not at all, always good to make sure it's working before several >>> >> thousand developers install it... >>> >> >>> >> ;-) >>> >> >>> >> -----Original Message----- >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> >> Lockley >>> >> Sent: 25 January 2012 10:31 >>> >> To: For Xerte technical developers >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >>> >> >>> >> I think there isn't the full HTML on those pages, so I need to code it >>> >> in. >>> >> >>> >> Didn't get the chance to touch it last night, will try to make a >>> >> release candidate tonight. >>> >> >>> >> Does anyone mind if I make it available Monday - best day for >>> >> announcing >>> >> things? >>> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >>> >> wrote: >>> >> > Sure WP world will love it to bites :-) >>> >> > >>> >> > Pad, yesterday I didn't really remember how the single page initially >>> >> > loaded, only noticed the screen size problem when I played the Screen >>> >> > Size. >>> >> > Today I made a new post, at initial loading, ?it's not full fill the >>> >> > browser. Top and Left has small white space. Left and bottom has big >>> >> > space. >>> >> > Maybe because my computer screen is 1024*768, but I can't visit this >>> >> > localhost from another computer to test on a bigger screen. If you >>> >> > have >>> >> > a >>> >> > 1024*768, you can see what I mean. >>> >> > anyway, I attached a picture. >>> >> > >>> >> > >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >>> >> > wrote: >>> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a magic to WP. >>> >> >> > Extra >>> >> >> > treatment can be done only when you have time. >>> >> >> >>> >> >> Quite. I think it has the potential to be pretty popular... >>> >> >> >>> >> >> >>> >> >> >>> >> >> >>> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >>> >> >> Jenny.S >>> >> >> Sent: 24 January 2012 12:04 >>> >> >> To: For Xerte technical developers >>> >> >> >>> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >>> >> >> >>> >> >> >>> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a magic to WP. Extra >>> >> >> treatment can be done only when you have time. >>> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >>> >> >> wrote: >>> >> >> >>> >> >> Ah ok. I get you. >>> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if it displays ok >>> >> >> on >>> >> >> the first showing then that's ok for me. >>> >> >> >>> >> >> I might see if I can get those views working properly, but it's >>> >> >> problematic. >>> >> >> >>> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >>> >> >> wrote: >>> >> >> > yes, when view a single post, can play the content nicely. but if >>> >> >> > play >>> >> >> > the >>> >> >> > Screen Size( on the bottom menu ), the screen is resized to a >>> >> >> > picture, >>> >> >> > either too big or too small. the Large size can still play, but if >>> >> >> > resize to >>> >> >> > full screen or full window, it become a very small mobile phone >>> >> >> > sized >>> >> >> > picture. >>> >> >> > >>> >> >> > >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >>> >> >> > wrote: >>> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? >>> >> >> >> >>> >> >> >> When you view a post? >>> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >>> >> >> >> >>> >> >> >> wrote: >>> >> >> >> > yes, the single page. if you try to play Screen Size, you will >>> >> >> >> > see >>> >> >> >> > the >>> >> >> >> > resized screen is just a thumbnail >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >>> >> >> >> > wrote: >>> >> >> >> >> >>> >> >> >> >> Charpad I know about >>> >> >> >> >> >>> >> >> >> >> Single page screen? >>> >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >>> >> >> >> >> >>> >> >> >> >> wrote: >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on the screen >>> >> >> >> >> > size. >>> >> >> >> >> > The >>> >> >> >> >> > single >>> >> >> >> >> > page screen starts from top left, but not stretch to bottom >>> >> >> >> >> > right. >>> >> >> >> >> > There's a >>> >> >> >> >> > space on right and bottom. >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >>> >> >> >> >> > wrote: >>> >> >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >>> >> >> >> >> >> >>> >> >> >> >> >> wrote: >>> >> >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove the language >>> >> >> >> >> >> folder. >>> >> >> >> >> >> So, >>> >> >> >> >> >> the >>> >> >> >> >> >> new install need to remove old language folder manually. >>> >> >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >>> >> >> >> >> >> >>> >> >> >> >> >> wrote: >>> >> >> >> >> >>> >>> >> >> >> >> >>> Pad, this version works! >>> >> >> >> >> >>> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >>> >> >> >> >> >>> wrote: >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> I think >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> _______________________________________________ >>> >> >> >> >> >>>> Xerte-dev mailing list >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>>> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >>> >> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >>> >> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> > _______________________________________________ >>> >> >> >> >> > Xerte-dev mailing list >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> > >>> >> >> >> >> > 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. >>> >> >> >> >> > >>> >> >> >> >> > 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. >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> _______________________________________________ >>> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > _______________________________________________ >>> >> >> >> > Xerte-dev mailing list >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > >>> >> >> >> >>> >> >> >> _______________________________________________ >>> >> >> >> Xerte-dev mailing list >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> > _______________________________________________ >>> >> >> > Xerte-dev mailing list >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> >>> >> >> _______________________________________________ >>> >> >> Xerte-dev mailing list >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >>> >> >> >>> >> >> >>> >> >> >>> >> >> 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. >>> >> >> >>> >> >> 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. >>> >> >> >>> >> >> >>> >> >> _______________________________________________ >>> >> >> Xerte-dev mailing list >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >>> >> >> 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. >>> >> >> >>> >> >> 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. >>> >> >> >>> >> >> >>> >> > >>> >> > >>> >> > _______________________________________________ >>> >> > Xerte-dev mailing list >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> >>> >> _______________________________________________ >>> >> Xerte-dev mailing list >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >>> >> _______________________________________________ >>> >> Xerte-dev mailing list >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> > _______________________________________________ >>> > Xerte-dev mailing list >>> > Xerte-dev at lists.nottingham.ac.uk >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> From jennysong.ss at gmail.com Wed Jan 25 11:46:47 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Wed, 25 Jan 2012 19:46:47 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Just swaped version. old version doesn't upload either. Can see the image input box shows FileLocation + 'media/see you.jpg' When click Play, got message-- You must select a picture before you can veiw it. On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley wrote: > Can you swap the old upload.php in and see if that fixes it? > > On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley > wrote: > > ok, so windows uploads and media folder not deleted. > > > > I played with rights issues in the latest version. > > > > > > > > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S > wrote: > >> No, media folder is empty. > >> By the way, when delete post, the preview.xml and data.xml got deleted, > but > >> media folder can't be deleted, error says Permission denied. > >> I'm on Windows, so the permission problem might just be mine alone. > But the > >> uploads should get in there. > >> > >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley > >> wrote: > >>> > >>> Is the file there? > >>> > >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S > wrote: > >>> > One more thing-- the upload not doing well. I tried several post > today, > >>> > the > >>> > content page is available but without picture. > >>> > > >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney > >>> > wrote: > >>> >> > >>> >> No, not at all, always good to make sure it's working before several > >>> >> thousand developers install it... > >>> >> > >>> >> ;-) > >>> >> > >>> >> -----Original Message----- > >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > >>> >> Lockley > >>> >> Sent: 25 January 2012 10:31 > >>> >> To: For Xerte technical developers > >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >>> >> > >>> >> I think there isn't the full HTML on those pages, so I need to code > it > >>> >> in. > >>> >> > >>> >> Didn't get the chance to touch it last night, will try to make a > >>> >> release candidate tonight. > >>> >> > >>> >> Does anyone mind if I make it available Monday - best day for > >>> >> announcing > >>> >> things? > >>> >> > >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S > >>> >> wrote: > >>> >> > Sure WP world will love it to bites :-) > >>> >> > > >>> >> > Pad, yesterday I didn't really remember how the single page > initially > >>> >> > loaded, only noticed the screen size problem when I played the > Screen > >>> >> > Size. > >>> >> > Today I made a new post, at initial loading, it's not full fill > the > >>> >> > browser. Top and Left has small white space. Left and bottom has > big > >>> >> > space. > >>> >> > Maybe because my computer screen is 1024*768, but I can't visit > this > >>> >> > localhost from another computer to test on a bigger screen. If you > >>> >> > have > >>> >> > a > >>> >> > 1024*768, you can see what I mean. > >>> >> > anyway, I attached a picture. > >>> >> > > >>> >> > > >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > >>> >> > wrote: > >>> >> >> > >>> >> >> >It's already a wonderful addition to Xerte, and a magic to WP. > >>> >> >> > Extra > >>> >> >> > treatment can be done only when you have time. > >>> >> >> > >>> >> >> Quite. I think it has the potential to be pretty popular... > >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of > >>> >> >> Jenny.S > >>> >> >> Sent: 24 January 2012 12:04 > >>> >> >> To: For Xerte technical developers > >>> >> >> > >>> >> >> > >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> It's already a wonderful addition to Xerte, and a magic to WP. > Extra > >>> >> >> treatment can be done only when you have time. > >>> >> >> > >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley > >>> >> >> wrote: > >>> >> >> > >>> >> >> Ah ok. I get you. > >>> >> >> > >>> >> >> I'm not sure that's something I'm going to fix - if it displays > ok > >>> >> >> on > >>> >> >> the first showing then that's ok for me. > >>> >> >> > >>> >> >> I might see if I can get those views working properly, but it's > >>> >> >> problematic. > >>> >> >> > >>> >> >> > >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S < > jennysong.ss at gmail.com> > >>> >> >> wrote: > >>> >> >> > yes, when view a single post, can play the content nicely. but > if > >>> >> >> > play > >>> >> >> > the > >>> >> >> > Screen Size( on the bottom menu ), the screen is resized to a > >>> >> >> > picture, > >>> >> >> > either too big or too small. the Large size can still play, > but if > >>> >> >> > resize to > >>> >> >> > full screen or full window, it become a very small mobile phone > >>> >> >> > sized > >>> >> >> > picture. > >>> >> >> > > >>> >> >> > > >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > >>> >> >> > wrote: > >>> >> >> >> > >>> >> >> >> I'm not sure what you mean by single page? > >>> >> >> >> > >>> >> >> >> When you view a post? > >>> >> >> >> > >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > >>> >> >> >> > >>> >> >> >> wrote: > >>> >> >> >> > yes, the single page. if you try to play Screen Size, you > will > >>> >> >> >> > see > >>> >> >> >> > the > >>> >> >> >> > resized screen is just a thumbnail > >>> >> >> >> > > >>> >> >> >> > > >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >>> >> >> >> > wrote: > >>> >> >> >> >> > >>> >> >> >> >> Charpad I know about > >>> >> >> >> >> > >>> >> >> >> >> Single page screen? > >>> >> >> >> >> > >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > >>> >> >> >> >> > >>> >> >> >> >> wrote: > >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on the > screen > >>> >> >> >> >> > size. > >>> >> >> >> >> > The > >>> >> >> >> >> > single > >>> >> >> >> >> > page screen starts from top left, but not stretch to > bottom > >>> >> >> >> >> > right. > >>> >> >> >> >> > There's a > >>> >> >> >> >> > space on right and bottom. > >>> >> >> >> >> > > >>> >> >> >> >> > > >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >>> >> >> >> >> > wrote: > >>> >> >> >> >> >> > >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >>> >> >> >> >> >> > >>> >> >> >> >> >> > >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > >>> >> >> >> >> >> > >>> >> >> >> >> >> wrote: > >>> >> >> >> >> >> > >>> >> >> >> >> >> By the way, Previous version didn't remove the language > >>> >> >> >> >> >> folder. > >>> >> >> >> >> >> So, > >>> >> >> >> >> >> the > >>> >> >> >> >> >> new install need to remove old language folder manually. > >>> >> >> >> >> >> > >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > >>> >> >> >> >> >> > >>> >> >> >> >> >> wrote: > >>> >> >> >> >> >>> > >>> >> >> >> >> >>> Pad, this version works! > >>> >> >> >> >> >>> > >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley > >>> >> >> >> >> >>> wrote: > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> I think > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> 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. > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> 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. > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> _______________________________________________ > >>> >> >> >> >> >>>> Xerte-dev mailing list > >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> >> >>>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> 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. > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> 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. > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>>> > >>> >> >> >> >> >>> > >>> >> >> >> >> >> > >>> >> >> >> >> >> > >>> >> >> >> >> >> 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. > >>> >> >> >> >> >> > >>> >> >> >> >> >> 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. > >>> >> >> >> >> >> > >>> >> >> >> >> >> _______________________________________________ > >>> >> >> >> >> >> Xerte-dev mailing list > >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> >> >> > >>> >> >> >> >> >> 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. > >>> >> >> >> >> >> > >>> >> >> >> >> >> 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. > >>> >> >> >> >> >> > >>> >> >> >> >> >> > >>> >> >> >> >> >> _______________________________________________ > >>> >> >> >> >> >> Xerte-dev mailing list > >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> >> >> > >>> >> >> >> >> >> 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. > >>> >> >> >> >> >> > >>> >> >> >> >> >> 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. > >>> >> >> >> >> >> > >>> >> >> >> >> >> > >>> >> >> >> >> > > >>> >> >> >> >> > > >>> >> >> >> >> > _______________________________________________ > >>> >> >> >> >> > Xerte-dev mailing list > >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> >> > > >>> >> >> >> >> > 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. > >>> >> >> >> >> > > >>> >> >> >> >> > 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. > >>> >> >> >> >> > > >>> >> >> >> >> > > >>> >> >> >> >> > >>> >> >> >> >> _______________________________________________ > >>> >> >> >> >> Xerte-dev mailing list > >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> > > >>> >> >> >> > > >>> >> >> >> > > >>> >> >> >> > 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. > >>> >> >> >> > > >>> >> >> >> > 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. > >>> >> >> >> > > >>> >> >> >> > > >>> >> >> >> > _______________________________________________ > >>> >> >> >> > Xerte-dev mailing list > >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> > > >>> >> >> >> > 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. > >>> >> >> >> > > >>> >> >> >> > 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. > >>> >> >> >> > > >>> >> >> >> > > >>> >> >> >> > >>> >> >> >> _______________________________________________ > >>> >> >> >> Xerte-dev mailing list > >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> > > >>> >> >> > > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > > >>> >> >> > _______________________________________________ > >>> >> >> > Xerte-dev mailing list > >>> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > > >>> >> >> > >>> >> >> _______________________________________________ > >>> >> >> Xerte-dev mailing list > >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> 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. > >>> >> >> > >>> >> >> 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. > >>> >> >> > >>> >> >> > >>> >> >> _______________________________________________ > >>> >> >> Xerte-dev mailing list > >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> > >>> >> >> 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. > >>> >> >> > >>> >> >> 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. > >>> >> >> > >>> >> >> > >>> >> > > >>> >> > > >>> >> > _______________________________________________ > >>> >> > Xerte-dev mailing list > >>> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> > > >>> >> > 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. > >>> >> > > >>> >> > 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. > >>> >> > > >>> >> > > >>> >> > >>> >> _______________________________________________ > >>> >> Xerte-dev mailing list > >>> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> > >>> >> _______________________________________________ > >>> >> Xerte-dev mailing list > >>> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> > > >>> > > >>> > > >>> > 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. > >>> > > >>> > 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. > >>> > > >>> > > >>> > _______________________________________________ > >>> > Xerte-dev mailing list > >>> > Xerte-dev at lists.nottingham.ac.uk > >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> > > >>> > 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. > >>> > > >>> > 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. > >>> > > >>> > > >>> > >>> _______________________________________________ > >>> Xerte-dev mailing list > >>> Xerte-dev at lists.nottingham.ac.uk > >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> > >> > >> 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. > >> > >> 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. > >> > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> 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. > >> > >> 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. > >> > >> > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jan 25 11:47:57 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 25 Jan 2012 11:47:57 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: images with no spaces? On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S wrote: > Just swaped version. old version doesn't upload either. > Can see the image input box shows FileLocation + 'media/see you.jpg' > When click Play, got message-- You must select a picture before you can veiw > it. > > > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley > wrote: >> >> Can you swap the old upload.php in and see if that fixes it? >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley >> wrote: >> > ok, so windows uploads and media folder not deleted. >> > >> > I played with rights issues in the latest version. >> > >> > >> > >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S >> > wrote: >> >> No, media folder is empty. >> >> By the way, when delete post, the preview.xml and data.xml got deleted, >> >> but >> >> media folder can't be deleted, error says Permission denied. >> >> ?I'm on Windows, so the permission problem might just be mine alone. >> >> But the >> >> uploads should get in there. >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley >> >> wrote: >> >>> >> >>> Is the file there? >> >>> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S >> >>> wrote: >> >>> > One more thing-- the upload not doing well. I tried several post >> >>> > today, >> >>> > the >> >>> > content page is available but without picture. >> >>> > >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >> >>> > wrote: >> >>> >> >> >>> >> No, not at all, always good to make sure it's working before >> >>> >> several >> >>> >> thousand developers install it... >> >>> >> >> >>> >> ;-) >> >>> >> >> >>> >> -----Original Message----- >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> >>> >> Lockley >> >>> >> Sent: 25 January 2012 10:31 >> >>> >> To: For Xerte technical developers >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >>> >> >> >>> >> I think there isn't the full HTML on those pages, so I need to code >> >>> >> it >> >>> >> in. >> >>> >> >> >>> >> Didn't get the chance to touch it last night, will try to make a >> >>> >> release candidate tonight. >> >>> >> >> >>> >> Does anyone mind if I make it available Monday - best day for >> >>> >> announcing >> >>> >> things? >> >>> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >> >>> >> wrote: >> >>> >> > Sure WP world will love it to bites :-) >> >>> >> > >> >>> >> > Pad, yesterday I didn't really remember how the single page >> >>> >> > initially >> >>> >> > loaded, only noticed the screen size problem when I played the >> >>> >> > Screen >> >>> >> > Size. >> >>> >> > Today I made a new post, at initial loading, ?it's not full fill >> >>> >> > the >> >>> >> > browser. Top and Left has small white space. Left and bottom has >> >>> >> > big >> >>> >> > space. >> >>> >> > Maybe because my computer screen is 1024*768, but I can't visit >> >>> >> > this >> >>> >> > localhost from another computer to test on a bigger screen. If >> >>> >> > you >> >>> >> > have >> >>> >> > a >> >>> >> > 1024*768, you can see what I mean. >> >>> >> > anyway, I attached a picture. >> >>> >> > >> >>> >> > >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> >>> >> > wrote: >> >>> >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a magic to WP. >> >>> >> >> > Extra >> >>> >> >> > treatment can be done only when you have time. >> >>> >> >> >> >>> >> >> Quite. I think it has the potential to be pretty popular... >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >> >>> >> >> Jenny.S >> >>> >> >> Sent: 24 January 2012 12:04 >> >>> >> >> To: For Xerte technical developers >> >>> >> >> >> >>> >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a magic to WP. >> >>> >> >> Extra >> >>> >> >> treatment can be done only when you have time. >> >>> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> >>> >> >> wrote: >> >>> >> >> >> >>> >> >> Ah ok. I get you. >> >>> >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if it displays >> >>> >> >> ok >> >>> >> >> on >> >>> >> >> the first showing then that's ok for me. >> >>> >> >> >> >>> >> >> I might see if I can get those views working properly, but it's >> >>> >> >> problematic. >> >>> >> >> >> >>> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >> >>> >> >> >> >>> >> >> wrote: >> >>> >> >> > yes, when view a single post, can play the content nicely. but >> >>> >> >> > if >> >>> >> >> > play >> >>> >> >> > the >> >>> >> >> > Screen Size( on the bottom menu ), the screen is resized to a >> >>> >> >> > picture, >> >>> >> >> > either too big or too small. the Large size can still play, >> >>> >> >> > but if >> >>> >> >> > resize to >> >>> >> >> > full screen or full window, it become a very small mobile >> >>> >> >> > phone >> >>> >> >> > sized >> >>> >> >> > picture. >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> >>> >> >> > wrote: >> >>> >> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? >> >>> >> >> >> >> >>> >> >> >> When you view a post? >> >>> >> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >>> >> >> >> >> >>> >> >> >> wrote: >> >>> >> >> >> > yes, the single page. if you try to play Screen Size, you >> >>> >> >> >> > will >> >>> >> >> >> > see >> >>> >> >> >> > the >> >>> >> >> >> > resized screen is just a thumbnail >> >>> >> >> >> > >> >>> >> >> >> > >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >>> >> >> >> > wrote: >> >>> >> >> >> >> >> >>> >> >> >> >> Charpad I know about >> >>> >> >> >> >> >> >>> >> >> >> >> Single page screen? >> >>> >> >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >>> >> >> >> >> >> >>> >> >> >> >> wrote: >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on the >> >>> >> >> >> >> > screen >> >>> >> >> >> >> > size. >> >>> >> >> >> >> > The >> >>> >> >> >> >> > single >> >>> >> >> >> >> > page screen starts from top left, but not stretch to >> >>> >> >> >> >> > bottom >> >>> >> >> >> >> > right. >> >>> >> >> >> >> > There's a >> >>> >> >> >> >> > space on right and bottom. >> >>> >> >> >> >> > >> >>> >> >> >> >> > >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >>> >> >> >> >> > wrote: >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove the language >> >>> >> >> >> >> >> folder. >> >>> >> >> >> >> >> So, >> >>> >> >> >> >> >> the >> >>> >> >> >> >> >> new install need to remove old language folder >> >>> >> >> >> >> >> manually. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> Pad, this version works! >> >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >>> >> >> >> >> >>> wrote: >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> I think >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> 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. >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> 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. >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> _______________________________________________ >> >>> >> >> >> >> >>>> Xerte-dev mailing list >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> 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. >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> 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. >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>>> >> >>> >> >> >> >> >>> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >>> >> >> >> >> >> Xerte-dev mailing list >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >>> >> >> >> >> >> Xerte-dev mailing list >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> > >> >>> >> >> >> >> > >> >>> >> >> >> >> > _______________________________________________ >> >>> >> >> >> >> > Xerte-dev mailing list >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> >> > >> >>> >> >> >> >> > 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. >> >>> >> >> >> >> > >> >>> >> >> >> >> > 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. >> >>> >> >> >> >> > >> >>> >> >> >> >> > >> >>> >> >> >> >> >> >>> >> >> >> >> _______________________________________________ >> >>> >> >> >> >> Xerte-dev mailing list >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> > >> >>> >> >> >> > >> >>> >> >> >> > >> >>> >> >> >> > 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. >> >>> >> >> >> > >> >>> >> >> >> > 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. >> >>> >> >> >> > >> >>> >> >> >> > >> >>> >> >> >> > _______________________________________________ >> >>> >> >> >> > Xerte-dev mailing list >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> > >> >>> >> >> >> > 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. >> >>> >> >> >> > >> >>> >> >> >> > 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. >> >>> >> >> >> > >> >>> >> >> >> > >> >>> >> >> >> >> >>> >> >> >> _______________________________________________ >> >>> >> >> >> Xerte-dev mailing list >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > _______________________________________________ >> >>> >> >> > Xerte-dev mailing list >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > >> >>> >> >> >> >>> >> >> _______________________________________________ >> >>> >> >> Xerte-dev mailing list >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> >> >>> >> >> 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. >> >>> >> >> >> >>> >> >> 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. >> >>> >> >> >> >>> >> >> >> >>> >> >> _______________________________________________ >> >>> >> >> Xerte-dev mailing list >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> >>> >> >> 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. >> >>> >> >> >> >>> >> >> 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. >> >>> >> >> >> >>> >> >> >> >>> >> > >> >>> >> > >> >>> >> > _______________________________________________ >> >>> >> > Xerte-dev mailing list >> >>> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> > >> >>> >> > 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. >> >>> >> > >> >>> >> > 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. >> >>> >> > >> >>> >> > >> >>> >> >> >>> >> _______________________________________________ >> >>> >> Xerte-dev mailing list >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >>> >> _______________________________________________ >> >>> >> Xerte-dev mailing list >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> > >> >>> > >> >>> > >> >>> > 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. >> >>> > >> >>> > 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. >> >>> > >> >>> > >> >>> > _______________________________________________ >> >>> > Xerte-dev mailing list >> >>> > Xerte-dev at lists.nottingham.ac.uk >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> > >> >>> > 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. >> >>> > >> >>> > 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. >> >>> > >> >>> > >> >>> >> >>> _______________________________________________ >> >>> Xerte-dev mailing list >> >>> Xerte-dev at lists.nottingham.ac.uk >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Wed Jan 25 12:09:09 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Wed, 25 Jan 2012 20:09:09 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: :-) Both old and new version workds without space By the way, If click WP Preview, and Cancle, it's suposed to go back to Editor, but it still leads to Preview page. Is that correct? On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley wrote: > images with no spaces? > > On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S wrote: > > Just swaped version. old version doesn't upload either. > > Can see the image input box shows FileLocation + 'media/see you.jpg' > > When click Play, got message-- You must select a picture before you can > veiw > > it. > > > > > > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley > > wrote: > >> > >> Can you swap the old upload.php in and see if that fixes it? > >> > >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley > >> wrote: > >> > ok, so windows uploads and media folder not deleted. > >> > > >> > I played with rights issues in the latest version. > >> > > >> > > >> > > >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S > >> > wrote: > >> >> No, media folder is empty. > >> >> By the way, when delete post, the preview.xml and data.xml got > deleted, > >> >> but > >> >> media folder can't be deleted, error says Permission denied. > >> >> I'm on Windows, so the permission problem might just be mine alone. > >> >> But the > >> >> uploads should get in there. > >> >> > >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley > >> >> wrote: > >> >>> > >> >>> Is the file there? > >> >>> > >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S > >> >>> wrote: > >> >>> > One more thing-- the upload not doing well. I tried several post > >> >>> > today, > >> >>> > the > >> >>> > content page is available but without picture. > >> >>> > > >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney > >> >>> > wrote: > >> >>> >> > >> >>> >> No, not at all, always good to make sure it's working before > >> >>> >> several > >> >>> >> thousand developers install it... > >> >>> >> > >> >>> >> ;-) > >> >>> >> > >> >>> >> -----Original Message----- > >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of > Pat > >> >>> >> Lockley > >> >>> >> Sent: 25 January 2012 10:31 > >> >>> >> To: For Xerte technical developers > >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >> >>> >> > >> >>> >> I think there isn't the full HTML on those pages, so I need to > code > >> >>> >> it > >> >>> >> in. > >> >>> >> > >> >>> >> Didn't get the chance to touch it last night, will try to make a > >> >>> >> release candidate tonight. > >> >>> >> > >> >>> >> Does anyone mind if I make it available Monday - best day for > >> >>> >> announcing > >> >>> >> things? > >> >>> >> > >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S < > jennysong.ss at gmail.com> > >> >>> >> wrote: > >> >>> >> > Sure WP world will love it to bites :-) > >> >>> >> > > >> >>> >> > Pad, yesterday I didn't really remember how the single page > >> >>> >> > initially > >> >>> >> > loaded, only noticed the screen size problem when I played the > >> >>> >> > Screen > >> >>> >> > Size. > >> >>> >> > Today I made a new post, at initial loading, it's not full > fill > >> >>> >> > the > >> >>> >> > browser. Top and Left has small white space. Left and bottom > has > >> >>> >> > big > >> >>> >> > space. > >> >>> >> > Maybe because my computer screen is 1024*768, but I can't visit > >> >>> >> > this > >> >>> >> > localhost from another computer to test on a bigger screen. If > >> >>> >> > you > >> >>> >> > have > >> >>> >> > a > >> >>> >> > 1024*768, you can see what I mean. > >> >>> >> > anyway, I attached a picture. > >> >>> >> > > >> >>> >> > > >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > >> >>> >> > wrote: > >> >>> >> >> > >> >>> >> >> >It's already a wonderful addition to Xerte, and a magic to > WP. > >> >>> >> >> > Extra > >> >>> >> >> > treatment can be done only when you have time. > >> >>> >> >> > >> >>> >> >> Quite. I think it has the potential to be pretty popular... > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf > Of > >> >>> >> >> Jenny.S > >> >>> >> >> Sent: 24 January 2012 12:04 > >> >>> >> >> To: For Xerte technical developers > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> It's already a wonderful addition to Xerte, and a magic to WP. > >> >>> >> >> Extra > >> >>> >> >> treatment can be done only when you have time. > >> >>> >> >> > >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley > >> >>> >> >> wrote: > >> >>> >> >> > >> >>> >> >> Ah ok. I get you. > >> >>> >> >> > >> >>> >> >> I'm not sure that's something I'm going to fix - if it > displays > >> >>> >> >> ok > >> >>> >> >> on > >> >>> >> >> the first showing then that's ok for me. > >> >>> >> >> > >> >>> >> >> I might see if I can get those views working properly, but > it's > >> >>> >> >> problematic. > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S > >> >>> >> >> > >> >>> >> >> wrote: > >> >>> >> >> > yes, when view a single post, can play the content nicely. > but > >> >>> >> >> > if > >> >>> >> >> > play > >> >>> >> >> > the > >> >>> >> >> > Screen Size( on the bottom menu ), the screen is resized to > a > >> >>> >> >> > picture, > >> >>> >> >> > either too big or too small. the Large size can still play, > >> >>> >> >> > but if > >> >>> >> >> > resize to > >> >>> >> >> > full screen or full window, it become a very small mobile > >> >>> >> >> > phone > >> >>> >> >> > sized > >> >>> >> >> > picture. > >> >>> >> >> > > >> >>> >> >> > > >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > >> >>> >> >> > wrote: > >> >>> >> >> >> > >> >>> >> >> >> I'm not sure what you mean by single page? > >> >>> >> >> >> > >> >>> >> >> >> When you view a post? > >> >>> >> >> >> > >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > >> >>> >> >> >> > >> >>> >> >> >> wrote: > >> >>> >> >> >> > yes, the single page. if you try to play Screen Size, you > >> >>> >> >> >> > will > >> >>> >> >> >> > see > >> >>> >> >> >> > the > >> >>> >> >> >> > resized screen is just a thumbnail > >> >>> >> >> >> > > >> >>> >> >> >> > > >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >> >>> >> >> >> > wrote: > >> >>> >> >> >> >> > >> >>> >> >> >> >> Charpad I know about > >> >>> >> >> >> >> > >> >>> >> >> >> >> Single page screen? > >> >>> >> >> >> >> > >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > >> >>> >> >> >> >> > >> >>> >> >> >> >> wrote: > >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on the > >> >>> >> >> >> >> > screen > >> >>> >> >> >> >> > size. > >> >>> >> >> >> >> > The > >> >>> >> >> >> >> > single > >> >>> >> >> >> >> > page screen starts from top left, but not stretch to > >> >>> >> >> >> >> > bottom > >> >>> >> >> >> >> > right. > >> >>> >> >> >> >> > There's a > >> >>> >> >> >> >> > space on right and bottom. > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >> >>> >> >> >> >> > wrote: > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> wrote: > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> By the way, Previous version didn't remove the > language > >> >>> >> >> >> >> >> folder. > >> >>> >> >> >> >> >> So, > >> >>> >> >> >> >> >> the > >> >>> >> >> >> >> >> new install need to remove old language folder > >> >>> >> >> >> >> >> manually. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> wrote: > >> >>> >> >> >> >> >>> > >> >>> >> >> >> >> >>> Pad, this version works! > >> >>> >> >> >> >> >>> > >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley > >> >>> >> >> >> >> >>> wrote: > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> I think > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> 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. > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> 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. > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> _______________________________________________ > >> >>> >> >> >> >> >>>> Xerte-dev mailing list > >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> 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. > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> 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. > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>>> > >> >>> >> >> >> >> >>> > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> 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. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> 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. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> _______________________________________________ > >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> 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. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> 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. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> _______________________________________________ > >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> 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. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> 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. > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> >> > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > _______________________________________________ > >> >>> >> >> >> >> > Xerte-dev mailing list > >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > 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. > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > 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. > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > > >> >>> >> >> >> >> > >> >>> >> >> >> >> _______________________________________________ > >> >>> >> >> >> >> Xerte-dev mailing list > >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> >> > > >> >>> >> >> >> > > >> >>> >> >> >> > > >> >>> >> >> >> > 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. > >> >>> >> >> >> > > >> >>> >> >> >> > 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. > >> >>> >> >> >> > > >> >>> >> >> >> > > >> >>> >> >> >> > _______________________________________________ > >> >>> >> >> >> > Xerte-dev mailing list > >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> >> > > >> >>> >> >> >> > 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. > >> >>> >> >> >> > > >> >>> >> >> >> > 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. > >> >>> >> >> >> > > >> >>> >> >> >> > > >> >>> >> >> >> > >> >>> >> >> >> _______________________________________________ > >> >>> >> >> >> Xerte-dev mailing list > >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> > > >> >>> >> >> > > >> >>> >> >> > > >> >>> >> >> > 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. > >> >>> >> >> > > >> >>> >> >> > 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. > >> >>> >> >> > > >> >>> >> >> > > >> >>> >> >> > _______________________________________________ > >> >>> >> >> > Xerte-dev mailing list > >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> > > >> >>> >> >> > 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. > >> >>> >> >> > > >> >>> >> >> > 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. > >> >>> >> >> > > >> >>> >> >> > > >> >>> >> >> > >> >>> >> >> _______________________________________________ > >> >>> >> >> Xerte-dev mailing list > >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> 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. > >> >>> >> >> > >> >>> >> >> 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. > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> _______________________________________________ > >> >>> >> >> Xerte-dev mailing list > >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> >> > >> >>> >> >> 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. > >> >>> >> >> > >> >>> >> >> 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. > >> >>> >> >> > >> >>> >> >> > >> >>> >> > > >> >>> >> > > >> >>> >> > _______________________________________________ > >> >>> >> > Xerte-dev mailing list > >> >>> >> > Xerte-dev at lists.nottingham.ac.uk > >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> > > >> >>> >> > 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. > >> >>> >> > > >> >>> >> > 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. > >> >>> >> > > >> >>> >> > > >> >>> >> > >> >>> >> _______________________________________________ > >> >>> >> Xerte-dev mailing list > >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> >> > >> >>> >> _______________________________________________ > >> >>> >> Xerte-dev mailing list > >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> > > >> >>> > > >> >>> > > >> >>> > 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. > >> >>> > > >> >>> > 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. > >> >>> > > >> >>> > > >> >>> > _______________________________________________ > >> >>> > Xerte-dev mailing list > >> >>> > Xerte-dev at lists.nottingham.ac.uk > >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >>> > > >> >>> > 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. > >> >>> > > >> >>> > 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. > >> >>> > > >> >>> > > >> >>> > >> >>> _______________________________________________ > >> >>> Xerte-dev mailing list > >> >>> Xerte-dev at lists.nottingham.ac.uk > >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > >> >> > >> >> > >> >> 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. > >> >> > >> >> 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. > >> >> > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > >> >> 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. > >> >> > >> >> 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. > >> >> > >> >> > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jan 25 12:13:54 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 25 Jan 2012 12:13:54 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I need to allow for spaces in the regular expression then. It's jquery vs jquery sadly with that function. I want to force a save so the XOT object isn't lost, but wordpress doesn't like it. On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S wrote: > :-) Both old and new version workds without space > > By the way, If click WP Preview, and Cancle, it's suposed to go back to > Editor, but it still leads to Preview page. Is that correct? > > > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley > wrote: >> >> images with no spaces? >> >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S wrote: >> > Just swaped version. old version doesn't upload either. >> > Can see the image input box shows FileLocation + 'media/see you.jpg' >> > When click Play, got message-- You must select a picture before you can >> > veiw >> > it. >> > >> > >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley >> > wrote: >> >> >> >> Can you swap the old upload.php in and see if that fixes it? >> >> >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley >> >> wrote: >> >> > ok, so windows uploads and media folder not deleted. >> >> > >> >> > I played with rights issues in the latest version. >> >> > >> >> > >> >> > >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S >> >> > wrote: >> >> >> No, media folder is empty. >> >> >> By the way, when delete post, the preview.xml and data.xml got >> >> >> deleted, >> >> >> but >> >> >> media folder can't be deleted, error says Permission denied. >> >> >> ?I'm on Windows, so the permission problem might just be mine alone. >> >> >> But the >> >> >> uploads should get in there. >> >> >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley >> >> >> wrote: >> >> >>> >> >> >>> Is the file there? >> >> >>> >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S >> >> >>> wrote: >> >> >>> > One more thing-- the upload not doing well. I tried several post >> >> >>> > today, >> >> >>> > the >> >> >>> > content page is available but without picture. >> >> >>> > >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >> >> >>> > wrote: >> >> >>> >> >> >> >>> >> No, not at all, always good to make sure it's working before >> >> >>> >> several >> >> >>> >> thousand developers install it... >> >> >>> >> >> >> >>> >> ;-) >> >> >>> >> >> >> >>> >> -----Original Message----- >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >> >> >>> >> Pat >> >> >>> >> Lockley >> >> >>> >> Sent: 25 January 2012 10:31 >> >> >>> >> To: For Xerte technical developers >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >>> >> >> >> >>> >> I think there isn't the full HTML on those pages, so I need to >> >> >>> >> code >> >> >>> >> it >> >> >>> >> in. >> >> >>> >> >> >> >>> >> Didn't get the chance to touch it last night, will try to make a >> >> >>> >> release candidate tonight. >> >> >>> >> >> >> >>> >> Does anyone mind if I make it available Monday - best day for >> >> >>> >> announcing >> >> >>> >> things? >> >> >>> >> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >> >> >>> >> >> >> >>> >> wrote: >> >> >>> >> > Sure WP world will love it to bites :-) >> >> >>> >> > >> >> >>> >> > Pad, yesterday I didn't really remember how the single page >> >> >>> >> > initially >> >> >>> >> > loaded, only noticed the screen size problem when I played the >> >> >>> >> > Screen >> >> >>> >> > Size. >> >> >>> >> > Today I made a new post, at initial loading, ?it's not full >> >> >>> >> > fill >> >> >>> >> > the >> >> >>> >> > browser. Top and Left has small white space. Left and bottom >> >> >>> >> > has >> >> >>> >> > big >> >> >>> >> > space. >> >> >>> >> > Maybe because my computer screen is 1024*768, but I can't >> >> >>> >> > visit >> >> >>> >> > this >> >> >>> >> > localhost from another computer to test on a bigger screen. If >> >> >>> >> > you >> >> >>> >> > have >> >> >>> >> > a >> >> >>> >> > 1024*768, you can see what I mean. >> >> >>> >> > anyway, I attached a picture. >> >> >>> >> > >> >> >>> >> > >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> >> >>> >> > wrote: >> >> >>> >> >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a magic to >> >> >>> >> >> > WP. >> >> >>> >> >> > Extra >> >> >>> >> >> > treatment can be done only when you have time. >> >> >>> >> >> >> >> >>> >> >> Quite. I think it has the potential to be pretty popular... >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf >> >> >>> >> >> Of >> >> >>> >> >> Jenny.S >> >> >>> >> >> Sent: 24 January 2012 12:04 >> >> >>> >> >> To: For Xerte technical developers >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a magic to >> >> >>> >> >> WP. >> >> >>> >> >> Extra >> >> >>> >> >> treatment can be done only when you have time. >> >> >>> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> >> >>> >> >> wrote: >> >> >>> >> >> >> >> >>> >> >> Ah ok. I get you. >> >> >>> >> >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if it >> >> >>> >> >> displays >> >> >>> >> >> ok >> >> >>> >> >> on >> >> >>> >> >> the first showing then that's ok for me. >> >> >>> >> >> >> >> >>> >> >> I might see if I can get those views working properly, but >> >> >>> >> >> it's >> >> >>> >> >> problematic. >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >> >> >>> >> >> >> >> >>> >> >> wrote: >> >> >>> >> >> > yes, when view a single post, can play the content nicely. >> >> >>> >> >> > but >> >> >>> >> >> > if >> >> >>> >> >> > play >> >> >>> >> >> > the >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is resized to >> >> >>> >> >> > a >> >> >>> >> >> > picture, >> >> >>> >> >> > either too big or too small. the Large size can still play, >> >> >>> >> >> > but if >> >> >>> >> >> > resize to >> >> >>> >> >> > full screen or full window, it become a very small mobile >> >> >>> >> >> > phone >> >> >>> >> >> > sized >> >> >>> >> >> > picture. >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> >> >>> >> >> > wrote: >> >> >>> >> >> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? >> >> >>> >> >> >> >> >> >>> >> >> >> When you view a post? >> >> >>> >> >> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> >>> >> >> >> >> >> >>> >> >> >> wrote: >> >> >>> >> >> >> > yes, the single page. if you try to play Screen Size, >> >> >>> >> >> >> > you >> >> >>> >> >> >> > will >> >> >>> >> >> >> > see >> >> >>> >> >> >> > the >> >> >>> >> >> >> > resized screen is just a thumbnail >> >> >>> >> >> >> > >> >> >>> >> >> >> > >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> >>> >> >> >> > wrote: >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> Charpad I know about >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> Single page screen? >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> wrote: >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on the >> >> >>> >> >> >> >> > screen >> >> >>> >> >> >> >> > size. >> >> >>> >> >> >> >> > The >> >> >>> >> >> >> >> > single >> >> >>> >> >> >> >> > page screen starts from top left, but not stretch to >> >> >>> >> >> >> >> > bottom >> >> >>> >> >> >> >> > right. >> >> >>> >> >> >> >> > There's a >> >> >>> >> >> >> >> > space on right and bottom. >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >>> >> >> >> >> > wrote: >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove the >> >> >>> >> >> >> >> >> language >> >> >>> >> >> >> >> >> folder. >> >> >>> >> >> >> >> >> So, >> >> >>> >> >> >> >> >> the >> >> >>> >> >> >> >> >> new install need to remove old language folder >> >> >>> >> >> >> >> >> manually. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> Pad, this version works! >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >> >>> >> >> >> >> >>> wrote: >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> I think >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> 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. >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> 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. >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> _______________________________________________ >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> 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. >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> 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. >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > _______________________________________________ >> >> >>> >> >> >> >> > Xerte-dev mailing list >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > 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. >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > 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. >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> _______________________________________________ >> >> >>> >> >> >> >> Xerte-dev mailing list >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> > >> >> >>> >> >> >> > >> >> >>> >> >> >> > >> >> >>> >> >> >> > 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. >> >> >>> >> >> >> > >> >> >>> >> >> >> > 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. >> >> >>> >> >> >> > >> >> >>> >> >> >> > >> >> >>> >> >> >> > _______________________________________________ >> >> >>> >> >> >> > Xerte-dev mailing list >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> > >> >> >>> >> >> >> > 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. >> >> >>> >> >> >> > >> >> >>> >> >> >> > 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. >> >> >>> >> >> >> > >> >> >>> >> >> >> > >> >> >>> >> >> >> >> >> >>> >> >> >> _______________________________________________ >> >> >>> >> >> >> Xerte-dev mailing list >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > 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. >> >> >>> >> >> > >> >> >>> >> >> > 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. >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > _______________________________________________ >> >> >>> >> >> > Xerte-dev mailing list >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> > >> >> >>> >> >> > 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. >> >> >>> >> >> > >> >> >>> >> >> > 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. >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> >> >> >>> >> >> _______________________________________________ >> >> >>> >> >> Xerte-dev mailing list >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> 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. >> >> >>> >> >> >> >> >>> >> >> 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. >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> _______________________________________________ >> >> >>> >> >> Xerte-dev mailing list >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> >> >>> >> >> 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. >> >> >>> >> >> >> >> >>> >> >> 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. >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> > >> >> >>> >> > >> >> >>> >> > _______________________________________________ >> >> >>> >> > Xerte-dev mailing list >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> > >> >> >>> >> > 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. >> >> >>> >> > >> >> >>> >> > 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. >> >> >>> >> > >> >> >>> >> > >> >> >>> >> >> >> >>> >> _______________________________________________ >> >> >>> >> Xerte-dev mailing list >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> >> >> >> >>> >> _______________________________________________ >> >> >>> >> Xerte-dev mailing list >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> > >> >> >>> > >> >> >>> > >> >> >>> > 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. >> >> >>> > >> >> >>> > 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. >> >> >>> > >> >> >>> > >> >> >>> > _______________________________________________ >> >> >>> > Xerte-dev mailing list >> >> >>> > Xerte-dev at lists.nottingham.ac.uk >> >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >>> > >> >> >>> > 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. >> >> >>> > >> >> >>> > 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. >> >> >>> > >> >> >>> > >> >> >>> >> >> >>> _______________________________________________ >> >> >>> Xerte-dev mailing list >> >> >>> Xerte-dev at lists.nottingham.ac.uk >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From patrick.lockley at googlemail.com Thu Jan 26 01:44:38 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 01:44:38 +0000 Subject: [Xerte-dev] Charpad.swf Message-ID: Can't find it in the XOT repo? Does it live somewhere else? From jennysong.ss at gmail.com Thu Jan 26 01:58:39 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 09:58:39 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Pad, when click the Preview icon beside the Upload inputbox, I got a little thing showing up near menu, seems the image preview popup size is limited by something. I attached a picture. On Wed, Jan 25, 2012 at 8:13 PM, Pat Lockley wrote: > I need to allow for spaces in the regular expression then. > > It's jquery vs jquery sadly with that function. I want to force a save > so the XOT object isn't lost, but wordpress doesn't like it. > > On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S wrote: > > :-) Both old and new version workds without space > > > > By the way, If click WP Preview, and Cancle, it's suposed to go back to > > Editor, but it still leads to Preview page. Is that correct? > > > > > > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley > > wrote: > >> > >> images with no spaces? > >> > >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S > wrote: > >> > Just swaped version. old version doesn't upload either. > >> > Can see the image input box shows FileLocation + 'media/see you.jpg' > >> > When click Play, got message-- You must select a picture before you > can > >> > veiw > >> > it. > >> > > >> > > >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley > >> > wrote: > >> >> > >> >> Can you swap the old upload.php in and see if that fixes it? > >> >> > >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley > >> >> wrote: > >> >> > ok, so windows uploads and media folder not deleted. > >> >> > > >> >> > I played with rights issues in the latest version. > >> >> > > >> >> > > >> >> > > >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S > >> >> > wrote: > >> >> >> No, media folder is empty. > >> >> >> By the way, when delete post, the preview.xml and data.xml got > >> >> >> deleted, > >> >> >> but > >> >> >> media folder can't be deleted, error says Permission denied. > >> >> >> I'm on Windows, so the permission problem might just be mine > alone. > >> >> >> But the > >> >> >> uploads should get in there. > >> >> >> > >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley > >> >> >> wrote: > >> >> >>> > >> >> >>> Is the file there? > >> >> >>> > >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S < > jennysong.ss at gmail.com> > >> >> >>> wrote: > >> >> >>> > One more thing-- the upload not doing well. I tried several > post > >> >> >>> > today, > >> >> >>> > the > >> >> >>> > content page is available but without picture. > >> >> >>> > > >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney > >> >> >>> > wrote: > >> >> >>> >> > >> >> >>> >> No, not at all, always good to make sure it's working before > >> >> >>> >> several > >> >> >>> >> thousand developers install it... > >> >> >>> >> > >> >> >>> >> ;-) > >> >> >>> >> > >> >> >>> >> -----Original Message----- > >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf > Of > >> >> >>> >> Pat > >> >> >>> >> Lockley > >> >> >>> >> Sent: 25 January 2012 10:31 > >> >> >>> >> To: For Xerte technical developers > >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues > >> >> >>> >> > >> >> >>> >> I think there isn't the full HTML on those pages, so I need to > >> >> >>> >> code > >> >> >>> >> it > >> >> >>> >> in. > >> >> >>> >> > >> >> >>> >> Didn't get the chance to touch it last night, will try to > make a > >> >> >>> >> release candidate tonight. > >> >> >>> >> > >> >> >>> >> Does anyone mind if I make it available Monday - best day for > >> >> >>> >> announcing > >> >> >>> >> things? > >> >> >>> >> > >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S > >> >> >>> >> > >> >> >>> >> wrote: > >> >> >>> >> > Sure WP world will love it to bites :-) > >> >> >>> >> > > >> >> >>> >> > Pad, yesterday I didn't really remember how the single page > >> >> >>> >> > initially > >> >> >>> >> > loaded, only noticed the screen size problem when I played > the > >> >> >>> >> > Screen > >> >> >>> >> > Size. > >> >> >>> >> > Today I made a new post, at initial loading, it's not full > >> >> >>> >> > fill > >> >> >>> >> > the > >> >> >>> >> > browser. Top and Left has small white space. Left and bottom > >> >> >>> >> > has > >> >> >>> >> > big > >> >> >>> >> > space. > >> >> >>> >> > Maybe because my computer screen is 1024*768, but I can't > >> >> >>> >> > visit > >> >> >>> >> > this > >> >> >>> >> > localhost from another computer to test on a bigger screen. > If > >> >> >>> >> > you > >> >> >>> >> > have > >> >> >>> >> > a > >> >> >>> >> > 1024*768, you can see what I mean. > >> >> >>> >> > anyway, I attached a picture. > >> >> >>> >> > > >> >> >>> >> > > >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > >> >> >>> >> > wrote: > >> >> >>> >> >> > >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a magic to > >> >> >>> >> >> > WP. > >> >> >>> >> >> > Extra > >> >> >>> >> >> > treatment can be done only when you have time. > >> >> >>> >> >> > >> >> >>> >> >> Quite. I think it has the potential to be pretty popular... > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On > Behalf > >> >> >>> >> >> Of > >> >> >>> >> >> Jenny.S > >> >> >>> >> >> Sent: 24 January 2012 12:04 > >> >> >>> >> >> To: For Xerte technical developers > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess > issues > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> It's already a wonderful addition to Xerte, and a magic to > >> >> >>> >> >> WP. > >> >> >>> >> >> Extra > >> >> >>> >> >> treatment can be done only when you have time. > >> >> >>> >> >> > >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley > >> >> >>> >> >> wrote: > >> >> >>> >> >> > >> >> >>> >> >> Ah ok. I get you. > >> >> >>> >> >> > >> >> >>> >> >> I'm not sure that's something I'm going to fix - if it > >> >> >>> >> >> displays > >> >> >>> >> >> ok > >> >> >>> >> >> on > >> >> >>> >> >> the first showing then that's ok for me. > >> >> >>> >> >> > >> >> >>> >> >> I might see if I can get those views working properly, but > >> >> >>> >> >> it's > >> >> >>> >> >> problematic. > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S > >> >> >>> >> >> > >> >> >>> >> >> wrote: > >> >> >>> >> >> > yes, when view a single post, can play the content > nicely. > >> >> >>> >> >> > but > >> >> >>> >> >> > if > >> >> >>> >> >> > play > >> >> >>> >> >> > the > >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is resized > to > >> >> >>> >> >> > a > >> >> >>> >> >> > picture, > >> >> >>> >> >> > either too big or too small. the Large size can still > play, > >> >> >>> >> >> > but if > >> >> >>> >> >> > resize to > >> >> >>> >> >> > full screen or full window, it become a very small mobile > >> >> >>> >> >> > phone > >> >> >>> >> >> > sized > >> >> >>> >> >> > picture. > >> >> >>> >> >> > > >> >> >>> >> >> > > >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > >> >> >>> >> >> > wrote: > >> >> >>> >> >> >> > >> >> >>> >> >> >> I'm not sure what you mean by single page? > >> >> >>> >> >> >> > >> >> >>> >> >> >> When you view a post? > >> >> >>> >> >> >> > >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > >> >> >>> >> >> >> > >> >> >>> >> >> >> wrote: > >> >> >>> >> >> >> > yes, the single page. if you try to play Screen Size, > >> >> >>> >> >> >> > you > >> >> >>> >> >> >> > will > >> >> >>> >> >> >> > see > >> >> >>> >> >> >> > the > >> >> >>> >> >> >> > resized screen is just a thumbnail > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >> >> >>> >> >> >> > wrote: > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> Charpad I know about > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> Single page screen? > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> wrote: > >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on the > >> >> >>> >> >> >> >> > screen > >> >> >>> >> >> >> >> > size. > >> >> >>> >> >> >> >> > The > >> >> >>> >> >> >> >> > single > >> >> >>> >> >> >> >> > page screen starts from top left, but not stretch > to > >> >> >>> >> >> >> >> > bottom > >> >> >>> >> >> >> >> > right. > >> >> >>> >> >> >> >> > There's a > >> >> >>> >> >> >> >> > space on right and bottom. > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >> >> >>> >> >> >> >> > wrote: > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> wrote: > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove the > >> >> >>> >> >> >> >> >> language > >> >> >>> >> >> >> >> >> folder. > >> >> >>> >> >> >> >> >> So, > >> >> >>> >> >> >> >> >> the > >> >> >>> >> >> >> >> >> new install need to remove old language folder > >> >> >>> >> >> >> >> >> manually. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> wrote: > >> >> >>> >> >> >> >> >>> > >> >> >>> >> >> >> >> >>> Pad, this version works! > >> >> >>> >> >> >> >> >>> > >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley > >> >> >>> >> >> >> >> >>> wrote: > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> I think > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to PC > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> 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. > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> 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. > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> _______________________________________________ > >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list > >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> 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. > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> 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. > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>>> > >> >> >>> >> >> >> >> >>> > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> 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. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> 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. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> _______________________________________________ > >> >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> 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. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> 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. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> _______________________________________________ > >> >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> 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. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> 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. > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> >> > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > _______________________________________________ > >> >> >>> >> >> >> >> > Xerte-dev mailing list > >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > 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. > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > 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. > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> _______________________________________________ > >> >> >>> >> >> >> >> Xerte-dev mailing list > >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> >> >> > >> >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > 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. > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > 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. > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > _______________________________________________ > >> >> >>> >> >> >> > Xerte-dev mailing list > >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > 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. > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > 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. > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > > >> >> >>> >> >> >> > >> >> >>> >> >> >> _______________________________________________ > >> >> >>> >> >> >> Xerte-dev mailing list > >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> > > >> >> >>> >> >> > > >> >> >>> >> >> > > >> >> >>> >> >> > 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. > >> >> >>> >> >> > > >> >> >>> >> >> > 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. > >> >> >>> >> >> > > >> >> >>> >> >> > > >> >> >>> >> >> > _______________________________________________ > >> >> >>> >> >> > Xerte-dev mailing list > >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> > > >> >> >>> >> >> > 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. > >> >> >>> >> >> > > >> >> >>> >> >> > 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. > >> >> >>> >> >> > > >> >> >>> >> >> > > >> >> >>> >> >> > >> >> >>> >> >> _______________________________________________ > >> >> >>> >> >> Xerte-dev mailing list > >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> 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. > >> >> >>> >> >> > >> >> >>> >> >> 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. > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> >> _______________________________________________ > >> >> >>> >> >> Xerte-dev mailing list > >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> >> > >> >> >>> >> >> 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. > >> >> >>> >> >> > >> >> >>> >> >> 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. > >> >> >>> >> >> > >> >> >>> >> >> > >> >> >>> >> > > >> >> >>> >> > > >> >> >>> >> > _______________________________________________ > >> >> >>> >> > Xerte-dev mailing list > >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> > > >> >> >>> >> > 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. > >> >> >>> >> > > >> >> >>> >> > 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. > >> >> >>> >> > > >> >> >>> >> > > >> >> >>> >> > >> >> >>> >> _______________________________________________ > >> >> >>> >> Xerte-dev mailing list > >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> >> > >> >> >>> >> _______________________________________________ > >> >> >>> >> Xerte-dev mailing list > >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> > > >> >> >>> > > >> >> >>> > > >> >> >>> > 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. > >> >> >>> > > >> >> >>> > 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. > >> >> >>> > > >> >> >>> > > >> >> >>> > _______________________________________________ > >> >> >>> > Xerte-dev mailing list > >> >> >>> > Xerte-dev at lists.nottingham.ac.uk > >> >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >>> > > >> >> >>> > 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. > >> >> >>> > > >> >> >>> > 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. > >> >> >>> > > >> >> >>> > > >> >> >>> > >> >> >>> _______________________________________________ > >> >> >>> Xerte-dev mailing list > >> >> >>> Xerte-dev at lists.nottingham.ac.uk > >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > >> >> >> > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: preview-uploads.PNG Type: image/png Size: 6223 bytes Desc: not available URL: From patrick.lockley at googlemail.com Thu Jan 26 01:59:54 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 01:59:54 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: i think thats the preview box, when the image is very small, or doesn't load properly? On Thu, Jan 26, 2012 at 1:58 AM, Jenny.S wrote: > Pad, when click the Preview icon beside the Upload inputbox, I got a little > thing showing up near menu, seems the image preview popup size is limited > by something. I attached a picture. > > On Wed, Jan 25, 2012 at 8:13 PM, Pat Lockley > wrote: >> >> I need to allow for spaces in the regular expression then. >> >> It's jquery vs jquery sadly with that function. I want to force a save >> so the XOT object isn't lost, but wordpress doesn't like it. >> >> On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S wrote: >> > :-) Both old and new version workds without space >> > >> > By the way, If click WP Preview, and Cancle, it's suposed to go back to >> > Editor, but it still leads to Preview page. Is that correct? >> > >> > >> > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley >> > wrote: >> >> >> >> images with no spaces? >> >> >> >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S >> >> wrote: >> >> > Just swaped version. old version doesn't upload either. >> >> > Can see the image input box shows FileLocation + 'media/see you.jpg' >> >> > When click Play, got message-- You must select a picture before you >> >> > can >> >> > veiw >> >> > it. >> >> > >> >> > >> >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> Can you swap the old upload.php in and see if that fixes it? >> >> >> >> >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley >> >> >> wrote: >> >> >> > ok, so windows uploads and media folder not deleted. >> >> >> > >> >> >> > I played with rights issues in the latest version. >> >> >> > >> >> >> > >> >> >> > >> >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S >> >> >> > wrote: >> >> >> >> No, media folder is empty. >> >> >> >> By the way, when delete post, the preview.xml and data.xml got >> >> >> >> deleted, >> >> >> >> but >> >> >> >> media folder can't be deleted, error says Permission denied. >> >> >> >> ?I'm on Windows, so the permission problem might just be mine >> >> >> >> alone. >> >> >> >> But the >> >> >> >> uploads should get in there. >> >> >> >> >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley >> >> >> >> wrote: >> >> >> >>> >> >> >> >>> Is the file there? >> >> >> >>> >> >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S >> >> >> >>> >> >> >> >>> wrote: >> >> >> >>> > One more thing-- the upload not doing well. I tried several >> >> >> >>> > post >> >> >> >>> > today, >> >> >> >>> > the >> >> >> >>> > content page is available but without picture. >> >> >> >>> > >> >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >> >> >> >>> > wrote: >> >> >> >>> >> >> >> >> >>> >> No, not at all, always good to make sure it's working before >> >> >> >>> >> several >> >> >> >>> >> thousand developers install it... >> >> >> >>> >> >> >> >> >>> >> ;-) >> >> >> >>> >> >> >> >> >>> >> -----Original Message----- >> >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf >> >> >> >>> >> Of >> >> >> >>> >> Pat >> >> >> >>> >> Lockley >> >> >> >>> >> Sent: 25 January 2012 10:31 >> >> >> >>> >> To: For Xerte technical developers >> >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues >> >> >> >>> >> >> >> >> >>> >> I think there isn't the full HTML on those pages, so I need >> >> >> >>> >> to >> >> >> >>> >> code >> >> >> >>> >> it >> >> >> >>> >> in. >> >> >> >>> >> >> >> >> >>> >> Didn't get the chance to touch it last night, will try to >> >> >> >>> >> make a >> >> >> >>> >> release candidate tonight. >> >> >> >>> >> >> >> >> >>> >> Does anyone mind if I make it available Monday - best day for >> >> >> >>> >> announcing >> >> >> >>> >> things? >> >> >> >>> >> >> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >> >> >> >>> >> >> >> >> >>> >> wrote: >> >> >> >>> >> > Sure WP world will love it to bites :-) >> >> >> >>> >> > >> >> >> >>> >> > Pad, yesterday I didn't really remember how the single page >> >> >> >>> >> > initially >> >> >> >>> >> > loaded, only noticed the screen size problem when I played >> >> >> >>> >> > the >> >> >> >>> >> > Screen >> >> >> >>> >> > Size. >> >> >> >>> >> > Today I made a new post, at initial loading, ?it's not full >> >> >> >>> >> > fill >> >> >> >>> >> > the >> >> >> >>> >> > browser. Top and Left has small white space. Left and >> >> >> >>> >> > bottom >> >> >> >>> >> > has >> >> >> >>> >> > big >> >> >> >>> >> > space. >> >> >> >>> >> > Maybe because my computer screen is 1024*768, but I can't >> >> >> >>> >> > visit >> >> >> >>> >> > this >> >> >> >>> >> > localhost from another computer to test on a bigger screen. >> >> >> >>> >> > If >> >> >> >>> >> > you >> >> >> >>> >> > have >> >> >> >>> >> > a >> >> >> >>> >> > 1024*768, you can see what I mean. >> >> >> >>> >> > anyway, I attached a picture. >> >> >> >>> >> > >> >> >> >>> >> > >> >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> >> >> >>> >> > wrote: >> >> >> >>> >> >> >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a magic >> >> >> >>> >> >> > to >> >> >> >>> >> >> > WP. >> >> >> >>> >> >> > Extra >> >> >> >>> >> >> > treatment can be done only when you have time. >> >> >> >>> >> >> >> >> >> >>> >> >> Quite. I think it has the potential to be pretty >> >> >> >>> >> >> popular... >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On >> >> >> >>> >> >> Behalf >> >> >> >>> >> >> Of >> >> >> >>> >> >> Jenny.S >> >> >> >>> >> >> Sent: 24 January 2012 12:04 >> >> >> >>> >> >> To: For Xerte technical developers >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess >> >> >> >>> >> >> issues >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a magic to >> >> >> >>> >> >> WP. >> >> >> >>> >> >> Extra >> >> >> >>> >> >> treatment can be done only when you have time. >> >> >> >>> >> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> >> >> >>> >> >> wrote: >> >> >> >>> >> >> >> >> >> >>> >> >> Ah ok. I get you. >> >> >> >>> >> >> >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if it >> >> >> >>> >> >> displays >> >> >> >>> >> >> ok >> >> >> >>> >> >> on >> >> >> >>> >> >> the first showing then that's ok for me. >> >> >> >>> >> >> >> >> >> >>> >> >> I might see if I can get those views working properly, but >> >> >> >>> >> >> it's >> >> >> >>> >> >> problematic. >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >> >> >> >>> >> >> >> >> >> >>> >> >> wrote: >> >> >> >>> >> >> > yes, when view a single post, can play the content >> >> >> >>> >> >> > nicely. >> >> >> >>> >> >> > but >> >> >> >>> >> >> > if >> >> >> >>> >> >> > play >> >> >> >>> >> >> > the >> >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is resized >> >> >> >>> >> >> > to >> >> >> >>> >> >> > a >> >> >> >>> >> >> > picture, >> >> >> >>> >> >> > either too big or too small. the Large size can still >> >> >> >>> >> >> > play, >> >> >> >>> >> >> > but if >> >> >> >>> >> >> > resize to >> >> >> >>> >> >> > full screen or full window, it become a very small >> >> >> >>> >> >> > mobile >> >> >> >>> >> >> > phone >> >> >> >>> >> >> > sized >> >> >> >>> >> >> > picture. >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> >> >> >>> >> >> > wrote: >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> When you view a post? >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> wrote: >> >> >> >>> >> >> >> > yes, the single page. if you try to play Screen Size, >> >> >> >>> >> >> >> > you >> >> >> >>> >> >> >> > will >> >> >> >>> >> >> >> > see >> >> >> >>> >> >> >> > the >> >> >> >>> >> >> >> > resized screen is just a thumbnail >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> >> >>> >> >> >> > wrote: >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> Charpad I know about >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> Single page screen? >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> wrote: >> >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on >> >> >> >>> >> >> >> >> > the >> >> >> >>> >> >> >> >> > screen >> >> >> >>> >> >> >> >> > size. >> >> >> >>> >> >> >> >> > The >> >> >> >>> >> >> >> >> > single >> >> >> >>> >> >> >> >> > page screen starts from top left, but not stretch >> >> >> >>> >> >> >> >> > to >> >> >> >>> >> >> >> >> > bottom >> >> >> >>> >> >> >> >> > right. >> >> >> >>> >> >> >> >> > There's a >> >> >> >>> >> >> >> >> > space on right and bottom. >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >> >>> >> >> >> >> > wrote: >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove the >> >> >> >>> >> >> >> >> >> language >> >> >> >>> >> >> >> >> >> folder. >> >> >> >>> >> >> >> >> >> So, >> >> >> >>> >> >> >> >> >> the >> >> >> >>> >> >> >> >> >> new install need to remove old language folder >> >> >> >>> >> >> >> >> >> manually. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >> >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> Pad, this version works! >> >> >> >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >> >> >>> >> >> >> >> >>> wrote: >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> I think >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to >> >> >> >>> >> >> >> >> >>>> PC >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> _______________________________________________ >> >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list >> >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>>> >> >> >> >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > _______________________________________________ >> >> >> >>> >> >> >> >> > Xerte-dev mailing list >> >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > 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. >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > 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. >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> _______________________________________________ >> >> >> >>> >> >> >> >> Xerte-dev mailing list >> >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > 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. >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > 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. >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > _______________________________________________ >> >> >> >>> >> >> >> > Xerte-dev mailing list >> >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > 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. >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > 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. >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> _______________________________________________ >> >> >> >>> >> >> >> Xerte-dev mailing list >> >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > 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. >> >> >> >>> >> >> > >> >> >> >>> >> >> > 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. >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > _______________________________________________ >> >> >> >>> >> >> > Xerte-dev mailing list >> >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> > >> >> >> >>> >> >> > 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. >> >> >> >>> >> >> > >> >> >> >>> >> >> > 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. >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> >> >> >> >>> >> >> _______________________________________________ >> >> >> >>> >> >> Xerte-dev mailing list >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> 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. >> >> >> >>> >> >> >> >> >> >>> >> >> 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. >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> _______________________________________________ >> >> >> >>> >> >> Xerte-dev mailing list >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> >> >> >>> >> >> 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. >> >> >> >>> >> >> >> >> >> >>> >> >> 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. >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> > >> >> >> >>> >> > >> >> >> >>> >> > _______________________________________________ >> >> >> >>> >> > Xerte-dev mailing list >> >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> > >> >> >> >>> >> > 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. >> >> >> >>> >> > >> >> >> >>> >> > 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. >> >> >> >>> >> > >> >> >> >>> >> > >> >> >> >>> >> >> >> >> >>> >> _______________________________________________ >> >> >> >>> >> Xerte-dev mailing list >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> >> >> >> >> >>> >> _______________________________________________ >> >> >> >>> >> Xerte-dev mailing list >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> > >> >> >> >>> > >> >> >> >>> > >> >> >> >>> > 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. >> >> >> >>> > >> >> >> >>> > 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. >> >> >> >>> > >> >> >> >>> > >> >> >> >>> > _______________________________________________ >> >> >> >>> > Xerte-dev mailing list >> >> >> >>> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >>> > >> >> >> >>> > 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. >> >> >> >>> > >> >> >> >>> > 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. >> >> >> >>> > >> >> >> >>> > >> >> >> >>> >> >> >> >>> _______________________________________________ >> >> >> >>> Xerte-dev mailing list >> >> >> >>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 02:10:13 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:10:13 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Either small or big, can't see the picture, can only see the top menu got blured as the picture I showed you. On Thu, Jan 26, 2012 at 9:59 AM, Pat Lockley wrote: > i think thats the preview box, when the image is very small, or > doesn't load properly? > > On Thu, Jan 26, 2012 at 1:58 AM, Jenny.S wrote: > > Pad, when click the Preview icon beside the Upload inputbox, I got a > little > > thing showing up near menu, seems the image preview popup size is limited > > by something. I attached a picture. > > > > On Wed, Jan 25, 2012 at 8:13 PM, Pat Lockley > > wrote: > >> > >> I need to allow for spaces in the regular expression then. > >> > >> It's jquery vs jquery sadly with that function. I want to force a save > >> so the XOT object isn't lost, but wordpress doesn't like it. > >> > >> On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S > wrote: > >> > :-) Both old and new version workds without space > >> > > >> > By the way, If click WP Preview, and Cancle, it's suposed to go back > to > >> > Editor, but it still leads to Preview page. Is that correct? > >> > > >> > > >> > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley > >> > wrote: > >> >> > >> >> images with no spaces? > >> >> > >> >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S > >> >> wrote: > >> >> > Just swaped version. old version doesn't upload either. > >> >> > Can see the image input box shows FileLocation + 'media/see > you.jpg' > >> >> > When click Play, got message-- You must select a picture before you > >> >> > can > >> >> > veiw > >> >> > it. > >> >> > > >> >> > > >> >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> Can you swap the old upload.php in and see if that fixes it? > >> >> >> > >> >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley > >> >> >> wrote: > >> >> >> > ok, so windows uploads and media folder not deleted. > >> >> >> > > >> >> >> > I played with rights issues in the latest version. > >> >> >> > > >> >> >> > > >> >> >> > > >> >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S < > jennysong.ss at gmail.com> > >> >> >> > wrote: > >> >> >> >> No, media folder is empty. > >> >> >> >> By the way, when delete post, the preview.xml and data.xml got > >> >> >> >> deleted, > >> >> >> >> but > >> >> >> >> media folder can't be deleted, error says Permission denied. > >> >> >> >> I'm on Windows, so the permission problem might just be mine > >> >> >> >> alone. > >> >> >> >> But the > >> >> >> >> uploads should get in there. > >> >> >> >> > >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley > >> >> >> >> wrote: > >> >> >> >>> > >> >> >> >>> Is the file there? > >> >> >> >>> > >> >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S > >> >> >> >>> > >> >> >> >>> wrote: > >> >> >> >>> > One more thing-- the upload not doing well. I tried several > >> >> >> >>> > post > >> >> >> >>> > today, > >> >> >> >>> > the > >> >> >> >>> > content page is available but without picture. > >> >> >> >>> > > >> >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney > >> >> >> >>> > wrote: > >> >> >> >>> >> > >> >> >> >>> >> No, not at all, always good to make sure it's working > before > >> >> >> >>> >> several > >> >> >> >>> >> thousand developers install it... > >> >> >> >>> >> > >> >> >> >>> >> ;-) > >> >> >> >>> >> > >> >> >> >>> >> -----Original Message----- > >> >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On > Behalf > >> >> >> >>> >> Of > >> >> >> >>> >> Pat > >> >> >> >>> >> Lockley > >> >> >> >>> >> Sent: 25 January 2012 10:31 > >> >> >> >>> >> To: For Xerte technical developers > >> >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess > issues > >> >> >> >>> >> > >> >> >> >>> >> I think there isn't the full HTML on those pages, so I need > >> >> >> >>> >> to > >> >> >> >>> >> code > >> >> >> >>> >> it > >> >> >> >>> >> in. > >> >> >> >>> >> > >> >> >> >>> >> Didn't get the chance to touch it last night, will try to > >> >> >> >>> >> make a > >> >> >> >>> >> release candidate tonight. > >> >> >> >>> >> > >> >> >> >>> >> Does anyone mind if I make it available Monday - best day > for > >> >> >> >>> >> announcing > >> >> >> >>> >> things? > >> >> >> >>> >> > >> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S > >> >> >> >>> >> > >> >> >> >>> >> wrote: > >> >> >> >>> >> > Sure WP world will love it to bites :-) > >> >> >> >>> >> > > >> >> >> >>> >> > Pad, yesterday I didn't really remember how the single > page > >> >> >> >>> >> > initially > >> >> >> >>> >> > loaded, only noticed the screen size problem when I > played > >> >> >> >>> >> > the > >> >> >> >>> >> > Screen > >> >> >> >>> >> > Size. > >> >> >> >>> >> > Today I made a new post, at initial loading, it's not > full > >> >> >> >>> >> > fill > >> >> >> >>> >> > the > >> >> >> >>> >> > browser. Top and Left has small white space. Left and > >> >> >> >>> >> > bottom > >> >> >> >>> >> > has > >> >> >> >>> >> > big > >> >> >> >>> >> > space. > >> >> >> >>> >> > Maybe because my computer screen is 1024*768, but I can't > >> >> >> >>> >> > visit > >> >> >> >>> >> > this > >> >> >> >>> >> > localhost from another computer to test on a bigger > screen. > >> >> >> >>> >> > If > >> >> >> >>> >> > you > >> >> >> >>> >> > have > >> >> >> >>> >> > a > >> >> >> >>> >> > 1024*768, you can see what I mean. > >> >> >> >>> >> > anyway, I attached a picture. > >> >> >> >>> >> > > >> >> >> >>> >> > > >> >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > >> >> >> >>> >> > wrote: > >> >> >> >>> >> >> > >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a magic > >> >> >> >>> >> >> > to > >> >> >> >>> >> >> > WP. > >> >> >> >>> >> >> > Extra > >> >> >> >>> >> >> > treatment can be done only when you have time. > >> >> >> >>> >> >> > >> >> >> >>> >> >> Quite. I think it has the potential to be pretty > >> >> >> >>> >> >> popular... > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On > >> >> >> >>> >> >> Behalf > >> >> >> >>> >> >> Of > >> >> >> >>> >> >> Jenny.S > >> >> >> >>> >> >> Sent: 24 January 2012 12:04 > >> >> >> >>> >> >> To: For Xerte technical developers > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess > >> >> >> >>> >> >> issues > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a magic > to > >> >> >> >>> >> >> WP. > >> >> >> >>> >> >> Extra > >> >> >> >>> >> >> treatment can be done only when you have time. > >> >> >> >>> >> >> > >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley > >> >> >> >>> >> >> wrote: > >> >> >> >>> >> >> > >> >> >> >>> >> >> Ah ok. I get you. > >> >> >> >>> >> >> > >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if it > >> >> >> >>> >> >> displays > >> >> >> >>> >> >> ok > >> >> >> >>> >> >> on > >> >> >> >>> >> >> the first showing then that's ok for me. > >> >> >> >>> >> >> > >> >> >> >>> >> >> I might see if I can get those views working properly, > but > >> >> >> >>> >> >> it's > >> >> >> >>> >> >> problematic. > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S > >> >> >> >>> >> >> > >> >> >> >>> >> >> wrote: > >> >> >> >>> >> >> > yes, when view a single post, can play the content > >> >> >> >>> >> >> > nicely. > >> >> >> >>> >> >> > but > >> >> >> >>> >> >> > if > >> >> >> >>> >> >> > play > >> >> >> >>> >> >> > the > >> >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is > resized > >> >> >> >>> >> >> > to > >> >> >> >>> >> >> > a > >> >> >> >>> >> >> > picture, > >> >> >> >>> >> >> > either too big or too small. the Large size can still > >> >> >> >>> >> >> > play, > >> >> >> >>> >> >> > but if > >> >> >> >>> >> >> > resize to > >> >> >> >>> >> >> > full screen or full window, it become a very small > >> >> >> >>> >> >> > mobile > >> >> >> >>> >> >> > phone > >> >> >> >>> >> >> > sized > >> >> >> >>> >> >> > picture. > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > >> >> >> >>> >> >> > wrote: > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> I'm not sure what you mean by single page? > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> When you view a post? > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> wrote: > >> >> >> >>> >> >> >> > yes, the single page. if you try to play Screen > Size, > >> >> >> >>> >> >> >> > you > >> >> >> >>> >> >> >> > will > >> >> >> >>> >> >> >> > see > >> >> >> >>> >> >> >> > the > >> >> >> >>> >> >> >> > resized screen is just a thumbnail > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >> >> >> >>> >> >> >> > wrote: > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> Charpad I know about > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> Single page screen? > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> wrote: > >> >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on > >> >> >> >>> >> >> >> >> > the > >> >> >> >>> >> >> >> >> > screen > >> >> >> >>> >> >> >> >> > size. > >> >> >> >>> >> >> >> >> > The > >> >> >> >>> >> >> >> >> > single > >> >> >> >>> >> >> >> >> > page screen starts from top left, but not > stretch > >> >> >> >>> >> >> >> >> > to > >> >> >> >>> >> >> >> >> > bottom > >> >> >> >>> >> >> >> >> > right. > >> >> >> >>> >> >> >> >> > There's a > >> >> >> >>> >> >> >> >> > space on right and bottom. > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >> >> >> >>> >> >> >> >> > wrote: > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> wrote: > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove the > >> >> >> >>> >> >> >> >> >> language > >> >> >> >>> >> >> >> >> >> folder. > >> >> >> >>> >> >> >> >> >> So, > >> >> >> >>> >> >> >> >> >> the > >> >> >> >>> >> >> >> >> >> new install need to remove old language folder > >> >> >> >>> >> >> >> >> >> manually. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> wrote: > >> >> >> >>> >> >> >> >> >>> > >> >> >> >>> >> >> >> >> >>> Pad, this version works! > >> >> >> >>> >> >> >> >> >>> > >> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley > >> >> >> >>> >> >> >> >> >>> wrote: > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> I think > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported to > >> >> >> >>> >> >> >> >> >>>> PC > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> > _______________________________________________ > >> >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list > >> >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>>> > >> >> >> >>> >> >> >> >> >>> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> _______________________________________________ > >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> _______________________________________________ > >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> >> > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > _______________________________________________ > >> >> >> >>> >> >> >> >> > Xerte-dev mailing list > >> >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > 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. > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > 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. > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> _______________________________________________ > >> >> >> >>> >> >> >> >> Xerte-dev mailing list > >> >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > >> >> >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > 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. > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > 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. > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > _______________________________________________ > >> >> >> >>> >> >> >> > Xerte-dev mailing list > >> >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > 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. > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > 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. > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> _______________________________________________ > >> >> >> >>> >> >> >> Xerte-dev mailing list > >> >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> >> > >> >> >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > 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. > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > 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. > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > _______________________________________________ > >> >> >> >>> >> >> > Xerte-dev mailing list > >> >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > 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. > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > 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. > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > > >> >> >> >>> >> >> > >> >> >> >>> >> >> _______________________________________________ > >> >> >> >>> >> >> Xerte-dev mailing list > >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> 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. > >> >> >> >>> >> >> > >> >> >> >>> >> >> 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. > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> >> _______________________________________________ > >> >> >> >>> >> >> Xerte-dev mailing list > >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> >> > >> >> >> >>> >> >> 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. > >> >> >> >>> >> >> > >> >> >> >>> >> >> 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. > >> >> >> >>> >> >> > >> >> >> >>> >> >> > >> >> >> >>> >> > > >> >> >> >>> >> > > >> >> >> >>> >> > _______________________________________________ > >> >> >> >>> >> > Xerte-dev mailing list > >> >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> > > >> >> >> >>> >> > 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. > >> >> >> >>> >> > > >> >> >> >>> >> > 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. > >> >> >> >>> >> > > >> >> >> >>> >> > > >> >> >> >>> >> > >> >> >> >>> >> _______________________________________________ > >> >> >> >>> >> Xerte-dev mailing list > >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> >> > >> >> >> >>> >> _______________________________________________ > >> >> >> >>> >> Xerte-dev mailing list > >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> > > >> >> >> >>> > > >> >> >> >>> > > >> >> >> >>> > 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. > >> >> >> >>> > > >> >> >> >>> > 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. > >> >> >> >>> > > >> >> >> >>> > > >> >> >> >>> > _______________________________________________ > >> >> >> >>> > Xerte-dev mailing list > >> >> >> >>> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >>> > > >> >> >> >>> > 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. > >> >> >> >>> > > >> >> >> >>> > 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. > >> >> >> >>> > > >> >> >> >>> > > >> >> >> >>> > >> >> >> >>> _______________________________________________ > >> >> >> >>> Xerte-dev mailing list > >> >> >> >>> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 02:13:00 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 02:13:00 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: i have the same here do you get an error in the chrome or firebug console? On Thu, Jan 26, 2012 at 2:10 AM, Jenny.S wrote: > Either small or big, can't see the picture, can only see the top menu got > blured as the picture I showed you. > > On Thu, Jan 26, 2012 at 9:59 AM, Pat Lockley > wrote: >> >> i think thats the preview box, when the image is very small, or >> doesn't load properly? >> >> On Thu, Jan 26, 2012 at 1:58 AM, Jenny.S wrote: >> > Pad, when click the Preview icon beside the Upload inputbox, I got a >> > little >> > thing showing up near menu, seems the image preview popup size is >> > limited >> > by something. I attached a picture. >> > >> > On Wed, Jan 25, 2012 at 8:13 PM, Pat Lockley >> > wrote: >> >> >> >> I need to allow for spaces in the regular expression then. >> >> >> >> It's jquery vs jquery sadly with that function. I want to force a save >> >> so the XOT object isn't lost, but wordpress doesn't like it. >> >> >> >> On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S >> >> wrote: >> >> > :-) Both old and new version workds without space >> >> > >> >> > By the way, If click WP Preview, and Cancle, it's suposed to go back >> >> > to >> >> > Editor, but it still leads to Preview page. Is that correct? >> >> > >> >> > >> >> > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> images with no spaces? >> >> >> >> >> >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S >> >> >> wrote: >> >> >> > Just swaped version. old version doesn't upload either. >> >> >> > Can see the image input box shows FileLocation + 'media/see >> >> >> > you.jpg' >> >> >> > When click Play, got message-- You must select a picture before >> >> >> > you >> >> >> > can >> >> >> > veiw >> >> >> > it. >> >> >> > >> >> >> > >> >> >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> Can you swap the old upload.php in and see if that fixes it? >> >> >> >> >> >> >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley >> >> >> >> wrote: >> >> >> >> > ok, so windows uploads and media folder not deleted. >> >> >> >> > >> >> >> >> > I played with rights issues in the latest version. >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S >> >> >> >> > >> >> >> >> > wrote: >> >> >> >> >> No, media folder is empty. >> >> >> >> >> By the way, when delete post, the preview.xml and data.xml got >> >> >> >> >> deleted, >> >> >> >> >> but >> >> >> >> >> media folder can't be deleted, error says Permission denied. >> >> >> >> >> ?I'm on Windows, so the permission problem might just be mine >> >> >> >> >> alone. >> >> >> >> >> But the >> >> >> >> >> uploads should get in there. >> >> >> >> >> >> >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley >> >> >> >> >> wrote: >> >> >> >> >>> >> >> >> >> >>> Is the file there? >> >> >> >> >>> >> >> >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S >> >> >> >> >>> >> >> >> >> >>> wrote: >> >> >> >> >>> > One more thing-- the upload not doing well. I tried several >> >> >> >> >>> > post >> >> >> >> >>> > today, >> >> >> >> >>> > the >> >> >> >> >>> > content page is available but without picture. >> >> >> >> >>> > >> >> >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >> >> >> >> >>> > wrote: >> >> >> >> >>> >> >> >> >> >> >>> >> No, not at all, always good to make sure it's working >> >> >> >> >>> >> before >> >> >> >> >>> >> several >> >> >> >> >>> >> thousand developers install it... >> >> >> >> >>> >> >> >> >> >> >>> >> ;-) >> >> >> >> >>> >> >> >> >> >> >>> >> -----Original Message----- >> >> >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On >> >> >> >> >>> >> Behalf >> >> >> >> >>> >> Of >> >> >> >> >>> >> Pat >> >> >> >> >>> >> Lockley >> >> >> >> >>> >> Sent: 25 January 2012 10:31 >> >> >> >> >>> >> To: For Xerte technical developers >> >> >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess >> >> >> >> >>> >> issues >> >> >> >> >>> >> >> >> >> >> >>> >> I think there isn't the full HTML on those pages, so I >> >> >> >> >>> >> need >> >> >> >> >>> >> to >> >> >> >> >>> >> code >> >> >> >> >>> >> it >> >> >> >> >>> >> in. >> >> >> >> >>> >> >> >> >> >> >>> >> Didn't get the chance to touch it last night, will try to >> >> >> >> >>> >> make a >> >> >> >> >>> >> release candidate tonight. >> >> >> >> >>> >> >> >> >> >> >>> >> Does anyone mind if I make it available Monday - best day >> >> >> >> >>> >> for >> >> >> >> >>> >> announcing >> >> >> >> >>> >> things? >> >> >> >> >>> >> >> >> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >> >> >> >> >>> >> >> >> >> >> >>> >> wrote: >> >> >> >> >>> >> > Sure WP world will love it to bites :-) >> >> >> >> >>> >> > >> >> >> >> >>> >> > Pad, yesterday I didn't really remember how the single >> >> >> >> >>> >> > page >> >> >> >> >>> >> > initially >> >> >> >> >>> >> > loaded, only noticed the screen size problem when I >> >> >> >> >>> >> > played >> >> >> >> >>> >> > the >> >> >> >> >>> >> > Screen >> >> >> >> >>> >> > Size. >> >> >> >> >>> >> > Today I made a new post, at initial loading, ?it's not >> >> >> >> >>> >> > full >> >> >> >> >>> >> > fill >> >> >> >> >>> >> > the >> >> >> >> >>> >> > browser. Top and Left has small white space. Left and >> >> >> >> >>> >> > bottom >> >> >> >> >>> >> > has >> >> >> >> >>> >> > big >> >> >> >> >>> >> > space. >> >> >> >> >>> >> > Maybe because my computer screen is 1024*768, but I >> >> >> >> >>> >> > can't >> >> >> >> >>> >> > visit >> >> >> >> >>> >> > this >> >> >> >> >>> >> > localhost from another computer to test on a bigger >> >> >> >> >>> >> > screen. >> >> >> >> >>> >> > If >> >> >> >> >>> >> > you >> >> >> >> >>> >> > have >> >> >> >> >>> >> > a >> >> >> >> >>> >> > 1024*768, you can see what I mean. >> >> >> >> >>> >> > anyway, I attached a picture. >> >> >> >> >>> >> > >> >> >> >> >>> >> > >> >> >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> >> >> >> >>> >> > wrote: >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a >> >> >> >> >>> >> >> > magic >> >> >> >> >>> >> >> > to >> >> >> >> >>> >> >> > WP. >> >> >> >> >>> >> >> > Extra >> >> >> >> >>> >> >> > treatment can be done only when you have time. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> Quite. I think it has the potential to be pretty >> >> >> >> >>> >> >> popular... >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On >> >> >> >> >>> >> >> Behalf >> >> >> >> >>> >> >> Of >> >> >> >> >>> >> >> Jenny.S >> >> >> >> >>> >> >> Sent: 24 January 2012 12:04 >> >> >> >> >>> >> >> To: For Xerte technical developers >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess >> >> >> >> >>> >> >> issues >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a magic >> >> >> >> >>> >> >> to >> >> >> >> >>> >> >> WP. >> >> >> >> >>> >> >> Extra >> >> >> >> >>> >> >> treatment can be done only when you have time. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> >> >> >> >>> >> >> wrote: >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> Ah ok. I get you. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if it >> >> >> >> >>> >> >> displays >> >> >> >> >>> >> >> ok >> >> >> >> >>> >> >> on >> >> >> >> >>> >> >> the first showing then that's ok for me. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> I might see if I can get those views working properly, >> >> >> >> >>> >> >> but >> >> >> >> >>> >> >> it's >> >> >> >> >>> >> >> problematic. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> wrote: >> >> >> >> >>> >> >> > yes, when view a single post, can play the content >> >> >> >> >>> >> >> > nicely. >> >> >> >> >>> >> >> > but >> >> >> >> >>> >> >> > if >> >> >> >> >>> >> >> > play >> >> >> >> >>> >> >> > the >> >> >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is >> >> >> >> >>> >> >> > resized >> >> >> >> >>> >> >> > to >> >> >> >> >>> >> >> > a >> >> >> >> >>> >> >> > picture, >> >> >> >> >>> >> >> > either too big or too small. the Large size can still >> >> >> >> >>> >> >> > play, >> >> >> >> >>> >> >> > but if >> >> >> >> >>> >> >> > resize to >> >> >> >> >>> >> >> > full screen or full window, it become a very small >> >> >> >> >>> >> >> > mobile >> >> >> >> >>> >> >> > phone >> >> >> >> >>> >> >> > sized >> >> >> >> >>> >> >> > picture. >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> >> >> >> >>> >> >> > wrote: >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> When you view a post? >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> wrote: >> >> >> >> >>> >> >> >> > yes, the single page. if you try to play Screen >> >> >> >> >>> >> >> >> > Size, >> >> >> >> >>> >> >> >> > you >> >> >> >> >>> >> >> >> > will >> >> >> >> >>> >> >> >> > see >> >> >> >> >>> >> >> >> > the >> >> >> >> >>> >> >> >> > resized screen is just a thumbnail >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> >> >> >>> >> >> >> > wrote: >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> Charpad I know about >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> Single page screen? >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> wrote: >> >> >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts on >> >> >> >> >>> >> >> >> >> > the >> >> >> >> >>> >> >> >> >> > screen >> >> >> >> >>> >> >> >> >> > size. >> >> >> >> >>> >> >> >> >> > The >> >> >> >> >>> >> >> >> >> > single >> >> >> >> >>> >> >> >> >> > page screen starts from top left, but not >> >> >> >> >>> >> >> >> >> > stretch >> >> >> >> >>> >> >> >> >> > to >> >> >> >> >>> >> >> >> >> > bottom >> >> >> >> >>> >> >> >> >> > right. >> >> >> >> >>> >> >> >> >> > There's a >> >> >> >> >>> >> >> >> >> > space on right and bottom. >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >> >> >>> >> >> >> >> > wrote: >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove the >> >> >> >> >>> >> >> >> >> >> language >> >> >> >> >>> >> >> >> >> >> folder. >> >> >> >> >>> >> >> >> >> >> So, >> >> >> >> >>> >> >> >> >> >> the >> >> >> >> >>> >> >> >> >> >> new install need to remove old language folder >> >> >> >> >>> >> >> >> >> >> manually. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> Pad, this version works! >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat Lockley >> >> >> >> >>> >> >> >> >> >>> wrote: >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> I think >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported >> >> >> >> >>> >> >> >> >> >>>> to >> >> >> >> >>> >> >> >> >> >>>> PC >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> _______________________________________________ >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > _______________________________________________ >> >> >> >> >>> >> >> >> >> > Xerte-dev mailing list >> >> >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > 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. >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > 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. >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> _______________________________________________ >> >> >> >> >>> >> >> >> >> Xerte-dev mailing list >> >> >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > _______________________________________________ >> >> >> >> >>> >> >> >> > Xerte-dev mailing list >> >> >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> _______________________________________________ >> >> >> >> >>> >> >> >> Xerte-dev mailing list >> >> >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > 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. >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > 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. >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > _______________________________________________ >> >> >> >> >>> >> >> > Xerte-dev mailing list >> >> >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > 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. >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > 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. >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> _______________________________________________ >> >> >> >> >>> >> >> Xerte-dev mailing list >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> _______________________________________________ >> >> >> >> >>> >> >> Xerte-dev mailing list >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >>> >> >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> > >> >> >> >> >>> >> > >> >> >> >> >>> >> > _______________________________________________ >> >> >> >> >>> >> > Xerte-dev mailing list >> >> >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> > >> >> >> >> >>> >> > 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. >> >> >> >> >>> >> > >> >> >> >> >>> >> > 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. >> >> >> >> >>> >> > >> >> >> >> >>> >> > >> >> >> >> >>> >> >> >> >> >> >>> >> _______________________________________________ >> >> >> >> >>> >> Xerte-dev mailing list >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> >> >> >> >> >> >>> >> _______________________________________________ >> >> >> >> >>> >> Xerte-dev mailing list >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> > >> >> >> >> >>> > >> >> >> >> >>> > >> >> >> >> >>> > 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. >> >> >> >> >>> > >> >> >> >> >>> > 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. >> >> >> >> >>> > >> >> >> >> >>> > >> >> >> >> >>> > _______________________________________________ >> >> >> >> >>> > Xerte-dev mailing list >> >> >> >> >>> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >>> > >> >> >> >> >>> > 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. >> >> >> >> >>> > >> >> >> >> >>> > 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. >> >> >> >> >>> > >> >> >> >> >>> > >> >> >> >> >>> >> >> >> >> >>> _______________________________________________ >> >> >> >> >>> Xerte-dev mailing list >> >> >> >> >>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 02:21:56 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:21:56 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I don't have chrome, firebug shows Response is: &return_value=true&wordpress=true On Thu, Jan 26, 2012 at 10:13 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > i have the same here > > do you get an error in the chrome or firebug console? > > On Thu, Jan 26, 2012 at 2:10 AM, Jenny.S wrote: > > Either small or big, can't see the picture, can only see the top menu got > > blured as the picture I showed you. > > > > On Thu, Jan 26, 2012 at 9:59 AM, Pat Lockley > > wrote: > >> > >> i think thats the preview box, when the image is very small, or > >> doesn't load properly? > >> > >> On Thu, Jan 26, 2012 at 1:58 AM, Jenny.S > wrote: > >> > Pad, when click the Preview icon beside the Upload inputbox, I got a > >> > little > >> > thing showing up near menu, seems the image preview popup size is > >> > limited > >> > by something. I attached a picture. > >> > > >> > On Wed, Jan 25, 2012 at 8:13 PM, Pat Lockley > >> > wrote: > >> >> > >> >> I need to allow for spaces in the regular expression then. > >> >> > >> >> It's jquery vs jquery sadly with that function. I want to force a > save > >> >> so the XOT object isn't lost, but wordpress doesn't like it. > >> >> > >> >> On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S > >> >> wrote: > >> >> > :-) Both old and new version workds without space > >> >> > > >> >> > By the way, If click WP Preview, and Cancle, it's suposed to go > back > >> >> > to > >> >> > Editor, but it still leads to Preview page. Is that correct? > >> >> > > >> >> > > >> >> > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> images with no spaces? > >> >> >> > >> >> >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S > > >> >> >> wrote: > >> >> >> > Just swaped version. old version doesn't upload either. > >> >> >> > Can see the image input box shows FileLocation + 'media/see > >> >> >> > you.jpg' > >> >> >> > When click Play, got message-- You must select a picture before > >> >> >> > you > >> >> >> > can > >> >> >> > veiw > >> >> >> > it. > >> >> >> > > >> >> >> > > >> >> >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley > >> >> >> > wrote: > >> >> >> >> > >> >> >> >> Can you swap the old upload.php in and see if that fixes it? > >> >> >> >> > >> >> >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley > >> >> >> >> wrote: > >> >> >> >> > ok, so windows uploads and media folder not deleted. > >> >> >> >> > > >> >> >> >> > I played with rights issues in the latest version. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S > >> >> >> >> > > >> >> >> >> > wrote: > >> >> >> >> >> No, media folder is empty. > >> >> >> >> >> By the way, when delete post, the preview.xml and data.xml > got > >> >> >> >> >> deleted, > >> >> >> >> >> but > >> >> >> >> >> media folder can't be deleted, error says Permission denied. > >> >> >> >> >> I'm on Windows, so the permission problem might just be > mine > >> >> >> >> >> alone. > >> >> >> >> >> But the > >> >> >> >> >> uploads should get in there. > >> >> >> >> >> > >> >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley > >> >> >> >> >> wrote: > >> >> >> >> >>> > >> >> >> >> >>> Is the file there? > >> >> >> >> >>> > >> >> >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S > >> >> >> >> >>> > >> >> >> >> >>> wrote: > >> >> >> >> >>> > One more thing-- the upload not doing well. I tried > several > >> >> >> >> >>> > post > >> >> >> >> >>> > today, > >> >> >> >> >>> > the > >> >> >> >> >>> > content page is available but without picture. > >> >> >> >> >>> > > >> >> >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney > >> >> >> >> >>> > wrote: > >> >> >> >> >>> >> > >> >> >> >> >>> >> No, not at all, always good to make sure it's working > >> >> >> >> >>> >> before > >> >> >> >> >>> >> several > >> >> >> >> >>> >> thousand developers install it... > >> >> >> >> >>> >> > >> >> >> >> >>> >> ;-) > >> >> >> >> >>> >> > >> >> >> >> >>> >> -----Original Message----- > >> >> >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On > >> >> >> >> >>> >> Behalf > >> >> >> >> >>> >> Of > >> >> >> >> >>> >> Pat > >> >> >> >> >>> >> Lockley > >> >> >> >> >>> >> Sent: 25 January 2012 10:31 > >> >> >> >> >>> >> To: For Xerte technical developers > >> >> >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess > >> >> >> >> >>> >> issues > >> >> >> >> >>> >> > >> >> >> >> >>> >> I think there isn't the full HTML on those pages, so I > >> >> >> >> >>> >> need > >> >> >> >> >>> >> to > >> >> >> >> >>> >> code > >> >> >> >> >>> >> it > >> >> >> >> >>> >> in. > >> >> >> >> >>> >> > >> >> >> >> >>> >> Didn't get the chance to touch it last night, will try > to > >> >> >> >> >>> >> make a > >> >> >> >> >>> >> release candidate tonight. > >> >> >> >> >>> >> > >> >> >> >> >>> >> Does anyone mind if I make it available Monday - best > day > >> >> >> >> >>> >> for > >> >> >> >> >>> >> announcing > >> >> >> >> >>> >> things? > >> >> >> >> >>> >> > >> >> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S > >> >> >> >> >>> >> > >> >> >> >> >>> >> wrote: > >> >> >> >> >>> >> > Sure WP world will love it to bites :-) > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > Pad, yesterday I didn't really remember how the single > >> >> >> >> >>> >> > page > >> >> >> >> >>> >> > initially > >> >> >> >> >>> >> > loaded, only noticed the screen size problem when I > >> >> >> >> >>> >> > played > >> >> >> >> >>> >> > the > >> >> >> >> >>> >> > Screen > >> >> >> >> >>> >> > Size. > >> >> >> >> >>> >> > Today I made a new post, at initial loading, it's not > >> >> >> >> >>> >> > full > >> >> >> >> >>> >> > fill > >> >> >> >> >>> >> > the > >> >> >> >> >>> >> > browser. Top and Left has small white space. Left and > >> >> >> >> >>> >> > bottom > >> >> >> >> >>> >> > has > >> >> >> >> >>> >> > big > >> >> >> >> >>> >> > space. > >> >> >> >> >>> >> > Maybe because my computer screen is 1024*768, but I > >> >> >> >> >>> >> > can't > >> >> >> >> >>> >> > visit > >> >> >> >> >>> >> > this > >> >> >> >> >>> >> > localhost from another computer to test on a bigger > >> >> >> >> >>> >> > screen. > >> >> >> >> >>> >> > If > >> >> >> >> >>> >> > you > >> >> >> >> >>> >> > have > >> >> >> >> >>> >> > a > >> >> >> >> >>> >> > 1024*768, you can see what I mean. > >> >> >> >> >>> >> > anyway, I attached a picture. > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney > >> >> >> >> >>> >> > wrote: > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a > >> >> >> >> >>> >> >> > magic > >> >> >> >> >>> >> >> > to > >> >> >> >> >>> >> >> > WP. > >> >> >> >> >>> >> >> > Extra > >> >> >> >> >>> >> >> > treatment can be done only when you have time. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> Quite. I think it has the potential to be pretty > >> >> >> >> >>> >> >> popular... > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On > >> >> >> >> >>> >> >> Behalf > >> >> >> >> >>> >> >> Of > >> >> >> >> >>> >> >> Jenny.S > >> >> >> >> >>> >> >> Sent: 24 January 2012 12:04 > >> >> >> >> >>> >> >> To: For Xerte technical developers > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess > >> >> >> >> >>> >> >> issues > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a > magic > >> >> >> >> >>> >> >> to > >> >> >> >> >>> >> >> WP. > >> >> >> >> >>> >> >> Extra > >> >> >> >> >>> >> >> treatment can be done only when you have time. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley > >> >> >> >> >>> >> >> wrote: > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> Ah ok. I get you. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if > it > >> >> >> >> >>> >> >> displays > >> >> >> >> >>> >> >> ok > >> >> >> >> >>> >> >> on > >> >> >> >> >>> >> >> the first showing then that's ok for me. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> I might see if I can get those views working > properly, > >> >> >> >> >>> >> >> but > >> >> >> >> >>> >> >> it's > >> >> >> >> >>> >> >> problematic. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> wrote: > >> >> >> >> >>> >> >> > yes, when view a single post, can play the content > >> >> >> >> >>> >> >> > nicely. > >> >> >> >> >>> >> >> > but > >> >> >> >> >>> >> >> > if > >> >> >> >> >>> >> >> > play > >> >> >> >> >>> >> >> > the > >> >> >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is > >> >> >> >> >>> >> >> > resized > >> >> >> >> >>> >> >> > to > >> >> >> >> >>> >> >> > a > >> >> >> >> >>> >> >> > picture, > >> >> >> >> >>> >> >> > either too big or too small. the Large size can > still > >> >> >> >> >>> >> >> > play, > >> >> >> >> >>> >> >> > but if > >> >> >> >> >>> >> >> > resize to > >> >> >> >> >>> >> >> > full screen or full window, it become a very small > >> >> >> >> >>> >> >> > mobile > >> >> >> >> >>> >> >> > phone > >> >> >> >> >>> >> >> > sized > >> >> >> >> >>> >> >> > picture. > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley > >> >> >> >> >>> >> >> > wrote: > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> When you view a post? > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> wrote: > >> >> >> >> >>> >> >> >> > yes, the single page. if you try to play Screen > >> >> >> >> >>> >> >> >> > Size, > >> >> >> >> >>> >> >> >> > you > >> >> >> >> >>> >> >> >> > will > >> >> >> >> >>> >> >> >> > see > >> >> >> >> >>> >> >> >> > the > >> >> >> >> >>> >> >> >> > resized screen is just a thumbnail > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley > >> >> >> >> >>> >> >> >> > wrote: > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> Charpad I know about > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> Single page screen? > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> wrote: > >> >> >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it impacts > on > >> >> >> >> >>> >> >> >> >> > the > >> >> >> >> >>> >> >> >> >> > screen > >> >> >> >> >>> >> >> >> >> > size. > >> >> >> >> >>> >> >> >> >> > The > >> >> >> >> >>> >> >> >> >> > single > >> >> >> >> >>> >> >> >> >> > page screen starts from top left, but not > >> >> >> >> >>> >> >> >> >> > stretch > >> >> >> >> >>> >> >> >> >> > to > >> >> >> >> >>> >> >> >> >> > bottom > >> >> >> >> >>> >> >> >> >> > right. > >> >> >> >> >>> >> >> >> >> > There's a > >> >> >> >> >>> >> >> >> >> > space on right and bottom. > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley > >> >> >> >> >>> >> >> >> >> > wrote: > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> wrote: > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove > the > >> >> >> >> >>> >> >> >> >> >> language > >> >> >> >> >>> >> >> >> >> >> folder. > >> >> >> >> >>> >> >> >> >> >> So, > >> >> >> >> >>> >> >> >> >> >> the > >> >> >> >> >>> >> >> >> >> >> new install need to remove old language > folder > >> >> >> >> >>> >> >> >> >> >> manually. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> wrote: > >> >> >> >> >>> >> >> >> >> >>> > >> >> >> >> >>> >> >> >> >> >>> Pad, this version works! > >> >> >> >> >>> >> >> >> >> >>> > >> >> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat > Lockley > >> >> >> >> >>> >> >> >> >> >>> wrote: > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> I think > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then ported > >> >> >> >> >>> >> >> >> >> >>>> to > >> >> >> >> >>> >> >> >> >> >>>> PC > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > _______________________________________________ > >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list > >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> 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. > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>>> > >> >> >> >> >>> >> >> >> >> >>> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > _______________________________________________ > >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > _______________________________________________ > >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> 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. > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > > _______________________________________________ > >> >> >> >> >>> >> >> >> >> > Xerte-dev mailing list > >> >> >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > 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. > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > 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. > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> _______________________________________________ > >> >> >> >> >>> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > >> >> >> >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > 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. > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > 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. > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > _______________________________________________ > >> >> >> >> >>> >> >> >> > Xerte-dev mailing list > >> >> >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > 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. > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > 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. > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> _______________________________________________ > >> >> >> >> >>> >> >> >> Xerte-dev mailing list > >> >> >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > >> >> >> >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > 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. > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > 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. > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > _______________________________________________ > >> >> >> >> >>> >> >> > Xerte-dev mailing list > >> >> >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > 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. > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > 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. > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> _______________________________________________ > >> >> >> >> >>> >> >> Xerte-dev mailing list > >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> 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. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> 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. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> _______________________________________________ > >> >> >> >> >>> >> >> Xerte-dev mailing list > >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> 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. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> 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. > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> >> > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > _______________________________________________ > >> >> >> >> >>> >> > Xerte-dev mailing list > >> >> >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > 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. > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > 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. > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > > >> >> >> >> >>> >> > >> >> >> >> >>> >> _______________________________________________ > >> >> >> >> >>> >> Xerte-dev mailing list > >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> >> > >> >> >> >> >>> >> _______________________________________________ > >> >> >> >> >>> >> Xerte-dev mailing list > >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> > > >> >> >> >> >>> > > >> >> >> >> >>> > > >> >> >> >> >>> > 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. > >> >> >> >> >>> > > >> >> >> >> >>> > 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. > >> >> >> >> >>> > > >> >> >> >> >>> > > >> >> >> >> >>> > _______________________________________________ > >> >> >> >> >>> > Xerte-dev mailing list > >> >> >> >> >>> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >>> > > >> >> >> >> >>> > 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. > >> >> >> >> >>> > > >> >> >> >> >>> > 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. > >> >> >> >> >>> > > >> >> >> >> >>> > > >> >> >> >> >>> > >> >> >> >> >>> _______________________________________________ > >> >> >> >> >>> Xerte-dev mailing list > >> >> >> >> >>> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> _______________________________________________ > >> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jennysong.ss at gmail.com Thu Jan 26 02:27:03 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:27:03 +0800 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Another thing--, when Publish, firebug response from save.php is "file has been corrupted", it also shows error of "$filename is undefined. But the contents are saved and can play. On Thu, Jan 26, 2012 at 10:21 AM, Jenny.S wrote: > I don't have chrome, firebug shows Response is: > &return_value=true&wordpress=true > > On Thu, Jan 26, 2012 at 10:13 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> i have the same here >> >> do you get an error in the chrome or firebug console? >> >> On Thu, Jan 26, 2012 at 2:10 AM, Jenny.S wrote: >> > Either small or big, can't see the picture, can only see the top menu >> got >> > blured as the picture I showed you. >> > >> > On Thu, Jan 26, 2012 at 9:59 AM, Pat Lockley >> > wrote: >> >> >> >> i think thats the preview box, when the image is very small, or >> >> doesn't load properly? >> >> >> >> On Thu, Jan 26, 2012 at 1:58 AM, Jenny.S >> wrote: >> >> > Pad, when click the Preview icon beside the Upload inputbox, I got a >> >> > little >> >> > thing showing up near menu, seems the image preview popup size is >> >> > limited >> >> > by something. I attached a picture. >> >> > >> >> > On Wed, Jan 25, 2012 at 8:13 PM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> I need to allow for spaces in the regular expression then. >> >> >> >> >> >> It's jquery vs jquery sadly with that function. I want to force a >> save >> >> >> so the XOT object isn't lost, but wordpress doesn't like it. >> >> >> >> >> >> On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S >> >> >> wrote: >> >> >> > :-) Both old and new version workds without space >> >> >> > >> >> >> > By the way, If click WP Preview, and Cancle, it's suposed to go >> back >> >> >> > to >> >> >> > Editor, but it still leads to Preview page. Is that correct? >> >> >> > >> >> >> > >> >> >> > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> images with no spaces? >> >> >> >> >> >> >> >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S < >> jennysong.ss at gmail.com> >> >> >> >> wrote: >> >> >> >> > Just swaped version. old version doesn't upload either. >> >> >> >> > Can see the image input box shows FileLocation + 'media/see >> >> >> >> > you.jpg' >> >> >> >> > When click Play, got message-- You must select a picture before >> >> >> >> > you >> >> >> >> > can >> >> >> >> > veiw >> >> >> >> > it. >> >> >> >> > >> >> >> >> > >> >> >> >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley >> >> >> >> > wrote: >> >> >> >> >> >> >> >> >> >> Can you swap the old upload.php in and see if that fixes it? >> >> >> >> >> >> >> >> >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley >> >> >> >> >> wrote: >> >> >> >> >> > ok, so windows uploads and media folder not deleted. >> >> >> >> >> > >> >> >> >> >> > I played with rights issues in the latest version. >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S >> >> >> >> >> > >> >> >> >> >> > wrote: >> >> >> >> >> >> No, media folder is empty. >> >> >> >> >> >> By the way, when delete post, the preview.xml and data.xml >> got >> >> >> >> >> >> deleted, >> >> >> >> >> >> but >> >> >> >> >> >> media folder can't be deleted, error says Permission >> denied. >> >> >> >> >> >> I'm on Windows, so the permission problem might just be >> mine >> >> >> >> >> >> alone. >> >> >> >> >> >> But the >> >> >> >> >> >> uploads should get in there. >> >> >> >> >> >> >> >> >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley >> >> >> >> >> >> wrote: >> >> >> >> >> >>> >> >> >> >> >> >>> Is the file there? >> >> >> >> >> >>> >> >> >> >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S >> >> >> >> >> >>> >> >> >> >> >> >>> wrote: >> >> >> >> >> >>> > One more thing-- the upload not doing well. I tried >> several >> >> >> >> >> >>> > post >> >> >> >> >> >>> > today, >> >> >> >> >> >>> > the >> >> >> >> >> >>> > content page is available but without picture. >> >> >> >> >> >>> > >> >> >> >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >> >> >> >> >> >>> > wrote: >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> No, not at all, always good to make sure it's working >> >> >> >> >> >>> >> before >> >> >> >> >> >>> >> several >> >> >> >> >> >>> >> thousand developers install it... >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> ;-) >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> -----Original Message----- >> >> >> >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On >> >> >> >> >> >>> >> Behalf >> >> >> >> >> >>> >> Of >> >> >> >> >> >>> >> Pat >> >> >> >> >> >>> >> Lockley >> >> >> >> >> >>> >> Sent: 25 January 2012 10:31 >> >> >> >> >> >>> >> To: For Xerte technical developers >> >> >> >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess >> >> >> >> >> >>> >> issues >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> I think there isn't the full HTML on those pages, so I >> >> >> >> >> >>> >> need >> >> >> >> >> >>> >> to >> >> >> >> >> >>> >> code >> >> >> >> >> >>> >> it >> >> >> >> >> >>> >> in. >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> Didn't get the chance to touch it last night, will try >> to >> >> >> >> >> >>> >> make a >> >> >> >> >> >>> >> release candidate tonight. >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> Does anyone mind if I make it available Monday - best >> day >> >> >> >> >> >>> >> for >> >> >> >> >> >>> >> announcing >> >> >> >> >> >>> >> things? >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> wrote: >> >> >> >> >> >>> >> > Sure WP world will love it to bites :-) >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > Pad, yesterday I didn't really remember how the >> single >> >> >> >> >> >>> >> > page >> >> >> >> >> >>> >> > initially >> >> >> >> >> >>> >> > loaded, only noticed the screen size problem when I >> >> >> >> >> >>> >> > played >> >> >> >> >> >>> >> > the >> >> >> >> >> >>> >> > Screen >> >> >> >> >> >>> >> > Size. >> >> >> >> >> >>> >> > Today I made a new post, at initial loading, it's >> not >> >> >> >> >> >>> >> > full >> >> >> >> >> >>> >> > fill >> >> >> >> >> >>> >> > the >> >> >> >> >> >>> >> > browser. Top and Left has small white space. Left and >> >> >> >> >> >>> >> > bottom >> >> >> >> >> >>> >> > has >> >> >> >> >> >>> >> > big >> >> >> >> >> >>> >> > space. >> >> >> >> >> >>> >> > Maybe because my computer screen is 1024*768, but I >> >> >> >> >> >>> >> > can't >> >> >> >> >> >>> >> > visit >> >> >> >> >> >>> >> > this >> >> >> >> >> >>> >> > localhost from another computer to test on a bigger >> >> >> >> >> >>> >> > screen. >> >> >> >> >> >>> >> > If >> >> >> >> >> >>> >> > you >> >> >> >> >> >>> >> > have >> >> >> >> >> >>> >> > a >> >> >> >> >> >>> >> > 1024*768, you can see what I mean. >> >> >> >> >> >>> >> > anyway, I attached a picture. >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >> >> >> >> >> >>> >> > wrote: >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a >> >> >> >> >> >>> >> >> > magic >> >> >> >> >> >>> >> >> > to >> >> >> >> >> >>> >> >> > WP. >> >> >> >> >> >>> >> >> > Extra >> >> >> >> >> >>> >> >> > treatment can be done only when you have time. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> Quite. I think it has the potential to be pretty >> >> >> >> >> >>> >> >> popular... >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] >> On >> >> >> >> >> >>> >> >> Behalf >> >> >> >> >> >>> >> >> Of >> >> >> >> >> >>> >> >> Jenny.S >> >> >> >> >> >>> >> >> Sent: 24 January 2012 12:04 >> >> >> >> >> >>> >> >> To: For Xerte technical developers >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and >> htaccess >> >> >> >> >> >>> >> >> issues >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a >> magic >> >> >> >> >> >>> >> >> to >> >> >> >> >> >>> >> >> WP. >> >> >> >> >> >>> >> >> Extra >> >> >> >> >> >>> >> >> treatment can be done only when you have time. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >> >> >> >> >> >>> >> >> wrote: >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> Ah ok. I get you. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if >> it >> >> >> >> >> >>> >> >> displays >> >> >> >> >> >>> >> >> ok >> >> >> >> >> >>> >> >> on >> >> >> >> >> >>> >> >> the first showing then that's ok for me. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> I might see if I can get those views working >> properly, >> >> >> >> >> >>> >> >> but >> >> >> >> >> >>> >> >> it's >> >> >> >> >> >>> >> >> problematic. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> wrote: >> >> >> >> >> >>> >> >> > yes, when view a single post, can play the content >> >> >> >> >> >>> >> >> > nicely. >> >> >> >> >> >>> >> >> > but >> >> >> >> >> >>> >> >> > if >> >> >> >> >> >>> >> >> > play >> >> >> >> >> >>> >> >> > the >> >> >> >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is >> >> >> >> >> >>> >> >> > resized >> >> >> >> >> >>> >> >> > to >> >> >> >> >> >>> >> >> > a >> >> >> >> >> >>> >> >> > picture, >> >> >> >> >> >>> >> >> > either too big or too small. the Large size can >> still >> >> >> >> >> >>> >> >> > play, >> >> >> >> >> >>> >> >> > but if >> >> >> >> >> >>> >> >> > resize to >> >> >> >> >> >>> >> >> > full screen or full window, it become a very small >> >> >> >> >> >>> >> >> > mobile >> >> >> >> >> >>> >> >> > phone >> >> >> >> >> >>> >> >> > sized >> >> >> >> >> >>> >> >> > picture. >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >> >> >> >> >> >>> >> >> > wrote: >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> When you view a post? >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> wrote: >> >> >> >> >> >>> >> >> >> > yes, the single page. if you try to play Screen >> >> >> >> >> >>> >> >> >> > Size, >> >> >> >> >> >>> >> >> >> > you >> >> >> >> >> >>> >> >> >> > will >> >> >> >> >> >>> >> >> >> > see >> >> >> >> >> >>> >> >> >> > the >> >> >> >> >> >>> >> >> >> > resized screen is just a thumbnail >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >> >> >> >> >> >>> >> >> >> > wrote: >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> Charpad I know about >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> Single page screen? >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> wrote: >> >> >> >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it >> impacts on >> >> >> >> >> >>> >> >> >> >> > the >> >> >> >> >> >>> >> >> >> >> > screen >> >> >> >> >> >>> >> >> >> >> > size. >> >> >> >> >> >>> >> >> >> >> > The >> >> >> >> >> >>> >> >> >> >> > single >> >> >> >> >> >>> >> >> >> >> > page screen starts from top left, but not >> >> >> >> >> >>> >> >> >> >> > stretch >> >> >> >> >> >>> >> >> >> >> > to >> >> >> >> >> >>> >> >> >> >> > bottom >> >> >> >> >> >>> >> >> >> >> > right. >> >> >> >> >> >>> >> >> >> >> > There's a >> >> >> >> >> >>> >> >> >> >> > space on right and bottom. >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat Lockley >> >> >> >> >> >>> >> >> >> >> > wrote: >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove >> the >> >> >> >> >> >>> >> >> >> >> >> language >> >> >> >> >> >>> >> >> >> >> >> folder. >> >> >> >> >> >>> >> >> >> >> >> So, >> >> >> >> >> >>> >> >> >> >> >> the >> >> >> >> >> >>> >> >> >> >> >> new install need to remove old language >> folder >> >> >> >> >> >>> >> >> >> >> >> manually. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> wrote: >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> Pad, this version works! >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat >> Lockley >> >> >> >> >> >>> >> >> >> >> >>> wrote: >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> I think >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then >> ported >> >> >> >> >> >>> >> >> >> >> >>>> to >> >> >> >> >> >>> >> >> >> >> >>>> PC >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> _______________________________________________ >> >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list >> >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> 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. >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > >> _______________________________________________ >> >> >> >> >> >>> >> >> >> >> > Xerte-dev mailing list >> >> >> >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > 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. >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > 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. >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> > >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >>> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > _______________________________________________ >> >> >> >> >> >>> >> >> >> > Xerte-dev mailing list >> >> >> >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > 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. >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> > >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> _______________________________________________ >> >> >> >> >> >>> >> >> >> Xerte-dev mailing list >> >> >> >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >> >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > 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. >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > 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. >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > _______________________________________________ >> >> >> >> >> >>> >> >> > Xerte-dev mailing list >> >> >> >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > 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. >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > 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. >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> > >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> _______________________________________________ >> >> >> >> >> >>> >> >> Xerte-dev mailing list >> >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> _______________________________________________ >> >> >> >> >> >>> >> >> Xerte-dev mailing list >> >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> 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. >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> >> >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > _______________________________________________ >> >> >> >> >> >>> >> > Xerte-dev mailing list >> >> >> >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > 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. >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > 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. >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> > >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> _______________________________________________ >> >> >> >> >> >>> >> Xerte-dev mailing list >> >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> >> >> >> >> >> >> >>> >> _______________________________________________ >> >> >> >> >> >>> >> Xerte-dev mailing list >> >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> > >> >> >> >> >> >>> > >> >> >> >> >> >>> > >> >> >> >> >> >>> > 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. >> >> >> >> >> >>> > >> >> >> >> >> >>> > 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. >> >> >> >> >> >>> > >> >> >> >> >> >>> > >> >> >> >> >> >>> > _______________________________________________ >> >> >> >> >> >>> > Xerte-dev mailing list >> >> >> >> >> >>> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >>> > >> >> >> >> >> >>> > 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. >> >> >> >> >> >>> > >> >> >> >> >> >>> > 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. >> >> >> >> >> >>> > >> >> >> >> >> >>> > >> >> >> >> >> >>> >> >> >> >> >> >>> _______________________________________________ >> >> >> >> >> >>> Xerte-dev mailing list >> >> >> >> >> >>> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > Xerte-dev mailing list >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 02:27:09 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 02:27:09 +0000 Subject: [Xerte-dev] New WP Zip Message-ID: Changes 1) Some more error checking in the activation 2) All paths now xerte-online and not xerteonline (so old stuff will have stopped working - you can rename the plugins and upload folders). 3) Size options on the play page should work 4) Short code and iframe instructions on the editor (so people can reuse the LOs easier) 5) Preview window fine here 6) unload function errors removed 7) Undeclared filename variable problem removed 8) More secure upload script ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now dancing like happy bees. More jain. Thoughts Internationalise the text within WP? Training guidance - link to techdis? Usage stats / tracking? I can't think of a strong case for anything else (without committing to a lot more work) Pat -------------- next part -------------- A non-text attachment was scrubbed... Name: xwp.zip Type: application/zip Size: 1873714 bytes Desc: not available URL: From patrick.lockley at googlemail.com Thu Jan 26 02:28:45 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 02:28:45 +0000 Subject: [Xerte-dev] Re: Fixed for apple and htaccess issues In-Reply-To: References: <47FCCE6C-44AE-45A9-97AE-46F19B4508F0@googlemail.com> <12C67A1EEC419342AF5E59DA31562C3F0BA0245A84@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CBA3C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: 2nd problem fixed Will look at file corruption tomorrow. Now. Sleep/ On Thu, Jan 26, 2012 at 2:27 AM, Jenny.S wrote: > Another thing--, when Publish, firebug response from save.php is "file has > been corrupted", it also shows error of "$filename is undefined. > But the contents are saved and can play. > > On Thu, Jan 26, 2012 at 10:21 AM, Jenny.S wrote: >> >> I don't have chrome, firebug shows Response is: >> &return_value=true&wordpress=true >> >> On Thu, Jan 26, 2012 at 10:13 AM, Pat Lockley >> wrote: >>> >>> i have the same here >>> >>> do you get an error in the chrome or firebug console? >>> >>> On Thu, Jan 26, 2012 at 2:10 AM, Jenny.S wrote: >>> > Either small or big, can't see the picture, can only see the top menu >>> > got >>> > blured as the picture I showed you. >>> > >>> > On Thu, Jan 26, 2012 at 9:59 AM, Pat Lockley >>> > wrote: >>> >> >>> >> i think thats the preview box, when the image is very small, or >>> >> doesn't load properly? >>> >> >>> >> On Thu, Jan 26, 2012 at 1:58 AM, Jenny.S >>> >> wrote: >>> >> > Pad, when click the Preview icon beside the Upload inputbox, I got a >>> >> > little >>> >> > thing showing up near menu, seems the image preview popup size is >>> >> > limited >>> >> > by something. I attached a picture. >>> >> > >>> >> > On Wed, Jan 25, 2012 at 8:13 PM, Pat Lockley >>> >> > wrote: >>> >> >> >>> >> >> I need to allow for spaces in the regular expression then. >>> >> >> >>> >> >> It's jquery vs jquery sadly with that function. I want to force a >>> >> >> save >>> >> >> so the XOT object isn't lost, but wordpress doesn't like it. >>> >> >> >>> >> >> On Wed, Jan 25, 2012 at 12:09 PM, Jenny.S >>> >> >> wrote: >>> >> >> > :-) Both old and new version workds without space >>> >> >> > >>> >> >> > By the way, If click WP Preview, and Cancle, it's suposed to go >>> >> >> > back >>> >> >> > to >>> >> >> > Editor, but it still leads to Preview page. Is that correct? >>> >> >> > >>> >> >> > >>> >> >> > On Wed, Jan 25, 2012 at 7:47 PM, Pat Lockley >>> >> >> > wrote: >>> >> >> >> >>> >> >> >> images with no spaces? >>> >> >> >> >>> >> >> >> On Wed, Jan 25, 2012 at 11:46 AM, Jenny.S >>> >> >> >> >>> >> >> >> wrote: >>> >> >> >> > Just swaped version. old version doesn't upload either. >>> >> >> >> > Can see the image input box shows FileLocation + 'media/see >>> >> >> >> > you.jpg' >>> >> >> >> > When click Play, got message-- You must select a picture >>> >> >> >> > before >>> >> >> >> > you >>> >> >> >> > can >>> >> >> >> > veiw >>> >> >> >> > it. >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > On Wed, Jan 25, 2012 at 7:24 PM, Pat Lockley >>> >> >> >> > wrote: >>> >> >> >> >> >>> >> >> >> >> Can you swap the old upload.php in and see if that fixes it? >>> >> >> >> >> >>> >> >> >> >> On Wed, Jan 25, 2012 at 11:21 AM, Pat Lockley >>> >> >> >> >> wrote: >>> >> >> >> >> > ok, so windows uploads and media folder not deleted. >>> >> >> >> >> > >>> >> >> >> >> > I played with rights issues in the latest version. >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> > On Wed, Jan 25, 2012 at 10:55 AM, Jenny.S >>> >> >> >> >> > >>> >> >> >> >> > wrote: >>> >> >> >> >> >> No, media folder is empty. >>> >> >> >> >> >> By the way, when delete post, the preview.xml and data.xml >>> >> >> >> >> >> got >>> >> >> >> >> >> deleted, >>> >> >> >> >> >> but >>> >> >> >> >> >> media folder can't be deleted, error says Permission >>> >> >> >> >> >> denied. >>> >> >> >> >> >> ?I'm on Windows, so the permission problem might just be >>> >> >> >> >> >> mine >>> >> >> >> >> >> alone. >>> >> >> >> >> >> But the >>> >> >> >> >> >> uploads should get in there. >>> >> >> >> >> >> >>> >> >> >> >> >> On Wed, Jan 25, 2012 at 6:49 PM, Pat Lockley >>> >> >> >> >> >> wrote: >>> >> >> >> >> >>> >>> >> >> >> >> >>> Is the file there? >>> >> >> >> >> >>> >>> >> >> >> >> >>> On Wed, Jan 25, 2012 at 10:39 AM, Jenny.S >>> >> >> >> >> >>> >>> >> >> >> >> >>> wrote: >>> >> >> >> >> >>> > One more thing-- the upload not doing well. I tried >>> >> >> >> >> >>> > several >>> >> >> >> >> >>> > post >>> >> >> >> >> >>> > today, >>> >> >> >> >> >>> > the >>> >> >> >> >> >>> > content page is available but without picture. >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > On Wed, Jan 25, 2012 at 6:32 PM, Julian Tenney >>> >> >> >> >> >>> > wrote: >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> No, not at all, always good to make sure it's working >>> >> >> >> >> >>> >> before >>> >> >> >> >> >>> >> several >>> >> >> >> >> >>> >> thousand developers install it... >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> ;-) >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> -----Original Message----- >>> >> >> >> >> >>> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On >>> >> >> >> >> >>> >> Behalf >>> >> >> >> >> >>> >> Of >>> >> >> >> >> >>> >> Pat >>> >> >> >> >> >>> >> Lockley >>> >> >> >> >> >>> >> Sent: 25 January 2012 10:31 >>> >> >> >> >> >>> >> To: For Xerte technical developers >>> >> >> >> >> >>> >> Subject: [Xerte-dev] Re: Fixed for apple and htaccess >>> >> >> >> >> >>> >> issues >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> I think there isn't the full HTML on those pages, so I >>> >> >> >> >> >>> >> need >>> >> >> >> >> >>> >> to >>> >> >> >> >> >>> >> code >>> >> >> >> >> >>> >> it >>> >> >> >> >> >>> >> in. >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> Didn't get the chance to touch it last night, will try >>> >> >> >> >> >>> >> to >>> >> >> >> >> >>> >> make a >>> >> >> >> >> >>> >> release candidate tonight. >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> Does anyone mind if I make it available Monday - best >>> >> >> >> >> >>> >> day >>> >> >> >> >> >>> >> for >>> >> >> >> >> >>> >> announcing >>> >> >> >> >> >>> >> things? >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> On Wed, Jan 25, 2012 at 12:46 AM, Jenny.S >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> wrote: >>> >> >> >> >> >>> >> > Sure WP world will love it to bites :-) >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > Pad, yesterday I didn't really remember how the >>> >> >> >> >> >>> >> > single >>> >> >> >> >> >>> >> > page >>> >> >> >> >> >>> >> > initially >>> >> >> >> >> >>> >> > loaded, only noticed the screen size problem when I >>> >> >> >> >> >>> >> > played >>> >> >> >> >> >>> >> > the >>> >> >> >> >> >>> >> > Screen >>> >> >> >> >> >>> >> > Size. >>> >> >> >> >> >>> >> > Today I made a new post, at initial loading, ?it's >>> >> >> >> >> >>> >> > not >>> >> >> >> >> >>> >> > full >>> >> >> >> >> >>> >> > fill >>> >> >> >> >> >>> >> > the >>> >> >> >> >> >>> >> > browser. Top and Left has small white space. Left >>> >> >> >> >> >>> >> > and >>> >> >> >> >> >>> >> > bottom >>> >> >> >> >> >>> >> > has >>> >> >> >> >> >>> >> > big >>> >> >> >> >> >>> >> > space. >>> >> >> >> >> >>> >> > Maybe because my computer screen is 1024*768, but I >>> >> >> >> >> >>> >> > can't >>> >> >> >> >> >>> >> > visit >>> >> >> >> >> >>> >> > this >>> >> >> >> >> >>> >> > localhost from another computer to test on a bigger >>> >> >> >> >> >>> >> > screen. >>> >> >> >> >> >>> >> > If >>> >> >> >> >> >>> >> > you >>> >> >> >> >> >>> >> > have >>> >> >> >> >> >>> >> > a >>> >> >> >> >> >>> >> > 1024*768, you can see what I mean. >>> >> >> >> >> >>> >> > anyway, I attached a picture. >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > On Tue, Jan 24, 2012 at 8:33 PM, Julian Tenney >>> >> >> >> >> >>> >> > wrote: >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >It's already a wonderful addition to Xerte, and a >>> >> >> >> >> >>> >> >> > magic >>> >> >> >> >> >>> >> >> > to >>> >> >> >> >> >>> >> >> > WP. >>> >> >> >> >> >>> >> >> > Extra >>> >> >> >> >> >>> >> >> > treatment can be done only when you have time. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> Quite. I think it has the potential to be pretty >>> >> >> >> >> >>> >> >> popular... >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] >>> >> >> >> >> >>> >> >> On >>> >> >> >> >> >>> >> >> Behalf >>> >> >> >> >> >>> >> >> Of >>> >> >> >> >> >>> >> >> Jenny.S >>> >> >> >> >> >>> >> >> Sent: 24 January 2012 12:04 >>> >> >> >> >> >>> >> >> To: For Xerte technical developers >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> Subject: [Xerte-dev] Re: Fixed for apple and >>> >> >> >> >> >>> >> >> htaccess >>> >> >> >> >> >>> >> >> issues >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> It's already a wonderful addition to Xerte, and a >>> >> >> >> >> >>> >> >> magic >>> >> >> >> >> >>> >> >> to >>> >> >> >> >> >>> >> >> WP. >>> >> >> >> >> >>> >> >> Extra >>> >> >> >> >> >>> >> >> treatment can be done only when you have time. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 7:55 PM, Pat Lockley >>> >> >> >> >> >>> >> >> wrote: >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> Ah ok. I get you. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> I'm not sure that's something I'm going to fix - if >>> >> >> >> >> >>> >> >> it >>> >> >> >> >> >>> >> >> displays >>> >> >> >> >> >>> >> >> ok >>> >> >> >> >> >>> >> >> on >>> >> >> >> >> >>> >> >> the first showing then that's ok for me. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> I might see if I can get those views working >>> >> >> >> >> >>> >> >> properly, >>> >> >> >> >> >>> >> >> but >>> >> >> >> >> >>> >> >> it's >>> >> >> >> >> >>> >> >> problematic. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> On Tue, Jan 24, 2012 at 11:52 AM, Jenny.S >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> wrote: >>> >> >> >> >> >>> >> >> > yes, when view a single post, can play the >>> >> >> >> >> >>> >> >> > content >>> >> >> >> >> >>> >> >> > nicely. >>> >> >> >> >> >>> >> >> > but >>> >> >> >> >> >>> >> >> > if >>> >> >> >> >> >>> >> >> > play >>> >> >> >> >> >>> >> >> > the >>> >> >> >> >> >>> >> >> > Screen Size( on the bottom menu ), the screen is >>> >> >> >> >> >>> >> >> > resized >>> >> >> >> >> >>> >> >> > to >>> >> >> >> >> >>> >> >> > a >>> >> >> >> >> >>> >> >> > picture, >>> >> >> >> >> >>> >> >> > either too big or too small. the Large size can >>> >> >> >> >> >>> >> >> > still >>> >> >> >> >> >>> >> >> > play, >>> >> >> >> >> >>> >> >> > but if >>> >> >> >> >> >>> >> >> > resize to >>> >> >> >> >> >>> >> >> > full screen or full window, it become a very >>> >> >> >> >> >>> >> >> > small >>> >> >> >> >> >>> >> >> > mobile >>> >> >> >> >> >>> >> >> > phone >>> >> >> >> >> >>> >> >> > sized >>> >> >> >> >> >>> >> >> > picture. >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > On Tue, Jan 24, 2012 at 7:47 PM, Pat Lockley >>> >> >> >> >> >>> >> >> > wrote: >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> I'm not sure what you mean by single page? >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> When you view a post? >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> On Tue, Jan 24, 2012 at 11:45 AM, Jenny.S >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> wrote: >>> >> >> >> >> >>> >> >> >> > yes, the single page. if you try to play >>> >> >> >> >> >>> >> >> >> > Screen >>> >> >> >> >> >>> >> >> >> > Size, >>> >> >> >> >> >>> >> >> >> > you >>> >> >> >> >> >>> >> >> >> > will >>> >> >> >> >> >>> >> >> >> > see >>> >> >> >> >> >>> >> >> >> > the >>> >> >> >> >> >>> >> >> >> > resized screen is just a thumbnail >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > On Tue, Jan 24, 2012 at 7:42 PM, Pat Lockley >>> >> >> >> >> >>> >> >> >> > wrote: >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> Charpad I know about >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> Single page screen? >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> On Tue, Jan 24, 2012 at 10:23 AM, Jenny.S >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> wrote: >>> >> >> >> >> >>> >> >> >> >> > charpad.swf. is missing. probably it >>> >> >> >> >> >>> >> >> >> >> > impacts on >>> >> >> >> >> >>> >> >> >> >> > the >>> >> >> >> >> >>> >> >> >> >> > screen >>> >> >> >> >> >>> >> >> >> >> > size. >>> >> >> >> >> >>> >> >> >> >> > The >>> >> >> >> >> >>> >> >> >> >> > single >>> >> >> >> >> >>> >> >> >> >> > page screen starts from top left, but not >>> >> >> >> >> >>> >> >> >> >> > stretch >>> >> >> >> >> >>> >> >> >> >> > to >>> >> >> >> >> >>> >> >> >> >> > bottom >>> >> >> >> >> >>> >> >> >> >> > right. >>> >> >> >> >> >>> >> >> >> >> > There's a >>> >> >> >> >> >>> >> >> >> >> > space on right and bottom. >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > On Tue, Jan 24, 2012 at 6:14 PM, Pat >>> >> >> >> >> >>> >> >> >> >> > Lockley >>> >> >> >> >> >>> >> >> >> >> > wrote: >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> Hmmmm. Ok. It worked on mine. Will check. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> On 24 Jan 2012, at 04:12, "Jenny.S" >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> wrote: >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> By the way, Previous version didn't remove >>> >> >> >> >> >>> >> >> >> >> >> the >>> >> >> >> >> >>> >> >> >> >> >> language >>> >> >> >> >> >>> >> >> >> >> >> folder. >>> >> >> >> >> >>> >> >> >> >> >> So, >>> >> >> >> >> >>> >> >> >> >> >> the >>> >> >> >> >> >>> >> >> >> >> >> new install need to remove old language >>> >> >> >> >> >>> >> >> >> >> >> folder >>> >> >> >> >> >>> >> >> >> >> >> manually. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> On Tue, Jan 24, 2012 at 12:06 PM, Jenny.S >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> wrote: >>> >> >> >> >> >>> >> >> >> >> >>> >>> >> >> >> >> >>> >> >> >> >> >>> Pad, this version works! >>> >> >> >> >> >>> >> >> >> >> >>> >>> >> >> >> >> >>> >> >> >> >> >>> On Tue, Jan 24, 2012 at 9:27 AM, Pat >>> >> >> >> >> >>> >> >> >> >> >>> Lockley >>> >> >> >> >> >>> >> >> >> >> >>> wrote: >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> I think >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> Definitely worked of MAC XAMPP then >>> >> >> >> >> >>> >> >> >> >> >>>> ported >>> >> >> >> >> >>> >> >> >> >> >>>> to >>> >> >> >> >> >>> >> >> >> >> >>>> PC >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> _______________________________________________ >>> >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev mailing list >>> >> >> >> >> >>> >> >> >> >> >>>> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> 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. >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>>> >>> >> >> >> >> >>> >> >> >> >> >>> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >>> >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >>> >> >> >> >> >>> >> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > _______________________________________________ >>> >> >> >> >> >>> >> >> >> >> > Xerte-dev mailing list >>> >> >> >> >> >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > 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. >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > 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. >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> _______________________________________________ >>> >> >> >> >> >>> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > 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. >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > 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. >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > _______________________________________________ >>> >> >> >> >> >>> >> >> >> > Xerte-dev mailing list >>> >> >> >> >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > 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. >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > 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. >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> > >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> _______________________________________________ >>> >> >> >> >> >>> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> >>> >> >> >> >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > 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. >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > 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. >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > _______________________________________________ >>> >> >> >> >> >>> >> >> > Xerte-dev mailing list >>> >> >> >> >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > 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. >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > 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. >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> > >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> _______________________________________________ >>> >> >> >> >> >>> >> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> 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. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> 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. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> _______________________________________________ >>> >> >> >> >> >>> >> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> 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. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> 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. >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> >> >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > _______________________________________________ >>> >> >> >> >> >>> >> > Xerte-dev mailing list >>> >> >> >> >> >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > 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. >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > 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. >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> > >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> _______________________________________________ >>> >> >> >> >> >>> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> _______________________________________________ >>> >> >> >> >> >>> >> Xerte-dev mailing list >>> >> >> >> >> >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> >> >>> >> >> >> >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > 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. >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > 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. >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > _______________________________________________ >>> >> >> >> >> >>> > Xerte-dev mailing list >>> >> >> >> >> >>> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > 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. >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > 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. >>> >> >> >> >> >>> > >>> >> >> >> >> >>> > >>> >> >> >> >> >>> >>> >> >> >> >> >>> _______________________________________________ >>> >> >> >> >> >>> Xerte-dev mailing list >>> >> >> >> >> >>> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >>> >> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >>> >> >> >> >> _______________________________________________ >>> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > _______________________________________________ >>> >> >> >> > Xerte-dev mailing list >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > >>> >> >> >> >>> >> >> >> _______________________________________________ >>> >> >> >> Xerte-dev mailing list >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> > _______________________________________________ >>> >> >> > Xerte-dev mailing list >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> >>> >> >> _______________________________________________ >>> >> >> Xerte-dev mailing list >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> > _______________________________________________ >>> >> > Xerte-dev mailing list >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> >>> >> _______________________________________________ >>> >> Xerte-dev mailing list >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> > _______________________________________________ >>> > Xerte-dev mailing list >>> > Xerte-dev at lists.nottingham.ac.uk >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 02:31:34 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:31:34 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: I vote for Usage stats / tracking ! Gonna try the new thing, feedback later. On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > Changes > > 1) Some more error checking in the activation > 2) All paths now xerte-online and not xerteonline (so old stuff will > have stopped working - you can rename the plugins and upload folders). > 3) Size options on the play page should work > 4) Short code and iframe instructions on the editor (so people can > reuse the LOs easier) > 5) Preview window fine here > 6) unload function errors removed > 7) Undeclared filename variable problem removed > 8) More secure upload script > > ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now > dancing like happy bees. More jain. > > Thoughts > > Internationalise the text within WP? > Training guidance - link to techdis? > Usage stats / tracking? > > I can't think of a strong case for anything else (without committing > to a lot more work) > > Pat > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 02:37:03 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 02:37:03 +0000 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: not scorm, just - number of plays per item. On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S wrote: > I vote for Usage stats / tracking ! > Gonna try the new thing, feedback later. > > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley > wrote: >> >> Changes >> >> 1) Some more error checking in the activation >> 2) All paths now xerte-online and not xerteonline (so old stuff will >> have stopped working - you can rename the plugins and upload folders). >> 3) Size options on the play page should work >> 4) Short code and iframe instructions on the editor (so people can >> reuse the LOs easier) >> 5) Preview window fine here >> 6) unload function errors removed >> 7) Undeclared filename variable problem removed >> 8) More secure upload script >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now >> dancing like happy bees. More jain. >> >> Thoughts >> >> Internationalise the text within WP? >> Training guidance - link to techdis? >> Usage stats / tracking? >> >> I can't think of a strong case for anything else (without committing >> to a lot more work) >> >> Pat >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 02:45:37 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:45:37 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: you mean, track plays per item without identify who is the player? or attach number of plays with each player? as for the scorm part, --- we use the quiz score instead :-) On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > not scorm, just - number of plays per item. > > On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S wrote: > > I vote for Usage stats / tracking ! > > Gonna try the new thing, feedback later. > > > > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley > > wrote: > >> > >> Changes > >> > >> 1) Some more error checking in the activation > >> 2) All paths now xerte-online and not xerteonline (so old stuff will > >> have stopped working - you can rename the plugins and upload folders). > >> 3) Size options on the play page should work > >> 4) Short code and iframe instructions on the editor (so people can > >> reuse the LOs easier) > >> 5) Preview window fine here > >> 6) unload function errors removed > >> 7) Undeclared filename variable problem removed > >> 8) More secure upload script > >> > >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now > >> dancing like happy bees. More jain. > >> > >> Thoughts > >> > >> Internationalise the text within WP? > >> Training guidance - link to techdis? > >> Usage stats / tracking? > >> > >> I can't think of a strong case for anything else (without committing > >> to a lot more work) > >> > >> Pat > >> > >> 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. > >> > >> 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. > >> > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> 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. > >> > >> 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. > >> > >> > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 02:47:05 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 02:47:05 +0000 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: how many "plays" for each "post" On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S wrote: > you mean, track plays per item without identify who is the player? or attach > number of plays with each player? > as for the scorm part, --- we use the quiz score instead :-) > > > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley > wrote: >> >> not scorm, just - number of plays per item. >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S wrote: >> > I vote for Usage stats / tracking ! >> > Gonna try the new thing, feedback later. >> > >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley >> > wrote: >> >> >> >> Changes >> >> >> >> 1) Some more error checking in the activation >> >> 2) All paths now xerte-online and not xerteonline (so old stuff will >> >> have stopped working - you can rename the plugins and upload folders). >> >> 3) Size options on the play page should work >> >> 4) Short code and iframe instructions on the editor (so people can >> >> reuse the LOs easier) >> >> 5) Preview window fine here >> >> 6) unload function errors removed >> >> 7) Undeclared filename variable problem removed >> >> 8) More secure upload script >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now >> >> dancing like happy bees. More jain. >> >> >> >> Thoughts >> >> >> >> Internationalise the text within WP? >> >> Training guidance - link to techdis? >> >> Usage stats / tracking? >> >> >> >> I can't think of a strong case for anything else (without committing >> >> to a lot more work) >> >> >> >> Pat >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 02:50:40 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:50:40 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: ok. I cross my finger-- hope you attach student's ID to the number of plays :-) On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > how many "plays" for each "post" > > On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S wrote: > > you mean, track plays per item without identify who is the player? or > attach > > number of plays with each player? > > as for the scorm part, --- we use the quiz score instead :-) > > > > > > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley > > wrote: > >> > >> not scorm, just - number of plays per item. > >> > >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S > wrote: > >> > I vote for Usage stats / tracking ! > >> > Gonna try the new thing, feedback later. > >> > > >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley > >> > wrote: > >> >> > >> >> Changes > >> >> > >> >> 1) Some more error checking in the activation > >> >> 2) All paths now xerte-online and not xerteonline (so old stuff will > >> >> have stopped working - you can rename the plugins and upload > folders). > >> >> 3) Size options on the play page should work > >> >> 4) Short code and iframe instructions on the editor (so people can > >> >> reuse the LOs easier) > >> >> 5) Preview window fine here > >> >> 6) unload function errors removed > >> >> 7) Undeclared filename variable problem removed > >> >> 8) More secure upload script > >> >> > >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now > >> >> dancing like happy bees. More jain. > >> >> > >> >> Thoughts > >> >> > >> >> Internationalise the text within WP? > >> >> Training guidance - link to techdis? > >> >> Usage stats / tracking? > >> >> > >> >> I can't think of a strong case for anything else (without committing > >> >> to a lot more work) > >> >> > >> >> Pat > >> >> > >> >> 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. > >> >> > >> >> 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. > >> >> > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > >> >> 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. > >> >> > >> >> 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. > >> >> > >> >> > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 02:55:31 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 02:55:31 +0000 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: student ids as site user ids? I could add a user ID from the site On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S wrote: > ok. I cross my finger-- hope you attach student's ID to the number of plays > :-) > > > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley > wrote: >> >> how many "plays" for each "post" >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S wrote: >> > you mean, track plays per item without identify who is the player? or >> > attach >> > number of plays with each player? >> > as for the scorm part, --- we use the quiz score instead :-) >> > >> > >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley >> > wrote: >> >> >> >> not scorm, just - number of plays per item. >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S >> >> wrote: >> >> > I vote for Usage stats / tracking ! >> >> > Gonna try the new thing, feedback later. >> >> > >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> Changes >> >> >> >> >> >> 1) Some more error checking in the activation >> >> >> 2) All paths now xerte-online and not xerteonline (so old stuff will >> >> >> have stopped working - you can rename the plugins and upload >> >> >> folders). >> >> >> 3) Size options on the play page should work >> >> >> 4) Short code and iframe instructions on the editor (so people can >> >> >> reuse the LOs easier) >> >> >> 5) Preview window fine here >> >> >> 6) unload function errors removed >> >> >> 7) Undeclared filename variable problem removed >> >> >> 8) More secure upload script >> >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now >> >> >> dancing like happy bees. More jain. >> >> >> >> >> >> Thoughts >> >> >> >> >> >> Internationalise the text within WP? >> >> >> Training guidance - link to techdis? >> >> >> Usage stats / tracking? >> >> >> >> >> >> I can't think of a strong case for anything else (without committing >> >> >> to a lot more work) >> >> >> >> >> >> Pat >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 02:56:40 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:56:40 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: The Learning Objects doesn't show up at all. Only an empty editor. There's no error message for this. When try to play the blank post, can see 404 Not Found - http://localhost/wordpress/wp-content/plugins/xerte-online/xertefiles/rloObject.js " On Thu, Jan 26, 2012 at 10:50 AM, Jenny.S wrote: > ok. I cross my finger-- hope you attach student's ID to the number of > plays :-) > > > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> how many "plays" for each "post" >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S wrote: >> > you mean, track plays per item without identify who is the player? or >> attach >> > number of plays with each player? >> > as for the scorm part, --- we use the quiz score instead :-) >> > >> > >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley >> > wrote: >> >> >> >> not scorm, just - number of plays per item. >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S >> wrote: >> >> > I vote for Usage stats / tracking ! >> >> > Gonna try the new thing, feedback later. >> >> > >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> Changes >> >> >> >> >> >> 1) Some more error checking in the activation >> >> >> 2) All paths now xerte-online and not xerteonline (so old stuff will >> >> >> have stopped working - you can rename the plugins and upload >> folders). >> >> >> 3) Size options on the play page should work >> >> >> 4) Short code and iframe instructions on the editor (so people can >> >> >> reuse the LOs easier) >> >> >> 5) Preview window fine here >> >> >> 6) unload function errors removed >> >> >> 7) Undeclared filename variable problem removed >> >> >> 8) More secure upload script >> >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now >> >> >> dancing like happy bees. More jain. >> >> >> >> >> >> Thoughts >> >> >> >> >> >> Internationalise the text within WP? >> >> >> Training guidance - link to techdis? >> >> >> Usage stats / tracking? >> >> >> >> >> >> I can't think of a strong case for anything else (without committing >> >> >> to a lot more work) >> >> >> >> >> >> Pat >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jennysong.ss at gmail.com Thu Jan 26 02:58:13 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 10:58:13 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: yes, that's great! just add the site"s user_id, then, let the site to manage who is student. On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > student ids as site user ids? > > I could add a user ID from the site > > On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S wrote: > > ok. I cross my finger-- hope you attach student's ID to the number of > plays > > :-) > > > > > > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley > > wrote: > >> > >> how many "plays" for each "post" > >> > >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S > wrote: > >> > you mean, track plays per item without identify who is the player? or > >> > attach > >> > number of plays with each player? > >> > as for the scorm part, --- we use the quiz score instead :-) > >> > > >> > > >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley > >> > wrote: > >> >> > >> >> not scorm, just - number of plays per item. > >> >> > >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S > >> >> wrote: > >> >> > I vote for Usage stats / tracking ! > >> >> > Gonna try the new thing, feedback later. > >> >> > > >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> Changes > >> >> >> > >> >> >> 1) Some more error checking in the activation > >> >> >> 2) All paths now xerte-online and not xerteonline (so old stuff > will > >> >> >> have stopped working - you can rename the plugins and upload > >> >> >> folders). > >> >> >> 3) Size options on the play page should work > >> >> >> 4) Short code and iframe instructions on the editor (so people can > >> >> >> reuse the LOs easier) > >> >> >> 5) Preview window fine here > >> >> >> 6) unload function errors removed > >> >> >> 7) Undeclared filename variable problem removed > >> >> >> 8) More secure upload script > >> >> >> > >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs now > >> >> >> dancing like happy bees. More jain. > >> >> >> > >> >> >> Thoughts > >> >> >> > >> >> >> Internationalise the text within WP? > >> >> >> Training guidance - link to techdis? > >> >> >> Usage stats / tracking? > >> >> >> > >> >> >> I can't think of a strong case for anything else (without > committing > >> >> >> to a lot more work) > >> >> >> > >> >> >> Pat > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> >> > >> >> >> > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 03:01:36 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 03:01:36 +0000 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: did you rename the plugin folder? On Thu, Jan 26, 2012 at 2:58 AM, Jenny.S wrote: > yes, that's great! just add the site"s user_id, then, let the site to manage > who is student. > > > On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley > wrote: >> >> student ids as site user ids? >> >> I could add a user ID from the site >> >> On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S wrote: >> > ok. I cross my finger-- hope you attach student's ID to the number of >> > plays >> > :-) >> > >> > >> > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley >> > wrote: >> >> >> >> how many "plays" for each "post" >> >> >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S >> >> wrote: >> >> > you mean, track plays per item without identify who is the player? or >> >> > attach >> >> > number of plays with each player? >> >> > as for the scorm part, --- we use the quiz score instead :-) >> >> > >> >> > >> >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> not scorm, just - number of plays per item. >> >> >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S >> >> >> wrote: >> >> >> > I vote for Usage stats / tracking ! >> >> >> > Gonna try the new thing, feedback later. >> >> >> > >> >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> Changes >> >> >> >> >> >> >> >> 1) Some more error checking in the activation >> >> >> >> 2) All paths now xerte-online and not xerteonline (so old stuff >> >> >> >> will >> >> >> >> have stopped working - you can rename the plugins and upload >> >> >> >> folders). >> >> >> >> 3) Size options on the play page should work >> >> >> >> 4) Short code and iframe instructions on the editor (so people >> >> >> >> can >> >> >> >> reuse the LOs easier) >> >> >> >> 5) Preview window fine here >> >> >> >> 6) unload function errors removed >> >> >> >> 7) Undeclared filename variable problem removed >> >> >> >> 8) More secure upload script >> >> >> >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs >> >> >> >> now >> >> >> >> dancing like happy bees. More jain. >> >> >> >> >> >> >> >> Thoughts >> >> >> >> >> >> >> >> Internationalise the text within WP? >> >> >> >> Training guidance - link to techdis? >> >> >> >> Usage stats / tracking? >> >> >> >> >> >> >> >> I can't think of a strong case for anything else (without >> >> >> >> committing >> >> >> >> to a lot more work) >> >> >> >> >> >> >> >> Pat >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 03:04:09 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 11:04:09 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: No, activated as it is. For the 404 message, you can see the path is correct. On Thu, Jan 26, 2012 at 11:01 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > did you rename the plugin folder? > > On Thu, Jan 26, 2012 at 2:58 AM, Jenny.S wrote: > > yes, that's great! just add the site"s user_id, then, let the site to > manage > > who is student. > > > > > > On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley > > wrote: > >> > >> student ids as site user ids? > >> > >> I could add a user ID from the site > >> > >> On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S > wrote: > >> > ok. I cross my finger-- hope you attach student's ID to the number of > >> > plays > >> > :-) > >> > > >> > > >> > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley > >> > wrote: > >> >> > >> >> how many "plays" for each "post" > >> >> > >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S > >> >> wrote: > >> >> > you mean, track plays per item without identify who is the player? > or > >> >> > attach > >> >> > number of plays with each player? > >> >> > as for the scorm part, --- we use the quiz score instead :-) > >> >> > > >> >> > > >> >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> not scorm, just - number of plays per item. > >> >> >> > >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S > >> >> >> wrote: > >> >> >> > I vote for Usage stats / tracking ! > >> >> >> > Gonna try the new thing, feedback later. > >> >> >> > > >> >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley > >> >> >> > wrote: > >> >> >> >> > >> >> >> >> Changes > >> >> >> >> > >> >> >> >> 1) Some more error checking in the activation > >> >> >> >> 2) All paths now xerte-online and not xerteonline (so old stuff > >> >> >> >> will > >> >> >> >> have stopped working - you can rename the plugins and upload > >> >> >> >> folders). > >> >> >> >> 3) Size options on the play page should work > >> >> >> >> 4) Short code and iframe instructions on the editor (so people > >> >> >> >> can > >> >> >> >> reuse the LOs easier) > >> >> >> >> 5) Preview window fine here > >> >> >> >> 6) unload function errors removed > >> >> >> >> 7) Undeclared filename variable problem removed > >> >> >> >> 8) More secure upload script > >> >> >> >> > >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs > >> >> >> >> now > >> >> >> >> dancing like happy bees. More jain. > >> >> >> >> > >> >> >> >> Thoughts > >> >> >> >> > >> >> >> >> Internationalise the text within WP? > >> >> >> >> Training guidance - link to techdis? > >> >> >> >> Usage stats / tracking? > >> >> >> >> > >> >> >> >> I can't think of a strong case for anything else (without > >> >> >> >> committing > >> >> >> >> to a lot more work) > >> >> >> >> > >> >> >> >> Pat > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> 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. > >> >> >> >> > >> >> >> >> > >> >> >> > > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 03:04:59 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 03:04:59 +0000 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: the plugin folder needs to be "xerte-online" now (sorry if this makes no sense) On Thu, Jan 26, 2012 at 3:04 AM, Jenny.S wrote: > No, activated as it is. For the 404 message, you can see the path is > correct. > > > On Thu, Jan 26, 2012 at 11:01 AM, Pat Lockley > wrote: >> >> did you rename the plugin folder? >> >> On Thu, Jan 26, 2012 at 2:58 AM, Jenny.S wrote: >> > yes, that's great! just add the site"s user_id, then, let the site to >> > manage >> > who is student. >> > >> > >> > On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley >> > wrote: >> >> >> >> student ids as site user ids? >> >> >> >> I could add a user ID from the site >> >> >> >> On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S >> >> wrote: >> >> > ok. I cross my finger-- hope you attach student's ID to the number of >> >> > plays >> >> > :-) >> >> > >> >> > >> >> > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> how many "plays" for each "post" >> >> >> >> >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S >> >> >> wrote: >> >> >> > you mean, track plays per item without identify who is the player? >> >> >> > or >> >> >> > attach >> >> >> > number of plays with each player? >> >> >> > as for the scorm part, --- we use the quiz score instead :-) >> >> >> > >> >> >> > >> >> >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> not scorm, just - number of plays per item. >> >> >> >> >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S >> >> >> >> wrote: >> >> >> >> > I vote for Usage stats / tracking ! >> >> >> >> > Gonna try the new thing, feedback later. >> >> >> >> > >> >> >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley >> >> >> >> > wrote: >> >> >> >> >> >> >> >> >> >> Changes >> >> >> >> >> >> >> >> >> >> 1) Some more error checking in the activation >> >> >> >> >> 2) All paths now xerte-online and not xerteonline (so old >> >> >> >> >> stuff >> >> >> >> >> will >> >> >> >> >> have stopped working - you can rename the plugins and upload >> >> >> >> >> folders). >> >> >> >> >> 3) Size options on the play page should work >> >> >> >> >> 4) Short code and iframe instructions on the editor (so people >> >> >> >> >> can >> >> >> >> >> reuse the LOs easier) >> >> >> >> >> 5) Preview window fine here >> >> >> >> >> 6) unload function errors removed >> >> >> >> >> 7) Undeclared filename variable problem removed >> >> >> >> >> 8) More secure upload script >> >> >> >> >> >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs >> >> >> >> >> now >> >> >> >> >> dancing like happy bees. More jain. >> >> >> >> >> >> >> >> >> >> Thoughts >> >> >> >> >> >> >> >> >> >> Internationalise the text within WP? >> >> >> >> >> Training guidance - link to techdis? >> >> >> >> >> Usage stats / tracking? >> >> >> >> >> >> >> >> >> >> I can't think of a strong case for anything else (without >> >> >> >> >> committing >> >> >> >> >> to a lot more work) >> >> >> >> >> >> >> >> >> >> Pat >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > Xerte-dev mailing list >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Thu Jan 26 03:20:33 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 11:20:33 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: it makes a lot of sense :-)) Now renamed xwp to xerte-online, Editor shows up and functionaly well. single post Preview shows a blank page. It doesn't see 404 not find, but says rloObject is not defined On Thu, Jan 26, 2012 at 11:04 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > the plugin folder needs to be "xerte-online" now (sorry if this makes no > sense) > > On Thu, Jan 26, 2012 at 3:04 AM, Jenny.S wrote: > > No, activated as it is. For the 404 message, you can see the path is > > correct. > > > > > > On Thu, Jan 26, 2012 at 11:01 AM, Pat Lockley > > wrote: > >> > >> did you rename the plugin folder? > >> > >> On Thu, Jan 26, 2012 at 2:58 AM, Jenny.S > wrote: > >> > yes, that's great! just add the site"s user_id, then, let the site to > >> > manage > >> > who is student. > >> > > >> > > >> > On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley > >> > wrote: > >> >> > >> >> student ids as site user ids? > >> >> > >> >> I could add a user ID from the site > >> >> > >> >> On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S > >> >> wrote: > >> >> > ok. I cross my finger-- hope you attach student's ID to the number > of > >> >> > plays > >> >> > :-) > >> >> > > >> >> > > >> >> > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> how many "plays" for each "post" > >> >> >> > >> >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S > >> >> >> wrote: > >> >> >> > you mean, track plays per item without identify who is the > player? > >> >> >> > or > >> >> >> > attach > >> >> >> > number of plays with each player? > >> >> >> > as for the scorm part, --- we use the quiz score instead :-) > >> >> >> > > >> >> >> > > >> >> >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley > >> >> >> > wrote: > >> >> >> >> > >> >> >> >> not scorm, just - number of plays per item. > >> >> >> >> > >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S < > jennysong.ss at gmail.com> > >> >> >> >> wrote: > >> >> >> >> > I vote for Usage stats / tracking ! > >> >> >> >> > Gonna try the new thing, feedback later. > >> >> >> >> > > >> >> >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley > >> >> >> >> > wrote: > >> >> >> >> >> > >> >> >> >> >> Changes > >> >> >> >> >> > >> >> >> >> >> 1) Some more error checking in the activation > >> >> >> >> >> 2) All paths now xerte-online and not xerteonline (so old > >> >> >> >> >> stuff > >> >> >> >> >> will > >> >> >> >> >> have stopped working - you can rename the plugins and upload > >> >> >> >> >> folders). > >> >> >> >> >> 3) Size options on the play page should work > >> >> >> >> >> 4) Short code and iframe instructions on the editor (so > people > >> >> >> >> >> can > >> >> >> >> >> reuse the LOs easier) > >> >> >> >> >> 5) Preview window fine here > >> >> >> >> >> 6) unload function errors removed > >> >> >> >> >> 7) Undeclared filename variable problem removed > >> >> >> >> >> 8) More secure upload script > >> >> >> >> >> > >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all > bugs > >> >> >> >> >> now > >> >> >> >> >> dancing like happy bees. More jain. > >> >> >> >> >> > >> >> >> >> >> Thoughts > >> >> >> >> >> > >> >> >> >> >> Internationalise the text within WP? > >> >> >> >> >> Training guidance - link to techdis? > >> >> >> >> >> Usage stats / tracking? > >> >> >> >> >> > >> >> >> >> >> I can't think of a strong case for anything else (without > >> >> >> >> >> committing > >> >> >> >> >> to a lot more work) > >> >> >> >> >> > >> >> >> >> >> Pat > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> _______________________________________________ > >> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > _______________________________________________ > >> >> >> >> > Xerte-dev mailing list > >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jan 26 08:35:47 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 26 Jan 2012 08:35:47 +0000 Subject: [Xerte-dev] Re: Charpad.swf In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA11CBE7D@EXCHANGE1.ad.nottingham.ac.uk> Well spotted. I just checked it in. -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 26 January 2012 01:45 To: For Xerte technical developers Subject: [Xerte-dev] Charpad.swf Can't find it in the XOT repo? Does it live somewhere else? _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From patrick.lockley at googlemail.com Thu Jan 26 09:54:41 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 09:54:41 +0000 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: Message-ID: <78CCB0C5-3FE8-4880-805D-6491656D253C@googlemail.com> That means the path of the js isn't found. Check the HTML of the page? On 26 Jan 2012, at 03:20, "Jenny.S" wrote: > it makes a lot of sense :-)) Now renamed xwp to xerte-online, Editor shows up and functionaly well. > single post Preview shows a blank page. > It doesn't see 404 not find, but says rloObject is not defined > > On Thu, Jan 26, 2012 at 11:04 AM, Pat Lockley wrote: > the plugin folder needs to be "xerte-online" now (sorry if this makes no sense) > > On Thu, Jan 26, 2012 at 3:04 AM, Jenny.S wrote: > > No, activated as it is. For the 404 message, you can see the path is > > correct. > > > > > > On Thu, Jan 26, 2012 at 11:01 AM, Pat Lockley > > wrote: > >> > >> did you rename the plugin folder? > >> > >> On Thu, Jan 26, 2012 at 2:58 AM, Jenny.S wrote: > >> > yes, that's great! just add the site"s user_id, then, let the site to > >> > manage > >> > who is student. > >> > > >> > > >> > On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley > >> > wrote: > >> >> > >> >> student ids as site user ids? > >> >> > >> >> I could add a user ID from the site > >> >> > >> >> On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S > >> >> wrote: > >> >> > ok. I cross my finger-- hope you attach student's ID to the number of > >> >> > plays > >> >> > :-) > >> >> > > >> >> > > >> >> > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> how many "plays" for each "post" > >> >> >> > >> >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S > >> >> >> wrote: > >> >> >> > you mean, track plays per item without identify who is the player? > >> >> >> > or > >> >> >> > attach > >> >> >> > number of plays with each player? > >> >> >> > as for the scorm part, --- we use the quiz score instead :-) > >> >> >> > > >> >> >> > > >> >> >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley > >> >> >> > wrote: > >> >> >> >> > >> >> >> >> not scorm, just - number of plays per item. > >> >> >> >> > >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S > >> >> >> >> wrote: > >> >> >> >> > I vote for Usage stats / tracking ! > >> >> >> >> > Gonna try the new thing, feedback later. > >> >> >> >> > > >> >> >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley > >> >> >> >> > wrote: > >> >> >> >> >> > >> >> >> >> >> Changes > >> >> >> >> >> > >> >> >> >> >> 1) Some more error checking in the activation > >> >> >> >> >> 2) All paths now xerte-online and not xerteonline (so old > >> >> >> >> >> stuff > >> >> >> >> >> will > >> >> >> >> >> have stopped working - you can rename the plugins and upload > >> >> >> >> >> folders). > >> >> >> >> >> 3) Size options on the play page should work > >> >> >> >> >> 4) Short code and iframe instructions on the editor (so people > >> >> >> >> >> can > >> >> >> >> >> reuse the LOs easier) > >> >> >> >> >> 5) Preview window fine here > >> >> >> >> >> 6) unload function errors removed > >> >> >> >> >> 7) Undeclared filename variable problem removed > >> >> >> >> >> 8) More secure upload script > >> >> >> >> >> > >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all bugs > >> >> >> >> >> now > >> >> >> >> >> dancing like happy bees. More jain. > >> >> >> >> >> > >> >> >> >> >> Thoughts > >> >> >> >> >> > >> >> >> >> >> Internationalise the text within WP? > >> >> >> >> >> Training guidance - link to techdis? > >> >> >> >> >> Usage stats / tracking? > >> >> >> >> >> > >> >> >> >> >> I can't think of a strong case for anything else (without > >> >> >> >> >> committing > >> >> >> >> >> to a lot more work) > >> >> >> >> >> > >> >> >> >> >> Pat > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> _______________________________________________ > >> >> >> >> >> Xerte-dev mailing list > >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> 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. > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > _______________________________________________ > >> >> >> >> > Xerte-dev mailing list > >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > 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. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > >> >> >> >> _______________________________________________ > >> >> >> >> Xerte-dev mailing list > >> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 10:44:30 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 10:44:30 +0000 Subject: [Xerte-dev] Re: Charpad.swf In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA11CBE7D@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CBE7D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Couldn't see the fla in the Xerte one either - if it helps. Again, only light digging.... On Thu, Jan 26, 2012 at 8:35 AM, Julian Tenney wrote: > Well spotted. I just checked it in. > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 26 January 2012 01:45 > To: For Xerte technical developers > Subject: [Xerte-dev] Charpad.swf > > Can't find it in the XOT repo? Does it live somewhere else? > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > From Julian.Tenney at nottingham.ac.uk Thu Jan 26 11:33:50 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 26 Jan 2012 11:33:50 +0000 Subject: [Xerte-dev] Re: Charpad.swf In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CBE7D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC047@EXCHANGE1.ad.nottingham.ac.uk> templates\mediaInteractions\src in the main xerte svn. Not the most obvious place I grant you... -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 26 January 2012 10:45 To: For Xerte technical developers Subject: [Xerte-dev] Re: Charpad.swf Couldn't see the fla in the Xerte one either - if it helps. Again, only light digging.... On Thu, Jan 26, 2012 at 8:35 AM, Julian Tenney wrote: > Well spotted. I just checked it in. > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 26 January 2012 01:45 > To: For Xerte technical developers > Subject: [Xerte-dev] Charpad.swf > > Can't find it in the XOT repo? Does it live somewhere else? > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From johnathan.kemp at ntlworld.com Thu Jan 26 12:34:18 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Thu, 26 Jan 2012 12:34:18 +0000 Subject: [Xerte-dev] Captivate page Message-ID: Would anyone have a small captivate file they could post for me, so that I can test out the individual page template of the captivate page. Thanks in anticipation. Johnathan -------------- next part -------------- An HTML attachment was scrubbed... URL: From Fay.Cross at nottingham.ac.uk Thu Jan 26 12:43:41 2012 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Thu, 26 Jan 2012 12:43:41 +0000 Subject: [Xerte-dev] Re: Captivate page In-Reply-To: References: Message-ID: From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 26 January 2012 12:34 To: Xerte Developers Discussion List Subject: [Xerte-dev] Captivate page Would anyone have a small captivate file they could post for me, so that I can test out the individual page template of the captivate page. Thanks in anticipation. Johnathan -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: eJournalCollections.swf Type: application/x-shockwave-flash Size: 1087260 bytes Desc: eJournalCollections.swf URL: From Julian.Tenney at nottingham.ac.uk Thu Jan 26 12:59:05 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 26 Jan 2012 12:59:05 +0000 Subject: [Xerte-dev] $_SERVER['HTTP_REFERER'] issue Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> Anyone got any bright ideas: when you set access to other, you can specify a domain to restrict access only to links being followed from that domain: so you can have some sort of gatekeeping in any system the user has to log in to, and then only allow access to links from that system. This is the code, it uses $_SERVER['HTTP_REFERER']. It doesn't work in IE. Cosmic. Any alternative approaches without having to modify the linking system? This is the code: $test_string=substr($row_play['access_to_whom'],6,strlen($row_play['access_to_whom'])); if(strlen($_SERVER['HTTP_REFERER'])!=0){ if(strpos($_SERVER['HTTP_REFERER'],$test_string)==0){ mysql_query("UPDATE " . $xerte_toolkits_site->database_table_prefix . "templatedetails SET number_of_uses=number_of_uses+1 WHERE template_id=" . $safe_template_id); require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); }else{ require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; dont_show_template(); } }else{ //dont_show_template(); //going to show it anyway, as referer doesn't work in IE require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); } -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Thu Jan 26 13:11:56 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 26 Jan 2012 08:11:56 -0500 Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: The few posts regarding all ultimately say "never use referrer anyway" as you can't trust it. Most recommend building your own logic: http://stackoverflow.com/questions/3966059/alternative-for-serverhttp-referer-php-variable-in-msie From: Julian.Tenney at nottingham.ac.uk To: xerte-dev at lists.nottingham.ac.uk Date: Thu, 26 Jan 2012 12:59:05 +0000 Subject: [Xerte-dev] $_SERVER['HTTP_REFERER'] issue Anyone got any bright ideas: when you set access to other, you can specify a domain to restrict access only to links being followed from that domain: so you can have some sort of gatekeeping in any system the user has to log in to, and then only allow access to links from that system. This is the code, it uses $_SERVER['HTTP_REFERER']. It doesn?t work in IE. Cosmic. Any alternative approaches without having to modify the linking system? This is the code: $test_string=substr($row_play['access_to_whom'],6,strlen($row_play['access_to_whom'])); if(strlen($_SERVER['HTTP_REFERER'])!=0){ if(strpos($_SERVER['HTTP_REFERER'],$test_string)==0){ mysql_query("UPDATE " . $xerte_toolkits_site->database_table_prefix . "templatedetails SET number_of_uses=number_of_uses+1 WHERE template_id=" . $safe_template_id); require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); }else{ require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; dont_show_template(); } }else{ //dont_show_template(); //going to show it anyway, as referer doesn't work in IE require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); } 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Thu Jan 26 13:19:03 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 26 Jan 2012 13:19:03 -0000 Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <006c01ccdc2d$15fddee0$41f99ca0$@co.uk> When you say it doesn't work in IE what do you mean? I've just tested in IE 8 with a link to a restricted LO from my Moodle. Clicking the link in moodle works, putting the link direct in a browser or via email works in as far as it doesn't show the LO but gives an error. Fatal error: Call to undefined function dont_show_template() That said it's not the latest version so that error may have been fixed at some point. HTH Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 26 January 2012 12:59 To: For Xerte technical developers Subject: [Xerte-dev] $_SERVER['HTTP_REFERER'] issue Anyone got any bright ideas: when you set access to other, you can specify a domain to restrict access only to links being followed from that domain: so you can have some sort of gatekeeping in any system the user has to log in to, and then only allow access to links from that system. This is the code, it uses $_SERVER['HTTP_REFERER']. It doesn't work in IE. Cosmic. Any alternative approaches without having to modify the linking system? This is the code: $test_string=substr($row_play['access_to_whom'],6,strlen($row_play['access_t o_whom'])); if(strlen($_SERVER['HTTP_REFERER'])!=0){ if(strpos($_SERVER['HTTP_REFERER'],$test_string)==0){ mysql_query("UPDATE " . $xerte_toolkits_site->database_table_prefix . "templatedetails SET number_of_uses=number_of_uses+1 WHERE template_id=" . $safe_template_id); require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); }else{ require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; dont_show_template(); } }else{ //dont_show_template(); //going to show it anyway, as referer doesn't work in IE require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); } 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jennysong.ss at gmail.com Thu Jan 26 13:35:34 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Thu, 26 Jan 2012 21:35:34 +0800 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: <78CCB0C5-3FE8-4880-805D-6491656D253C@googlemail.com> References: <78CCB0C5-3FE8-4880-805D-6491656D253C@googlemail.com> Message-ID: in Firebug HTML, the xertepage.php is loaded, but the js is not. The HTML started with , then , the xertepage's div, when it comes the place where it should load the rloObject.js, it loads the wordpress single page template codes instead. after that, continue finish with xertepage's div. On Thu, Jan 26, 2012 at 5:54 PM, Pat Lockley wrote: > That means the path of the js isn't found. Check the HTML of the page? > > > On 26 Jan 2012, at 03:20, "Jenny.S" wrote: > > it makes a lot of sense :-)) Now renamed xwp to xerte-online, Editor shows > up and functionaly well. > single post Preview shows a blank page. > It doesn't see 404 not find, but says rloObject is not defined > > On Thu, Jan 26, 2012 at 11:04 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> the plugin folder needs to be "xerte-online" now (sorry if this makes no >> sense) >> >> On Thu, Jan 26, 2012 at 3:04 AM, Jenny.S < >> jennysong.ss at gmail.com> wrote: >> > No, activated as it is. For the 404 message, you can see the path is >> > correct. >> > >> > >> > On Thu, Jan 26, 2012 at 11:01 AM, Pat Lockley >> > < patrick.lockley at googlemail.com> >> wrote: >> >> >> >> did you rename the plugin folder? >> >> >> >> On Thu, Jan 26, 2012 at 2:58 AM, Jenny.S < >> jennysong.ss at gmail.com> wrote: >> >> > yes, that's great! just add the site"s user_id, then, let the site to >> >> > manage >> >> > who is student. >> >> > >> >> > >> >> > On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley >> >> > < patrick.lockley at googlemail.com> >> wrote: >> >> >> >> >> >> student ids as site user ids? >> >> >> >> >> >> I could add a user ID from the site >> >> >> >> >> >> On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S < >> jennysong.ss at gmail.com> >> >> >> wrote: >> >> >> > ok. I cross my finger-- hope you attach student's ID to the >> number of >> >> >> > plays >> >> >> > :-) >> >> >> > >> >> >> > >> >> >> > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley >> >> >> > < patrick.lockley at googlemail.com> >> wrote: >> >> >> >> >> >> >> >> how many "plays" for each "post" >> >> >> >> >> >> >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S < >> jennysong.ss at gmail.com> >> >> >> >> wrote: >> >> >> >> > you mean, track plays per item without identify who is the >> player? >> >> >> >> > or >> >> >> >> > attach >> >> >> >> > number of plays with each player? >> >> >> >> > as for the scorm part, --- we use the quiz score instead :-) >> >> >> >> > >> >> >> >> > >> >> >> >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley >> >> >> >> > < >> patrick.lockley at googlemail.com> wrote: >> >> >> >> >> >> >> >> >> >> not scorm, just - number of plays per item. >> >> >> >> >> >> >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S < >> jennysong.ss at gmail.com> >> >> >> >> >> wrote: >> >> >> >> >> > I vote for Usage stats / tracking ! >> >> >> >> >> > Gonna try the new thing, feedback later. >> >> >> >> >> > >> >> >> >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley >> >> >> >> >> > < >> patrick.lockley at googlemail.com> wrote: >> >> >> >> >> >> >> >> >> >> >> >> Changes >> >> >> >> >> >> >> >> >> >> >> >> 1) Some more error checking in the activation >> >> >> >> >> >> 2) All paths now xerte-online and not xerteonline (so old >> >> >> >> >> >> stuff >> >> >> >> >> >> will >> >> >> >> >> >> have stopped working - you can rename the plugins and >> upload >> >> >> >> >> >> folders). >> >> >> >> >> >> 3) Size options on the play page should work >> >> >> >> >> >> 4) Short code and iframe instructions on the editor (so >> people >> >> >> >> >> >> can >> >> >> >> >> >> reuse the LOs easier) >> >> >> >> >> >> 5) Preview window fine here >> >> >> >> >> >> 6) unload function errors removed >> >> >> >> >> >> 7) Undeclared filename variable problem removed >> >> >> >> >> >> 8) More secure upload script >> >> >> >> >> >> >> >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all >> bugs >> >> >> >> >> >> now >> >> >> >> >> >> dancing like happy bees. More jain. >> >> >> >> >> >> >> >> >> >> >> >> Thoughts >> >> >> >> >> >> >> >> >> >> >> >> Internationalise the text within WP? >> >> >> >> >> >> Training guidance - link to techdis? >> >> >> >> >> >> Usage stats / tracking? >> >> >> >> >> >> >> >> >> >> >> >> I can't think of a strong case for anything else (without >> >> >> >> >> >> committing >> >> >> >> >> >> to a lot more work) >> >> >> >> >> >> >> >> >> >> >> >> Pat >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> 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. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > 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. >> >> >> >> >> > >> >> >> >> >> > 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. >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > _______________________________________________ >> >> >> >> >> > Xerte-dev mailing list >> >> >> >> >> > >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> > >> >> >> >> >> > 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. >> >> >> >> >> > >> >> >> >> >> > 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. >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> Xerte-dev mailing list >> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > Xerte-dev mailing list >> >> >> >> > >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > >> Xerte-dev at lists.nottingham.ac.uk >> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jan 26 13:38:12 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 13:38:12 +0000 Subject: [Xerte-dev] Re: New WP Zip In-Reply-To: References: <78CCB0C5-3FE8-4880-805D-6491656D253C@googlemail.com> Message-ID: Ok, will look later - I modded the HTML to allow for the accessibility, probably broke it. On Thu, Jan 26, 2012 at 1:35 PM, Jenny.S wrote: > in Firebug HTML, the xertepage.php is loaded, but the js is not. > The HTML started with , then , the xertepage's div, when it comes the > place where it should load the rloObject.js, it loads the wordpress single > page template codes instead. after that, continue finish with xertepage's > div. > > On Thu, Jan 26, 2012 at 5:54 PM, Pat Lockley > wrote: >> >> That means the path of the js isn't found. Check the HTML of the page? >> >> >> On 26 Jan 2012, at 03:20, "Jenny.S" wrote: >> >> it makes a lot of sense :-)) Now renamed xwp to xerte-online, Editor shows >> up and functionaly well. >> single post Preview shows a blank page. >> It doesn't see 404 not find, but says rloObject is not defined >> >> On Thu, Jan 26, 2012 at 11:04 AM, Pat Lockley >> wrote: >>> >>> the plugin folder needs to be "xerte-online" now (sorry if this makes no >>> sense) >>> >>> On Thu, Jan 26, 2012 at 3:04 AM, Jenny.S wrote: >>> > No, activated as it is. For the 404 message, you can see the path is >>> > correct. >>> > >>> > >>> > On Thu, Jan 26, 2012 at 11:01 AM, Pat Lockley >>> > wrote: >>> >> >>> >> did you rename the plugin folder? >>> >> >>> >> On Thu, Jan 26, 2012 at 2:58 AM, Jenny.S >>> >> wrote: >>> >> > yes, that's great! just add the site"s user_id, then, let the site >>> >> > to >>> >> > manage >>> >> > who is student. >>> >> > >>> >> > >>> >> > On Thu, Jan 26, 2012 at 10:55 AM, Pat Lockley >>> >> > wrote: >>> >> >> >>> >> >> student ids as site user ids? >>> >> >> >>> >> >> I could add a user ID from the site >>> >> >> >>> >> >> On Thu, Jan 26, 2012 at 2:50 AM, Jenny.S >>> >> >> wrote: >>> >> >> > ok. I cross my finger-- hope you attach student's ID to the >>> >> >> > number of >>> >> >> > plays >>> >> >> > :-) >>> >> >> > >>> >> >> > >>> >> >> > On Thu, Jan 26, 2012 at 10:47 AM, Pat Lockley >>> >> >> > wrote: >>> >> >> >> >>> >> >> >> how many "plays" for each "post" >>> >> >> >> >>> >> >> >> On Thu, Jan 26, 2012 at 2:45 AM, Jenny.S >>> >> >> >> >>> >> >> >> wrote: >>> >> >> >> > you mean, track plays per item without identify who is the >>> >> >> >> > player? >>> >> >> >> > or >>> >> >> >> > attach >>> >> >> >> > number of plays with each player? >>> >> >> >> > as for the scorm part, --- we use the quiz score instead :-) >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > On Thu, Jan 26, 2012 at 10:37 AM, Pat Lockley >>> >> >> >> > wrote: >>> >> >> >> >> >>> >> >> >> >> not scorm, just - number of plays per item. >>> >> >> >> >> >>> >> >> >> >> On Thu, Jan 26, 2012 at 2:31 AM, Jenny.S >>> >> >> >> >> >>> >> >> >> >> wrote: >>> >> >> >> >> > I vote for Usage stats / tracking ! >>> >> >> >> >> > Gonna try the new thing, feedback later. >>> >> >> >> >> > >>> >> >> >> >> > On Thu, Jan 26, 2012 at 10:27 AM, Pat Lockley >>> >> >> >> >> > wrote: >>> >> >> >> >> >> >>> >> >> >> >> >> Changes >>> >> >> >> >> >> >>> >> >> >> >> >> 1) Some more error checking in the activation >>> >> >> >> >> >> 2) All paths now xerte-online and not xerteonline (so old >>> >> >> >> >> >> stuff >>> >> >> >> >> >> will >>> >> >> >> >> >> have stopped working - you can rename the plugins and >>> >> >> >> >> >> upload >>> >> >> >> >> >> folders). >>> >> >> >> >> >> 3) Size options on the play page should work >>> >> >> >> >> >> 4) Short code and iframe instructions on the editor (so >>> >> >> >> >> >> people >>> >> >> >> >> >> can >>> >> >> >> >> >> reuse the LOs easier) >>> >> >> >> >> >> 5) Preview window fine here >>> >> >> >> >> >> 6) unload function errors removed >>> >> >> >> >> >> 7) Undeclared filename variable problem removed >>> >> >> >> >> >> 8) More secure upload script >>> >> >> >> >> >> >>> >> >> >> >> >> ALL BUGS SQUISHED! In a friendly vegan way. So maybe, all >>> >> >> >> >> >> bugs >>> >> >> >> >> >> now >>> >> >> >> >> >> dancing like happy bees. More jain. >>> >> >> >> >> >> >>> >> >> >> >> >> Thoughts >>> >> >> >> >> >> >>> >> >> >> >> >> Internationalise the text within WP? >>> >> >> >> >> >> Training guidance - link to techdis? >>> >> >> >> >> >> Usage stats / tracking? >>> >> >> >> >> >> >>> >> >> >> >> >> I can't think of a strong case for anything else (without >>> >> >> >> >> >> committing >>> >> >> >> >> >> to a lot more work) >>> >> >> >> >> >> >>> >> >> >> >> >> Pat >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> >> _______________________________________________ >>> >> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> 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. >>> >> >> >> >> >> >>> >> >> >> >> >> >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> > 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. >>> >> >> >> >> > >>> >> >> >> >> > 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. >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> > _______________________________________________ >>> >> >> >> >> > Xerte-dev mailing list >>> >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> >> > >>> >> >> >> >> > 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. >>> >> >> >> >> > >>> >> >> >> >> > 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. >>> >> >> >> >> > >>> >> >> >> >> > >>> >> >> >> >> >>> >> >> >> >> _______________________________________________ >>> >> >> >> >> Xerte-dev mailing list >>> >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > >>> >> >> >> > _______________________________________________ >>> >> >> >> > Xerte-dev mailing list >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > >>> >> >> >> >>> >> >> >> _______________________________________________ >>> >> >> >> Xerte-dev mailing list >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> > _______________________________________________ >>> >> >> > Xerte-dev mailing list >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> >>> >> >> _______________________________________________ >>> >> >> Xerte-dev mailing list >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> > _______________________________________________ >>> >> > Xerte-dev mailing list >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> >>> >> _______________________________________________ >>> >> Xerte-dev mailing list >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> > _______________________________________________ >>> > Xerte-dev mailing list >>> > Xerte-dev at lists.nottingham.ac.uk >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> 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. >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From david at palepurple.co.uk Thu Jan 26 13:46:34 2012 From: david at palepurple.co.uk (David Goodwin) Date: Thu, 26 Jan 2012 13:46:34 +0000 Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: The HTTP_REFERRER variable is supplied by the user's browser when a request is made - so you can't really trust it. And I suspect various anti-virus products may well block / remove it when requests are made in the name of privacy. David. On 26 Jan 2012, at 12:59, Julian Tenney wrote: > Anyone got any bright ideas: when you set access to other, you can specify a domain to restrict access only to links being followed from that domain: so you can have some sort of gatekeeping in any system the user has to log in to, and then only allow access to links from that system. > > This is the code, it uses $_SERVER['HTTP_REFERER']. > > It doesn?t work in IE. Cosmic. > > Any alternative approaches without having to modify the linking system? > > This is the code: > Pale Purple Ltd. (Company No: 5580814) 'Business Web Application Development and Training in PHP' http://www.palepurple.co.uk Office: 0845 0046746 Mobile: 07792380669 Follow us on Twitter: @PalePurpleLtd From patrick.lockley at googlemail.com Thu Jan 26 13:49:03 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 26 Jan 2012 13:49:03 +0000 Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: it was always more of a - this is the best we can do botch job than anything meant to be brilliant. The alternative is some sort of LMI adapter - or some GET PGP string? On Thu, Jan 26, 2012 at 1:46 PM, David Goodwin wrote: > The HTTP_REFERRER variable is supplied by the user's browser when a request is made - so you can't really trust it. > > And I suspect various anti-virus products may well block / remove it when requests are made in the name of privacy. > > David. > > > On 26 Jan 2012, at 12:59, Julian Tenney wrote: > >> Anyone got any bright ideas: when you set access to other, you can specify a domain to restrict access only to links being followed from that domain: so you can have some sort of gatekeeping in any system the user has to log in to, and then only allow access to links from that system. >> >> This is the code, it uses $_SERVER['HTTP_REFERER']. >> >> It doesn?t work in IE. Cosmic. >> >> Any alternative approaches without having to modify the linking system? >> >> This is the code: >> > > > > Pale Purple Ltd. ?(Company No: 5580814) > 'Business Web Application Development and Training in PHP' > > http://www.palepurple.co.uk > Office: 0845 0046746 ? ? Mobile: 07792380669 > > Follow us on Twitter: @PalePurpleLtd > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > 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. > > 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. From Julian.Tenney at nottingham.ac.uk Thu Jan 26 13:59:21 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 26 Jan 2012 13:59:21 +0000 Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC161@EXCHANGE1.ad.nottingham.ac.uk> Yeah, I saw that, but it means modifying the page hosting the link. And that could be anywhere. For internal systems I can see some solutions, but to have it work on other systems elsewhere is looking more difficult. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 26 January 2012 13:12 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue The few posts regarding all ultimately say "never use referrer anyway" as you can't trust it. Most recommend building your own logic: http://stackoverflow.com/questions/3966059/alternative-for-serverhttp-referer-php-variable-in-msie ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte-dev at lists.nottingham.ac.uk Date: Thu, 26 Jan 2012 12:59:05 +0000 Subject: [Xerte-dev] $_SERVER['HTTP_REFERER'] issue Anyone got any bright ideas: when you set access to other, you can specify a domain to restrict access only to links being followed from that domain: so you can have some sort of gatekeeping in any system the user has to log in to, and then only allow access to links from that system. This is the code, it uses $_SERVER['HTTP_REFERER']. It doesn't work in IE. Cosmic. Any alternative approaches without having to modify the linking system? This is the code: $test_string=substr($row_play['access_to_whom'],6,strlen($row_play['access_to_whom'])); if(strlen($_SERVER['HTTP_REFERER'])!=0){ if(strpos($_SERVER['HTTP_REFERER'],$test_string)==0){ mysql_query("UPDATE " . $xerte_toolkits_site->database_table_prefix . "templatedetails SET number_of_uses=number_of_uses+1 WHERE template_id=" . $safe_template_id); require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); }else{ require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; dont_show_template(); } }else{ //dont_show_template(); //going to show it anyway, as referer doesn't work in IE require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); } 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jan 26 13:59:53 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 26 Jan 2012 13:59:53 +0000 Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue In-Reply-To: <006c01ccdc2d$15fddee0$41f99ca0$@co.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC107@EXCHANGE1.ad.nottingham.ac.uk> <006c01ccdc2d$15fddee0$41f99ca0$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC164@EXCHANGE1.ad.nottingham.ac.uk> When you say it doesn't work in IE what do you mean? $_SERVER['HTTP_REFERER'] is null. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 26 January 2012 13:19 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: $_SERVER['HTTP_REFERER'] issue When you say it doesn't work in IE what do you mean? I've just tested in IE 8 with a link to a restricted LO from my Moodle. Clicking the link in moodle works, putting the link direct in a browser or via email works in as far as it doesn't show the LO but gives an error. Fatal error: Call to undefined function dont_show_template() That said it's not the latest version so that error may have been fixed at some point. HTH Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 26 January 2012 12:59 To: For Xerte technical developers Subject: [Xerte-dev] $_SERVER['HTTP_REFERER'] issue Anyone got any bright ideas: when you set access to other, you can specify a domain to restrict access only to links being followed from that domain: so you can have some sort of gatekeeping in any system the user has to log in to, and then only allow access to links from that system. This is the code, it uses $_SERVER['HTTP_REFERER']. It doesn't work in IE. Cosmic. Any alternative approaches without having to modify the linking system? This is the code: $test_string=substr($row_play['access_to_whom'],6,strlen($row_play['access_to_whom'])); if(strlen($_SERVER['HTTP_REFERER'])!=0){ if(strpos($_SERVER['HTTP_REFERER'],$test_string)==0){ mysql_query("UPDATE " . $xerte_toolkits_site->database_table_prefix . "templatedetails SET number_of_uses=number_of_uses+1 WHERE template_id=" . $safe_template_id); require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); }else{ require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; dont_show_template(); } }else{ //dont_show_template(); //going to show it anyway, as referer doesn't work in IE require $xerte_toolkits_site->root_file_path . "modules/" . $row_play['template_framework'] . "/play.php"; show_template($row_play); } 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Thu Jan 26 14:30:48 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Thu, 26 Jan 2012 14:30:48 +0000 Subject: [Xerte-dev] Re: Captivate page In-Reply-To: References: Message-ID: Hello Fay, Many thanks for the file. Johnathan On 26 January 2012 12:43, Fay Cross wrote: > > > > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* 26 January 2012 12:34 > *To:* Xerte Developers Discussion List > *Subject:* [Xerte-dev] Captivate page > > > > Would anyone have a small captivate file they could post for me, so that I > can test out the individual page template of the captivate page. > > > > Thanks in anticipation. > > > > Johnathan > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Thu Jan 26 16:42:50 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 26 Jan 2012 16:42:50 -0000 Subject: [Xerte-dev] TTS error Message-ID: <010c01ccdc49$8cc89260$a659b720$@co.uk> Hi all just been testing some additional TTS voices on Windows 7 and out of curiosity tested how they worked with a Xerte LO too and to begin with used the Notting page_560 example http://www.nottingham.ac.uk/toolkits/play_560 and then I tested with one of my own LO's randomly selected http://mitchellmedia.co.uk/moodle/xertetoolkits/play_120 It seems an error as crept in at some point with the TTS reading of navigation elements... on the 560 lo table of contents is read as "undefined" volume control get's selected when tabbing but doesn't get read bottom right contents button gets read as "table of contents" on 120 lo toc and continue get read correctly volume control get's selected when tabbing but doesn't get read Mine is not a completely up-to-date install so it seems like this error may have crept in recently? HTH Ron -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Fri Jan 27 02:39:20 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 02:39:20 +0000 Subject: [Xerte-dev] Bar sorting out charpad, this is probably it Message-ID: What is new Usage stats Training Guidance A thank you for choosing Xerte screen And that's about it. -------------- next part -------------- A non-text attachment was scrubbed... Name: xerte-online.zip Type: application/zip Size: 1880397 bytes Desc: not available URL: From d_b_burnett at hotmail.com Fri Jan 27 02:43:14 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 26 Jan 2012 21:43:14 -0500 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: Message-ID: > A thank you for choosing Xerte screenHow American.:-) -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Fri Jan 27 02:45:38 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 02:45:38 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: Message-ID: i tried to add in a konami code as well, but it was too hard On Fri, Jan 27, 2012 at 2:43 AM, Dave Burnett wrote: >> A thank you for choosing Xerte screen > > How American. > > :-) > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From d_b_burnett at hotmail.com Fri Jan 27 02:56:43 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 26 Jan 2012 21:56:43 -0500 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: , , Message-ID: You mean a "running shoe". I did a CD for some investment house once to go out to their clients.All but one of the 76 screens had a sound icon to play/replay audio.If you clicked where the sound icon didn't appear on that 1 screen, you got a clip from Frankie Goes To Hollywood:"Mine is the last voice you will ever hear. Do not be alarmed." > Date: Fri, 27 Jan 2012 02:45:38 +0000 > From: patrick.lockley at googlemail.com > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > i tried to add in a konami code as well, but it was too hard > > On Fri, Jan 27, 2012 at 2:43 AM, Dave Burnett wrote: > >> A thank you for choosing Xerte screen > > > > How American. > > > > :-) > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From jennysong.ss at gmail.com Fri Jan 27 03:17:53 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Fri, 27 Jan 2012 11:17:53 +0800 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: Message-ID: Pad, the new version still not find the charpad at this link: http://localhost/wordpress/wp-content/plugins/xerte-online/xertefiles/template/common/charPad.swf so, the screen still have big space on right and bottom. Another thing-- the post doesn't follow WP visibility settings if set Password Protected. So, the whole world can still access the content. On Fri, Jan 27, 2012 at 10:56 AM, Dave Burnett wrote: > > You mean a "running shoe". > > I did a CD for some investment house once to go out to their clients. > All but one of the 76 screens had a sound icon to play/replay audio. > If you clicked where the sound icon didn't appear on that 1 screen, you > got a clip from Frankie Goes To Hollywood: > "Mine is the last voice you will ever hear. Do not be alarmed." > > > > Date: Fri, 27 Jan 2012 02:45:38 +0000 > > From: patrick.lockley at googlemail.com > > To: xerte-dev at lists.nottingham.ac.uk > > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > > > > i tried to add in a konami code as well, but it was too hard > > > > On Fri, Jan 27, 2012 at 2:43 AM, Dave Burnett > wrote: > > >> A thank you for choosing Xerte screen > > > > > > How American. > > > > > > :-) > > > > > > > > > > > > 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. > > > > > > 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. > > > > > > > > > _______________________________________________ > > > Xerte-dev mailing list > > > Xerte-dev at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > 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. > > > > > > 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. > > > > > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Fri Jan 27 03:29:34 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 03:29:34 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: Message-ID: charpad in if not "publish" you get an error - can't see a "password setting"? On Fri, Jan 27, 2012 at 3:17 AM, Jenny.S wrote: > Pad, the new version still not find the charpad at this link: > http://localhost/wordpress/wp-content/plugins/xerte-online/xertefiles/template/common/charPad.swf > so, the screen still have big space on right and bottom. > > Another thing-- the post doesn't follow WP visibility settings if set > Password Protected. > So, the whole world can still access the content. > > > On Fri, Jan 27, 2012 at 10:56 AM, Dave Burnett > wrote: >> >> >> You mean a "running shoe". >> >> I did a CD for some investment house once to go out to their clients. >> All but one of the 76 screens had a sound icon to play/replay audio. >> If you clicked where the sound icon didn't appear on that 1 screen, you >> got a clip from Frankie Goes To Hollywood: >> "Mine is the last voice you will ever hear.?Do not be alarmed." >> >> >> > Date: Fri, 27 Jan 2012 02:45:38 +0000 >> > From: patrick.lockley at googlemail.com >> > To: xerte-dev at lists.nottingham.ac.uk >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> > >> > i tried to add in a konami code as well, but it was too hard >> > >> > On Fri, Jan 27, 2012 at 2:43 AM, Dave Burnett >> > wrote: >> > >> A thank you for choosing Xerte screen >> > > >> > > How American. >> > > >> > > :-) >> > > >> > > >> > > >> > > 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. >> > > >> > > 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. >> > > >> > > >> > > _______________________________________________ >> > > Xerte-dev mailing list >> > > Xerte-dev at lists.nottingham.ac.uk >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > >> > > 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. >> > > >> > > 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. >> > > >> > > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > -------------- next part -------------- A non-text attachment was scrubbed... Name: xerte-online.zip Type: application/zip Size: 1887486 bytes Desc: not available URL: From jennysong.ss at gmail.com Fri Jan 27 03:38:07 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Fri, 27 Jan 2012 11:38:07 +0800 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: Message-ID: If not "Publish", what to do to get the error? Yes, I can set password through WP's visibility setting. I don't see where's xerte's password setting. On Fri, Jan 27, 2012 at 11:29 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > charpad in > > if not "publish" you get an error - can't see a "password setting"? > > On Fri, Jan 27, 2012 at 3:17 AM, Jenny.S wrote: > > Pad, the new version still not find the charpad at this link: > > > http://localhost/wordpress/wp-content/plugins/xerte-online/xertefiles/template/common/charPad.swf > > so, the screen still have big space on right and bottom. > > > > Another thing-- the post doesn't follow WP visibility settings if set > > Password Protected. > > So, the whole world can still access the content. > > > > > > On Fri, Jan 27, 2012 at 10:56 AM, Dave Burnett > > wrote: > >> > >> > >> You mean a "running shoe". > >> > >> I did a CD for some investment house once to go out to their clients. > >> All but one of the 76 screens had a sound icon to play/replay audio. > >> If you clicked where the sound icon didn't appear on that 1 screen, you > >> got a clip from Frankie Goes To Hollywood: > >> "Mine is the last voice you will ever hear. Do not be alarmed." > >> > >> > >> > Date: Fri, 27 Jan 2012 02:45:38 +0000 > >> > From: patrick.lockley at googlemail.com > >> > To: xerte-dev at lists.nottingham.ac.uk > >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > >> > >> > > >> > i tried to add in a konami code as well, but it was too hard > >> > > >> > On Fri, Jan 27, 2012 at 2:43 AM, Dave Burnett < > d_b_burnett at hotmail.com> > >> > wrote: > >> > >> A thank you for choosing Xerte screen > >> > > > >> > > How American. > >> > > > >> > > :-) > >> > > > >> > > > >> > > > >> > > 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. > >> > > > >> > > 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. > >> > > > >> > > > >> > > _______________________________________________ > >> > > Xerte-dev mailing list > >> > > Xerte-dev at lists.nottingham.ac.uk > >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > > >> > > 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. > >> > > > >> > > 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. > >> > > > >> > > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> 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. > >> > >> 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. > >> > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> 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. > >> > >> 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. > >> > >> > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jan 27 08:16:29 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 27 Jan 2012 08:16:29 -0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: Message-ID: <003301ccdccb$fad44970$f07cdc50$@co.uk> Hi Pat thought I'd have a go at testing this on a localhost install - a few comments/findings Adding and activating worked fine When clicking Xerte Online below Comments the heading then reads Xerte Onlines: When clicking Add New the editor appears and seems fine in terms of sizing etc but clicking Insert to add a page doesn't do anything Clicking play then gives the following error: Does there need to be a USER-FILES folder somewhere? HTH Ron -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 January 2012 02:39 To: For Xerte technical developers Subject: [Xerte-dev] Bar sorting out charpad, this is probably it What is new Usage stats Training Guidance A thank you for choosing Xerte screen And that's about it. 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 8613 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 4246 bytes Desc: not available URL: From jennysong.ss at gmail.com Fri Jan 27 08:26:50 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Fri, 27 Jan 2012 16:26:50 +0800 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: <003301ccdccb$fad44970$f07cdc50$@co.uk> References: <003301ccdccb$fad44970$f07cdc50$@co.uk> Message-ID: Ron, try input post title first, see what happens? On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell wrote: > Hi Pat**** > > thought I'd have a go at testing this on a localhost install - a few > comments/findings**** > > ** ** > > Adding and activating worked fine**** > > When clicking Xerte Online below Comments the heading then reads Xerte > Onlines:**** > > **** > > When clicking Add New the editor appears and seems fine in terms of sizing > etc but clicking Insert to add a page doesn't do anything**** > > Clicking play then gives the following error:**** > > **** > > Does there need to be a USER-FILES folder somewhere?**** > > ** ** > > HTH**** > > Ron**** > > ** ** > > ** ** > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 January 2012 02:39 > To: For Xerte technical developers > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it**** > > ** ** > > What is new**** > > ** ** > > Usage stats**** > > Training Guidance**** > > A thank you for choosing Xerte screen**** > > ** ** > > And that's about it.**** > > ** ** > > 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. > **** > > ** ** > > 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.* > *** > > ** ** > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 4246 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 8613 bytes Desc: not available URL: From ronm at mitchellmedia.co.uk Fri Jan 27 08:40:16 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 27 Jan 2012 08:40:16 -0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: <003301ccdccb$fad44970$f07cdc50$@co.uk> Message-ID: <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> Thanks but already tried that - no difference. Where do the project files get created? e.g. the .xml and media folder From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S Sent: 27 January 2012 08:27 To: For Xerte technical developers Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it Ron, try input post title first, see what happens? On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell wrote: Hi Pat thought I'd have a go at testing this on a localhost install - a few comments/findings Adding and activating worked fine When clicking Xerte Online below Comments the heading then reads Xerte Onlines: When clicking Add New the editor appears and seems fine in terms of sizing etc but clicking Insert to add a page doesn't do anything Clicking play then gives the following error: Does there need to be a USER-FILES folder somewhere? HTH Ron -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 January 2012 02:39 To: For Xerte technical developers Subject: [Xerte-dev] Bar sorting out charpad, this is probably it What is new Usage stats Training Guidance A thank you for choosing Xerte screen And that's about it. 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. 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. 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8613 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 4246 bytes Desc: not available URL: From jennysong.ss at gmail.com Fri Jan 27 08:46:24 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Fri, 27 Jan 2012 16:46:24 +0800 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> Message-ID: preview.xml , data.xml, media dir are in wp-content/uploads/xerte-online/ On Fri, Jan 27, 2012 at 4:40 PM, Ron Mitchell wrote: > Thanks but already tried that - no difference.**** > > Where do the project files get created? e.g. the .xml and media folder**** > > ** ** > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Jenny.S > *Sent:* 27 January 2012 08:27 > > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: Bar sorting out charpad, this is probably it*** > * > > ** ** > > Ron, try input post title first, see what happens?**** > > On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell > wrote:**** > > Hi Pat**** > > thought I'd have a go at testing this on a localhost install - a few > comments/findings**** > > **** > > Adding and activating worked fine**** > > When clicking Xerte Online below Comments the heading then reads Xerte > Onlines:**** > > **** > > When clicking Add New the editor appears and seems fine in terms of sizing > etc but clicking Insert to add a page doesn't do anything**** > > Clicking play then gives the following error:**** > > **** > > Does there need to be a USER-FILES folder somewhere?**** > > **** > > HTH**** > > Ron**** > > **** > > **** > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 January 2012 02:39 > To: For Xerte technical developers > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it**** > > **** > > What is new**** > > **** > > Usage stats**** > > Training Guidance**** > > A thank you for choosing Xerte screen**** > > **** > > And that's about it.**** > > **** > > 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. > **** > > **** > > 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.* > *** > > **** > > ** ** > > 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. **** > > 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. **** > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > **** > > ** ** > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jan 27 08:48:14 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 27 Jan 2012 08:48:14 -0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> Message-ID: <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> Ok found where the project folders are being created e.g. \wp-content\uploads\xerte-online\14 and they contain data.xml and preview.xml but still nothing happens when clicking insert so the xml isn't being populated. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 27 January 2012 08:40 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it Thanks but already tried that - no difference. Where do the project files get created? e.g. the .xml and media folder From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S Sent: 27 January 2012 08:27 To: For Xerte technical developers Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it Ron, try input post title first, see what happens? On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell wrote: Hi Pat thought I'd have a go at testing this on a localhost install - a few comments/findings Adding and activating worked fine When clicking Xerte Online below Comments the heading then reads Xerte Onlines: When clicking Add New the editor appears and seems fine in terms of sizing etc but clicking Insert to add a page doesn't do anything Clicking play then gives the following error: Does there need to be a USER-FILES folder somewhere? HTH Ron -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 January 2012 02:39 To: For Xerte technical developers Subject: [Xerte-dev] Bar sorting out charpad, this is probably it What is new Usage stats Training Guidance A thank you for choosing Xerte screen And that's about it. 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. 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. 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8613 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 4246 bytes Desc: not available URL: From jennysong.ss at gmail.com Fri Jan 27 09:02:12 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Fri, 27 Jan 2012 17:02:12 +0800 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> Message-ID: It works fine with my WP. Seems the URL can be vary depends on each WP install settings. On Fri, Jan 27, 2012 at 4:48 PM, Ron Mitchell wrote: > Ok found where the project folders are being created e.g. > \wp-content\uploads\xerte-online\14 and they contain data.xml and > preview.xml but still nothing happens when clicking insert so the xml isn't > being populated.**** > > ** ** > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ron Mitchell > *Sent:* 27 January 2012 08:40 > > *To:* 'For Xerte technical developers' > *Subject:* [Xerte-dev] Re: Bar sorting out charpad, this is probably it*** > * > > ** ** > > Thanks but already tried that - no difference.**** > > Where do the project files get created? e.g. the .xml and media folder**** > > ** ** > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [ > mailto:xerte-dev-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Jenny.S > *Sent:* 27 January 2012 08:27 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: Bar sorting out charpad, this is probably it*** > * > > ** ** > > Ron, try input post title first, see what happens?**** > > On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell > wrote:**** > > Hi Pat**** > > thought I'd have a go at testing this on a localhost install - a few > comments/findings**** > > **** > > Adding and activating worked fine**** > > When clicking Xerte Online below Comments the heading then reads Xerte > Onlines:**** > > **** > > When clicking Add New the editor appears and seems fine in terms of sizing > etc but clicking Insert to add a page doesn't do anything**** > > Clicking play then gives the following error:**** > > **** > > Does there need to be a USER-FILES folder somewhere?**** > > **** > > HTH**** > > Ron**** > > **** > > **** > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 January 2012 02:39 > To: For Xerte technical developers > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it**** > > **** > > What is new**** > > **** > > Usage stats**** > > Training Guidance**** > > A thank you for choosing Xerte screen**** > > **** > > And that's about it.**** > > **** > > 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. > **** > > **** > > 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.* > *** > > **** > > ** ** > > 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. **** > > 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. **** > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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.* > *** > > ** ** > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jan 27 09:27:56 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 27 Jan 2012 09:27:56 +0000 Subject: [Xerte-dev] Re: TTS error In-Reply-To: <010c01ccdc49$8cc89260$a659b720$@co.uk> References: <010c01ccdc49$8cc89260$a659b720$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC3F8@EXCHANGE1.ad.nottingham.ac.uk> Play_560 isn't necessarily running the latest code: it would be good to know what happens with the files from the svn. I'll check it out though. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 26 January 2012 16:43 To: 'For Xerte technical developers' Subject: [Xerte-dev] TTS error Hi all just been testing some additional TTS voices on Windows 7 and out of curiosity tested how they worked with a Xerte LO too and to begin with used the Notting page_560 example http://www.nottingham.ac.uk/toolkits/play_560 and then I tested with one of my own LO's randomly selected http://mitchellmedia.co.uk/moodle/xertetoolkits/play_120 It seems an error as crept in at some point with the TTS reading of navigation elements... on the 560 lo table of contents is read as "undefined" volume control get's selected when tabbing but doesn't get read bottom right contents button gets read as "table of contents" on 120 lo toc and continue get read correctly volume control get's selected when tabbing but doesn't get read Mine is not a completely up-to-date install so it seems like this error may have crept in recently? HTH Ron -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jan 27 09:53:05 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 27 Jan 2012 09:53:05 -0000 Subject: [Xerte-dev] Re: TTS error In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA11CC3F8@EXCHANGE1.ad.nottingham.ac.uk> References: <010c01ccdc49$8cc89260$a659b720$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CC3F8@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <007501ccdcd9$794264b0$6bc72e10$@co.uk> may not be relevant but in testing Pat's Wordpress plugin I noticed that has the same error where TOC is undefined and continue is read as table of contents. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 27 January 2012 09:28 To: For Xerte technical developers Subject: [Xerte-dev] Re: TTS error Play_560 isn't necessarily running the latest code: it would be good to know what happens with the files from the svn. I'll check it out though. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 26 January 2012 16:43 To: 'For Xerte technical developers' Subject: [Xerte-dev] TTS error Hi all just been testing some additional TTS voices on Windows 7 and out of curiosity tested how they worked with a Xerte LO too and to begin with used the Notting page_560 example http://www.nottingham.ac.uk/toolkits/play_560 and then I tested with one of my own LO's randomly selected http://mitchellmedia.co.uk/moodle/xertetoolkits/play_120 It seems an error as crept in at some point with the TTS reading of navigation elements... on the 560 lo table of contents is read as "undefined" volume control get's selected when tabbing but doesn't get read bottom right contents button gets read as "table of contents" on 120 lo toc and continue get read correctly volume control get's selected when tabbing but doesn't get read Mine is not a completely up-to-date install so it seems like this error may have crept in recently? HTH Ron 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Fri Jan 27 10:23:24 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 10:23:24 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: Message-ID: http://wordpress.org/support/topic/password-protection-does-not-work-on-posts-custom-post-types Looks like you can't password protect a custom post. On Fri, Jan 27, 2012 at 3:38 AM, Jenny.S wrote: > If not "Publish", what to do to get the error? > Yes, I can set password through WP's visibility setting. I don't see where's > xerte's password setting. > > > On Fri, Jan 27, 2012 at 11:29 AM, Pat Lockley > wrote: >> >> charpad in >> >> if not "publish" you get an error - can't see a "password setting"? >> >> On Fri, Jan 27, 2012 at 3:17 AM, Jenny.S wrote: >> > Pad, the new version still not find the charpad at this link: >> > >> > http://localhost/wordpress/wp-content/plugins/xerte-online/xertefiles/template/common/charPad.swf >> > so, the screen still have big space on right and bottom. >> > >> > Another thing-- the post doesn't follow WP visibility settings if set >> > Password Protected. >> > So, the whole world can still access the content. >> > >> > >> > On Fri, Jan 27, 2012 at 10:56 AM, Dave Burnett >> > wrote: >> >> >> >> >> >> You mean a "running shoe". >> >> >> >> I did a CD for some investment house once to go out to their clients. >> >> All but one of the 76 screens had a sound icon to play/replay audio. >> >> If you clicked where the sound icon didn't appear on that 1 screen, you >> >> got a clip from Frankie Goes To Hollywood: >> >> "Mine is the last voice you will ever hear.?Do not be alarmed." >> >> >> >> >> >> > Date: Fri, 27 Jan 2012 02:45:38 +0000 >> >> > From: patrick.lockley at googlemail.com >> >> > To: xerte-dev at lists.nottingham.ac.uk >> >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> >> >> > >> >> > i tried to add in a konami code as well, but it was too hard >> >> > >> >> > On Fri, Jan 27, 2012 at 2:43 AM, Dave Burnett >> >> > >> >> > wrote: >> >> > >> A thank you for choosing Xerte screen >> >> > > >> >> > > How American. >> >> > > >> >> > > :-) >> >> > > >> >> > > >> >> > > >> >> > > 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. >> >> > > >> >> > > 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. >> >> > > >> >> > > >> >> > > _______________________________________________ >> >> > > Xerte-dev mailing list >> >> > > Xerte-dev at lists.nottingham.ac.uk >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > > >> >> > > 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. >> >> > > >> >> > > 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. >> >> > > >> >> > > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From patrick.lockley at googlemail.com Fri Jan 27 10:24:36 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 10:24:36 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> Message-ID: So on a localhost XAMPP? Or localhost MAMP? The error box popping up is the xml being corrupted message? What pages did you add? On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell wrote: > Ok found where the project folders are being created e.g. > \wp-content\uploads\xerte-online\14 and they contain data.xml and > preview.xml but still nothing happens when clicking insert so the xml isn't > being populated.**** > > ** ** > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ron Mitchell > *Sent:* 27 January 2012 08:40 > > *To:* 'For Xerte technical developers' > *Subject:* [Xerte-dev] Re: Bar sorting out charpad, this is probably it*** > * > > ** ** > > Thanks but already tried that - no difference.**** > > Where do the project files get created? e.g. the .xml and media folder**** > > ** ** > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [ > mailto:xerte-dev-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Jenny.S > *Sent:* 27 January 2012 08:27 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: Bar sorting out charpad, this is probably it*** > * > > ** ** > > Ron, try input post title first, see what happens?**** > > On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell > wrote:**** > > Hi Pat**** > > thought I'd have a go at testing this on a localhost install - a few > comments/findings**** > > **** > > Adding and activating worked fine**** > > When clicking Xerte Online below Comments the heading then reads Xerte > Onlines:**** > > **** > > When clicking Add New the editor appears and seems fine in terms of sizing > etc but clicking Insert to add a page doesn't do anything**** > > Clicking play then gives the following error:**** > > **** > > Does there need to be a USER-FILES folder somewhere?**** > > **** > > HTH**** > > Ron**** > > **** > > **** > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 January 2012 02:39 > To: For Xerte technical developers > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it**** > > **** > > What is new**** > > **** > > Usage stats**** > > Training Guidance**** > > A thank you for choosing Xerte screen**** > > **** > > And that's about it.**** > > **** > > 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. > **** > > **** > > 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.* > *** > > **** > > ** ** > > 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. **** > > 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. **** > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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.* > *** > > ** ** > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jan 27 10:32:49 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 27 Jan 2012 10:32:49 -0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> Message-ID: <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> localhost xampp The error message on play is The xml could not be formatted, and changes have not been saved. Check Not able to add any pages - clicking Insert doesn't display the pages menu or do anything e.g. no error on clicking insert just nothing happens From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 January 2012 10:25 To: For Xerte technical developers Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it So on a localhost XAMPP? Or localhost MAMP? The error box popping up is the xml being corrupted message? What pages did you add? On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell wrote: Ok found where the project folders are being created e.g. \wp-content\uploads\xerte-online\14 and they contain data.xml and preview.xml but still nothing happens when clicking insert so the xml isn't being populated. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 27 January 2012 08:40 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it Thanks but already tried that - no difference. Where do the project files get created? e.g. the .xml and media folder From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S Sent: 27 January 2012 08:27 To: For Xerte technical developers Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it Ron, try input post title first, see what happens? On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell wrote: Hi Pat thought I'd have a go at testing this on a localhost install - a few comments/findings Adding and activating worked fine When clicking Xerte Online below Comments the heading then reads Xerte Onlines: When clicking Add New the editor appears and seems fine in terms of sizing etc but clicking Insert to add a page doesn't do anything Clicking play then gives the following error: Does there need to be a USER-FILES folder somewhere? HTH Ron -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 January 2012 02:39 To: For Xerte technical developers Subject: [Xerte-dev] Bar sorting out charpad, this is probably it What is new Usage stats Training Guidance A thank you for choosing Xerte screen And that's about it. 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. 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. 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Fri Jan 27 10:37:49 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 10:37:49 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> Message-ID: what does fiddler show? My XAMPP is bog standard and it works fine here? On Fri, Jan 27, 2012 at 10:32 AM, Ron Mitchell wrote: > localhost xampp > > > > The error message on play is The xml could not be formatted, and changes > have not been saved. Check > > > > Not able to add any pages - clicking Insert doesn't display the pages menu > or do anything e.g. no error on clicking insert just nothing happens > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 January 2012 10:25 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > > > So on a localhost XAMPP? > > > > Or localhost MAMP? > > > > The error box popping up is the xml being corrupted message? > > > > What pages did you add? > > On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell > wrote: > > Ok found where the project folders are being created e.g. > \wp-content\uploads\xerte-online\14 and they contain data.xml and > preview.xml but still nothing happens when clicking insert so the xml isn't > being populated. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 27 January 2012 08:40 > > > To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > > > Thanks but already tried that - no difference. > > Where do the project files get created? e.g. the .xml and media folder > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S > Sent: 27 January 2012 08:27 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > > > Ron, try input post title first, see what happens? > > On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell > wrote: > > Hi Pat > > thought I'd have a go at testing this on a localhost install - a few > comments/findings > > > > Adding and activating worked fine > > When clicking Xerte Online below Comments the heading then reads Xerte > Onlines: > > When clicking Add New the editor appears and seems fine in terms of sizing > etc but clicking Insert to add a page doesn't do anything > > Clicking play then gives the following error: > > Does there need to be a USER-FILES folder somewhere? > > > > HTH > > Ron > > > > > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 January 2012 02:39 > To: For Xerte technical developers > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it > > > > What is new > > > > Usage stats > > Training Guidance > > A thank you for choosing Xerte screen > > > > And that's about it. > > > > 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. > > > > 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. > > > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From patrick.lockley at googlemail.com Fri Jan 27 10:48:17 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 10:48:17 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> Message-ID: Ok, brand new xampp brand new database works fine here On Fri, Jan 27, 2012 at 10:37 AM, Pat Lockley wrote: > what does fiddler show? > > My XAMPP is bog standard and it works fine here? > > On Fri, Jan 27, 2012 at 10:32 AM, Ron Mitchell wrote: >> localhost xampp >> >> >> >> The error message on play is The xml could not be formatted, and changes >> have not been saved. Check >> >> >> >> Not able to add any pages - clicking Insert doesn't display the pages menu >> or do anything e.g. no error on clicking insert just nothing happens >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 27 January 2012 10:25 >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> >> >> So on a localhost XAMPP? >> >> >> >> Or localhost MAMP? >> >> >> >> The error box popping up is the xml being corrupted message? >> >> >> >> What pages did you add? >> >> On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell >> wrote: >> >> Ok found where the project folders are being created e.g. >> \wp-content\uploads\xerte-online\14 and they contain data.xml and >> preview.xml but still nothing happens when clicking insert so the xml isn't >> being populated. >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell >> Sent: 27 January 2012 08:40 >> >> >> To: 'For Xerte technical developers' >> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> >> >> Thanks but already tried that - no difference. >> >> Where do the project files get created? e.g. the .xml and media folder >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S >> Sent: 27 January 2012 08:27 >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> >> >> Ron, try input post title first, see what happens? >> >> On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell >> wrote: >> >> Hi Pat >> >> thought I'd have a go at testing this on a localhost install - a few >> comments/findings >> >> >> >> Adding and activating worked fine >> >> When clicking Xerte Online below Comments the heading then reads Xerte >> Onlines: >> >> When clicking Add New the editor appears and seems fine in terms of sizing >> etc but clicking Insert to add a page doesn't do anything >> >> Clicking play then gives the following error: >> >> Does there need to be a USER-FILES folder somewhere? >> >> >> >> HTH >> >> Ron >> >> >> >> >> >> -----Original Message----- >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 27 January 2012 02:39 >> To: For Xerte technical developers >> Subject: [Xerte-dev] Bar sorting out charpad, this is probably it >> >> >> >> What is new >> >> >> >> Usage stats >> >> Training Guidance >> >> A thank you for choosing Xerte screen >> >> >> >> And that's about it. >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> From jennysong.ss at gmail.com Fri Jan 27 10:58:26 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Fri, 27 Jan 2012 18:58:26 +0800 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> Message-ID: It's not a big deal-- WP visibility is not flexible enough to be really useful. I can change my existing Course Lectures(which has its own visibility settings) to be xerte-online post type. Just tried it today, it works mostly fine, but the Lectures belongs to different classromms, their URL structure follows the ..groups/courses/lectures structure. To make query post working, I either do it in iframe or put a Launch button pointing to xerte URL. If I directly use xertepage.php as single post template, xertepage got loaded, but all stuffs inside xertepage are following ..groups/course/lectures structure. Is there anyway I can query post with my current URL structure without using iframe? I see new version coming.. :-) On Fri, Jan 27, 2012 at 6:37 PM, Pat Lockley wrote: > what does fiddler show? > > My XAMPP is bog standard and it works fine here? > > On Fri, Jan 27, 2012 at 10:32 AM, Ron Mitchell > wrote: > > localhost xampp > > > > > > > > The error message on play is The xml could not be formatted, and changes > > have not been saved. Check > > > > > > > > Not able to add any pages - clicking Insert doesn't display the pages > menu > > or do anything e.g. no error on clicking insert just nothing happens > > > > > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > Lockley > > Sent: 27 January 2012 10:25 > > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > > > > > > > So on a localhost XAMPP? > > > > > > > > Or localhost MAMP? > > > > > > > > The error box popping up is the xml being corrupted message? > > > > > > > > What pages did you add? > > > > On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell > > wrote: > > > > Ok found where the project folders are being created e.g. > > \wp-content\uploads\xerte-online\14 and they contain data.xml and > > preview.xml but still nothing happens when clicking insert so the xml > isn't > > being populated. > > > > > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron > Mitchell > > Sent: 27 January 2012 08:40 > > > > > > To: 'For Xerte technical developers' > > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > > > > > > > Thanks but already tried that - no difference. > > > > Where do the project files get created? e.g. the .xml and media folder > > > > > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S > > Sent: 27 January 2012 08:27 > > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > > > > > > > Ron, try input post title first, see what happens? > > > > On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell > > wrote: > > > > Hi Pat > > > > thought I'd have a go at testing this on a localhost install - a few > > comments/findings > > > > > > > > Adding and activating worked fine > > > > When clicking Xerte Online below Comments the heading then reads Xerte > > Onlines: > > > > When clicking Add New the editor appears and seems fine in terms of > sizing > > etc but clicking Insert to add a page doesn't do anything > > > > Clicking play then gives the following error: > > > > Does there need to be a USER-FILES folder somewhere? > > > > > > > > HTH > > > > Ron > > > > > > > > > > > > -----Original Message----- > > From: xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > Lockley > > Sent: 27 January 2012 02:39 > > To: For Xerte technical developers > > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it > > > > > > > > What is new > > > > > > > > Usage stats > > > > Training Guidance > > > > A thank you for choosing Xerte screen > > > > > > > > And that's about it. > > > > > > > > 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. > > > > > > > > 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. > > > > > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Fri Jan 27 11:00:26 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 11:00:26 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> Message-ID: Yeah, I think it needs to be the iframe - or the shortcode. I might make a link shortcode tonight. it was always going to have problems dealing with another system's infastructure, but it does pretty much all I thought it would. On Fri, Jan 27, 2012 at 10:58 AM, Jenny.S wrote: > It's not a big deal-- WP visibility is not flexible enough to be really > useful. > I can change my existing Course Lectures(which has its own visibility > settings) to be xerte-online post type. Just tried it today, it works mostly > fine, but the Lectures belongs to different classromms, their URL structure > follows the ..groups/courses/lectures structure. To make query post working, > I either do it in iframe or put a Launch button pointing to xerte URL. If I > directly use xertepage.php as single post template, xertepage got loaded, > but all stuffs inside xertepage are following ..groups/course/lectures > structure. Is there anyway I can query post with my current URL structure > without using iframe? > I see new version coming.. :-) > > > On Fri, Jan 27, 2012 at 6:37 PM, Pat Lockley > wrote: >> >> what does fiddler show? >> >> My XAMPP is bog standard and it works fine here? >> >> On Fri, Jan 27, 2012 at 10:32 AM, Ron Mitchell >> wrote: >> > localhost xampp >> > >> > >> > >> > The error message on play is The xml could not be formatted, and changes >> > have not been saved. Check >> > >> > >> > >> > Not able to add any pages - clicking Insert doesn't display the pages >> > menu >> > or do anything e.g. no error on clicking insert just nothing happens >> > >> > >> > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> > Lockley >> > Sent: 27 January 2012 10:25 >> > To: For Xerte technical developers >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> > >> > >> > >> > So on a localhost XAMPP? >> > >> > >> > >> > Or localhost MAMP? >> > >> > >> > >> > The error box popping up is the xml being corrupted message? >> > >> > >> > >> > What pages did you add? >> > >> > On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell >> > wrote: >> > >> > Ok found where the project folders are being created e.g. >> > \wp-content\uploads\xerte-online\14 and they contain data.xml and >> > preview.xml but still nothing happens when clicking insert so the xml >> > isn't >> > being populated. >> > >> > >> > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron >> > Mitchell >> > Sent: 27 January 2012 08:40 >> > >> > >> > To: 'For Xerte technical developers' >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> > >> > >> > >> > Thanks but already tried that - no difference. >> > >> > Where do the project files get created? e.g. the .xml and media folder >> > >> > >> > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Jenny.S >> > Sent: 27 January 2012 08:27 >> > To: For Xerte technical developers >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> > >> > >> > >> > Ron, try input post title first, see what happens? >> > >> > On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell >> > wrote: >> > >> > Hi Pat >> > >> > thought I'd have a go at testing this on a localhost install - a few >> > comments/findings >> > >> > >> > >> > Adding and activating worked fine >> > >> > When clicking Xerte Online below Comments the heading then reads Xerte >> > Onlines: >> > >> > When clicking Add New the editor appears and seems fine in terms of >> > sizing >> > etc but clicking Insert to add a page doesn't do anything >> > >> > Clicking play then gives the following error: >> > >> > Does there need to be a USER-FILES folder somewhere? >> > >> > >> > >> > HTH >> > >> > Ron >> > >> > >> > >> > >> > >> > -----Original Message----- >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> > Lockley >> > Sent: 27 January 2012 02:39 >> > To: For Xerte technical developers >> > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it >> > >> > >> > >> > What is new >> > >> > >> > >> > Usage stats >> > >> > Training Guidance >> > >> > A thank you for choosing Xerte screen >> > >> > >> > >> > And that's about it. >> > >> > >> > >> > 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. >> > >> > >> > >> > 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. >> > >> > >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Fri Jan 27 11:08:42 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Fri, 27 Jan 2012 19:08:42 +0800 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> Message-ID: Thanks for comfirming this. I will do it in iframe then. On Fri, Jan 27, 2012 at 7:00 PM, Pat Lockley wrote: > Yeah, I think it needs to be the iframe - or the shortcode. I might > make a link shortcode tonight. > > it was always going to have problems dealing with another system's > infastructure, but it does pretty much all I thought it would. > > On Fri, Jan 27, 2012 at 10:58 AM, Jenny.S wrote: > > It's not a big deal-- WP visibility is not flexible enough to be really > > useful. > > I can change my existing Course Lectures(which has its own visibility > > settings) to be xerte-online post type. Just tried it today, it works > mostly > > fine, but the Lectures belongs to different classromms, their URL > structure > > follows the ..groups/courses/lectures structure. To make query post > working, > > I either do it in iframe or put a Launch button pointing to xerte URL. > If I > > directly use xertepage.php as single post template, xertepage got loaded, > > but all stuffs inside xertepage are following ..groups/course/lectures > > structure. Is there anyway I can query post with my current URL structure > > without using iframe? > > I see new version coming.. :-) > > > > > > On Fri, Jan 27, 2012 at 6:37 PM, Pat Lockley > > wrote: > >> > >> what does fiddler show? > >> > >> My XAMPP is bog standard and it works fine here? > >> > >> On Fri, Jan 27, 2012 at 10:32 AM, Ron Mitchell < > ronm at mitchellmedia.co.uk> > >> wrote: > >> > localhost xampp > >> > > >> > > >> > > >> > The error message on play is The xml could not be formatted, and > changes > >> > have not been saved. Check > >> > > >> > > >> > > >> > Not able to add any pages - clicking Insert doesn't display the pages > >> > menu > >> > or do anything e.g. no error on clicking insert just nothing happens > >> > > >> > > >> > > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > >> > Lockley > >> > Sent: 27 January 2012 10:25 > >> > To: For Xerte technical developers > >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > >> > > >> > > >> > > >> > So on a localhost XAMPP? > >> > > >> > > >> > > >> > Or localhost MAMP? > >> > > >> > > >> > > >> > The error box popping up is the xml being corrupted message? > >> > > >> > > >> > > >> > What pages did you add? > >> > > >> > On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell < > ronm at mitchellmedia.co.uk> > >> > wrote: > >> > > >> > Ok found where the project folders are being created e.g. > >> > \wp-content\uploads\xerte-online\14 and they contain data.xml and > >> > preview.xml but still nothing happens when clicking insert so the xml > >> > isn't > >> > being populated. > >> > > >> > > >> > > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron > >> > Mitchell > >> > Sent: 27 January 2012 08:40 > >> > > >> > > >> > To: 'For Xerte technical developers' > >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > >> > > >> > > >> > > >> > Thanks but already tried that - no difference. > >> > > >> > Where do the project files get created? e.g. the .xml and media folder > >> > > >> > > >> > > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of > Jenny.S > >> > Sent: 27 January 2012 08:27 > >> > To: For Xerte technical developers > >> > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > >> > > >> > > >> > > >> > Ron, try input post title first, see what happens? > >> > > >> > On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell < > ronm at mitchellmedia.co.uk> > >> > wrote: > >> > > >> > Hi Pat > >> > > >> > thought I'd have a go at testing this on a localhost install - a few > >> > comments/findings > >> > > >> > > >> > > >> > Adding and activating worked fine > >> > > >> > When clicking Xerte Online below Comments the heading then reads Xerte > >> > Onlines: > >> > > >> > When clicking Add New the editor appears and seems fine in terms of > >> > sizing > >> > etc but clicking Insert to add a page doesn't do anything > >> > > >> > Clicking play then gives the following error: > >> > > >> > Does there need to be a USER-FILES folder somewhere? > >> > > >> > > >> > > >> > HTH > >> > > >> > Ron > >> > > >> > > >> > > >> > > >> > > >> > -----Original Message----- > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >> > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > >> > Lockley > >> > Sent: 27 January 2012 02:39 > >> > To: For Xerte technical developers > >> > Subject: [Xerte-dev] Bar sorting out charpad, this is probably it > >> > > >> > > >> > > >> > What is new > >> > > >> > > >> > > >> > Usage stats > >> > > >> > Training Guidance > >> > > >> > A thank you for choosing Xerte screen > >> > > >> > > >> > > >> > And that's about it. > >> > > >> > > >> > > >> > 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. > >> > > >> > > >> > > >> > 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. > >> > > >> > > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jan 27 11:09:12 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 27 Jan 2012 11:09:12 -0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> Message-ID: <00c801ccdce4$1c5ddf30$55199d90$@co.uk> I don't really have any need for this and was just testing to help you with feedback. Will re-visit when I have more time so for now will leave for others to test and feedback. But just to add not a new xampp but this was a brand new wordpress install and then obviously new xerte-online plugin activated. I can see a wp_xerteonline_usage table in the wp db but that's it. Should there be another table? Ron -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 January 2012 10:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it Ok, brand new xampp brand new database works fine here On Fri, Jan 27, 2012 at 10:37 AM, Pat Lockley wrote: > what does fiddler show? > > My XAMPP is bog standard and it works fine here? > > On Fri, Jan 27, 2012 at 10:32 AM, Ron Mitchell wrote: >> localhost xampp >> >> >> >> The error message on play is The xml could not be formatted, and >> changes have not been saved. Check >> >> >> >> Not able to add any pages - clicking Insert doesn't display the pages >> menu or do anything e.g. no error on clicking insert just nothing >> happens >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> Lockley >> Sent: 27 January 2012 10:25 >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> >> >> So on a localhost XAMPP? >> >> >> >> Or localhost MAMP? >> >> >> >> The error box popping up is the xml being corrupted message? >> >> >> >> What pages did you add? >> >> On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell >> >> wrote: >> >> Ok found where the project folders are being created e.g. >> \wp-content\uploads\xerte-online\14 and they contain data.xml and >> preview.xml but still nothing happens when clicking insert so the xml >> isn't being populated. >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron >> Mitchell >> Sent: 27 January 2012 08:40 >> >> >> To: 'For Xerte technical developers' >> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> >> >> Thanks but already tried that - no difference. >> >> Where do the project files get created? e.g. the .xml and media >> folder >> >> >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >> Jenny.S >> Sent: 27 January 2012 08:27 >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >> >> >> >> Ron, try input post title first, see what happens? >> >> On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell >> >> wrote: >> >> Hi Pat >> >> thought I'd have a go at testing this on a localhost install - a few >> comments/findings >> >> >> >> Adding and activating worked fine >> >> When clicking Xerte Online below Comments the heading then reads >> Xerte >> Onlines: >> >> When clicking Add New the editor appears and seems fine in terms of >> sizing etc but clicking Insert to add a page doesn't do anything >> >> Clicking play then gives the following error: >> >> Does there need to be a USER-FILES folder somewhere? >> >> >> >> HTH >> >> Ron >> >> >> >> >> >> -----Original Message----- >> From: xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> Lockley >> Sent: 27 January 2012 02:39 >> To: For Xerte technical developers >> Subject: [Xerte-dev] Bar sorting out charpad, this is probably it >> >> >> >> What is new >> >> >> >> Usage stats >> >> Training Guidance >> >> A thank you for choosing Xerte screen >> >> >> >> And that's about it. >> >> >> >> 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. >> >> >> >> 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. >> >> >> >> >> >> 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. >> >> 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. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> >> _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From patrick.lockley at googlemail.com Fri Jan 27 11:12:05 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 27 Jan 2012 11:12:05 +0000 Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it In-Reply-To: <00c801ccdce4$1c5ddf30$55199d90$@co.uk> References: <003301ccdccb$fad44970$f07cdc50$@co.uk> <004801ccdccf$4d8bf2a0$e8a3d7e0$@co.uk> <005401ccdcd0$6a1f0d70$3e5d2850$@co.uk> <00a201ccdcdf$064c8e80$12e5ab80$@co.uk> <00c801ccdce4$1c5ddf30$55199d90$@co.uk> Message-ID: Nope, just one table for tracking usage On Fri, Jan 27, 2012 at 11:09 AM, Ron Mitchell wrote: > I don't really have any need for this and was just testing to help you with > feedback. Will re-visit when I have more time so for now will leave for > others to test and feedback. > > But just to add not a new xampp but this was a brand new wordpress install > and then obviously new xerte-online plugin activated. I can see a > wp_xerteonline_usage table in the wp db but that's it. Should there be > another table? > > Ron > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 January 2012 10:48 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it > > Ok, brand new xampp > brand new database > works fine here > > On Fri, Jan 27, 2012 at 10:37 AM, Pat Lockley > wrote: >> what does fiddler show? >> >> My XAMPP is bog standard and it works fine here? >> >> On Fri, Jan 27, 2012 at 10:32 AM, Ron Mitchell > wrote: >>> localhost xampp >>> >>> >>> >>> The error message on play is The xml could not be formatted, and >>> changes have not been saved. Check >>> >>> >>> >>> Not able to add any pages - clicking Insert doesn't display the pages >>> menu or do anything e.g. no error on clicking insert just nothing >>> happens >>> >>> >>> >>> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> Lockley >>> Sent: 27 January 2012 10:25 >>> To: For Xerte technical developers >>> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >>> >>> >>> >>> So on a localhost XAMPP? >>> >>> >>> >>> Or localhost MAMP? >>> >>> >>> >>> The error box popping up is the xml being corrupted message? >>> >>> >>> >>> What pages did you add? >>> >>> On Fri, Jan 27, 2012 at 8:48 AM, Ron Mitchell >>> >>> wrote: >>> >>> Ok found where the project folders are being created e.g. >>> \wp-content\uploads\xerte-online\14 and they contain data.xml and >>> preview.xml but still nothing happens when clicking insert so the xml >>> isn't being populated. >>> >>> >>> >>> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron >>> Mitchell >>> Sent: 27 January 2012 08:40 >>> >>> >>> To: 'For Xerte technical developers' >>> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >>> >>> >>> >>> Thanks but already tried that - no difference. >>> >>> Where do the project files get created? e.g. the .xml and media >>> folder >>> >>> >>> >>> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >>> Jenny.S >>> Sent: 27 January 2012 08:27 >>> To: For Xerte technical developers >>> Subject: [Xerte-dev] Re: Bar sorting out charpad, this is probably it >>> >>> >>> >>> Ron, try input post title first, see what happens? >>> >>> On Fri, Jan 27, 2012 at 4:16 PM, Ron Mitchell >>> >>> wrote: >>> >>> Hi Pat >>> >>> thought I'd have a go at testing this on a localhost install - a few >>> comments/findings >>> >>> >>> >>> Adding and activating worked fine >>> >>> When clicking Xerte Online below Comments the heading then reads >>> Xerte >>> Onlines: >>> >>> When clicking Add New the editor appears and seems fine in terms of >>> sizing etc but clicking Insert to add a page doesn't do anything >>> >>> Clicking play then gives the following error: >>> >>> Does there need to be a USER-FILES folder somewhere? >>> >>> >>> >>> HTH >>> >>> Ron >>> >>> >>> >>> >>> >>> -----Original Message----- >>> From: xerte-dev-bounces at lists.nottingham.ac.uk >>> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> Lockley >>> Sent: 27 January 2012 02:39 >>> To: For Xerte technical developers >>> Subject: [Xerte-dev] Bar sorting out charpad, this is probably it >>> >>> >>> >>> What is new >>> >>> >>> >>> Usage stats >>> >>> Training Guidance >>> >>> A thank you for choosing Xerte screen >>> >>> >>> >>> And that's about it. >>> >>> >>> >>> 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. >>> >>> >>> >>> 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. >>> >>> >>> >>> >>> >>> 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. >>> >>> 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. >>> >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> 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. >>> >>> 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. >>> >>> >>> >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> 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. >>> >>> 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. >>> >>> >>> >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> 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. >>> >>> 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. >>> >>> > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From reijnders at tor.nl Sat Jan 28 19:15:47 2012 From: reijnders at tor.nl (Tom Reijnders) Date: Sat, 28 Jan 2012 20:15:47 +0100 Subject: [Xerte-dev] Re: Problem with auto numbering of folders when creating individual page wizard projects In-Reply-To: <20120124214227.96136h96e9ubw8tv@server.tor.nl> References: <20120124214227.96136h96e9ubw8tv@server.tor.nl> Message-ID: <4F244963.5000503@tor.nl> This should fix it... Op 24-1-2012 21:42, Tom Reijnders schreef: > Oops, that can't be right. I'll have a look when I am back from the > states. (Possibly earlier if I can get to my machine) > > Citeren Kemp Johnathan : > >> I am using Tom's latest editor.swf in desktop Xerte to test the new >> individual page templates. >> >> I use Pages / Create a new page project. >> >> Then I add pages by selecting pages from the projects page menus e.g. >> Pages >> / Interactivity / Annotated Diagram >> >> The pages are added automatically and a folder is created for each >> page, so >> page one gets a folder page_000, the next page gets a folder page_001 >> etc. >> >> However once the folder number page_010 has been created things go >> wrong. >> >> Every subsequent page is being assigned to the folder page_009 and >> this is >> filling up with the xml and xwd files for each subsequent page. >> >> Kind regards >> >> Johnathan >> >> 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. >> >> 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. >> >> > > > > ---------------------------------------------------------------- > This message was sent using IMP, the Internet Messaging Program. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- A non-text attachment was scrubbed... Name: editor.swf Type: application/x-shockwave-flash Size: 882079 bytes Desc: not available URL: From patrick.lockley at googlemail.com Sat Jan 28 20:40:16 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sat, 28 Jan 2012 20:40:16 +0000 Subject: [Xerte-dev] WordPress plugin Message-ID: https://github.com/patlockley/Wordpress-Xerte-Online is the github http://wordpress.org/extend/plugins/xerte-online/ is the WordPress download http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN topie! From Julian.Tenney at nottingham.ac.uk Sat Jan 28 21:05:05 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Sat, 28 Jan 2012 21:05:05 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Nice one Pat. Good stuff. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [patrick.lockley at googlemail.com] Sent: 28 January 2012 20:40 To: For Xerte technical developers Subject: [Xerte-dev] WordPress plugin https://github.com/patlockley/Wordpress-Xerte-Online is the github http://wordpress.org/extend/plugins/xerte-online/ is the WordPress download http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN topie! _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From patrick.lockley at googlemail.com Sat Jan 28 21:08:36 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sat, 28 Jan 2012 21:08:36 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I'll send an email to the main list and the JISC Mail WordPress list tomorrow, hopefully pick up some bored coders. It's very much 0.1 - as in, I do expect curve balls. Also, forgot to say - I added in a Xerte WordPress RSS feed, so anything you create in WordPress could be served out via RSS (into say Xpert) but also into people's inboxes / facebook / twitter - via the WordPress timed release feature. Who needs moodle. On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney wrote: > Nice one Pat. Good stuff. > > ________________________________________ > From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [patrick.lockley at googlemail.com] > Sent: 28 January 2012 20:40 > To: For Xerte technical developers > Subject: [Xerte-dev] WordPress plugin > > https://github.com/patlockley/Wordpress-Xerte-Online is the github > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress download > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN > > topie! > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > From Julian.Tenney at nottingham.ac.uk Sat Jan 28 21:13:09 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Sat, 28 Jan 2012 21:13:09 +0000 Subject: [Xerte-dev] Northampton resources Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA130909E@EXCHANGE1.ad.nottingham.ac.uk> I just got wind of these in my xerte alerts: http://www.youtube.com/user/learntechnorthampton?feature=watch ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [patrick.lockley at googlemail.com] Sent: 28 January 2012 21:08 To: For Xerte technical developers Subject: [Xerte-dev] Re: WordPress plugin I'll send an email to the main list and the JISC Mail WordPress list tomorrow, hopefully pick up some bored coders. It's very much 0.1 - as in, I do expect curve balls. Also, forgot to say - I added in a Xerte WordPress RSS feed, so anything you create in WordPress could be served out via RSS (into say Xpert) but also into people's inboxes / facebook / twitter - via the WordPress timed release feature. Who needs moodle. On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney wrote: > Nice one Pat. Good stuff. > > ________________________________________ > From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [patrick.lockley at googlemail.com] > Sent: 28 January 2012 20:40 > To: For Xerte technical developers > Subject: [Xerte-dev] WordPress plugin > > https://github.com/patlockley/Wordpress-Xerte-Online is the github > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress download > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN > > topie! > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From patrick.lockley at googlemail.com Sat Jan 28 21:18:30 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sat, 28 Jan 2012 21:18:30 +0000 Subject: [Xerte-dev] Re: Northampton resources In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA130909E@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909E@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: madhackorzskills reveals https://xerte.northampton.ac.uk/xertetoolkits/ On Sat, Jan 28, 2012 at 9:13 PM, Julian Tenney wrote: > I just got wind of these in my xerte alerts: > > http://www.youtube.com/user/learntechnorthampton?feature=watch > > ________________________________________ > From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [patrick.lockley at googlemail.com] > Sent: 28 January 2012 21:08 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: WordPress plugin > > I'll send an email to the main list and the JISC Mail WordPress list > tomorrow, hopefully pick up some bored coders. > > It's very much 0.1 - as in, I do expect curve balls. > > Also, forgot to say - I added in a Xerte WordPress RSS feed, so > anything you create in WordPress could be served out via RSS (into say > Xpert) but also into people's inboxes / facebook / twitter - via the > WordPress timed release feature. Who needs moodle. > > On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > wrote: >> Nice one Pat. Good stuff. >> >> ________________________________________ >> From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [patrick.lockley at googlemail.com] >> Sent: 28 January 2012 20:40 >> To: For Xerte technical developers >> Subject: [Xerte-dev] WordPress plugin >> >> https://github.com/patlockley/Wordpress-Xerte-Online is the github >> http://wordpress.org/extend/plugins/xerte-online/ is the WordPress download >> http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN >> >> topie! >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> 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. >> > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From jennysong.ss at gmail.com Sun Jan 29 00:38:21 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Sun, 29 Jan 2012 08:38:21 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Pat, Congrats on the official release! Some bugs however: 1. I guess you don't really want to change path to WordPress-Xerte-Online. but wordpress people got used to ftp up the whole folder, and they don't know to change the folder name to xerte-online. 2. activat--The plugin generated 8655 characters of unexpected output during activation. If you notice ?headers already sent? messages, problems with syndication feeds or other issues, try deactivating or removing this plugin. 3. language folder is empty. 4. save--file has been corrupted 5. if play without WP publish -- This post is not yet published On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley wrote: > I'll send an email to the main list and the JISC Mail WordPress list > tomorrow, hopefully pick up some bored coders. > > It's very much 0.1 - as in, I do expect curve balls. > > Also, forgot to say - I added in a Xerte WordPress RSS feed, so > anything you create in WordPress could be served out via RSS (into say > Xpert) but also into people's inboxes / facebook / twitter - via the > WordPress timed release feature. Who needs moodle. > > On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > wrote: > > Nice one Pat. Good stuff. > > > > ________________________________________ > > From: xerte-dev-bounces at lists.nottingham.ac.uk [ > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [ > patrick.lockley at googlemail.com] > > Sent: 28 January 2012 20:40 > > To: For Xerte technical developers > > Subject: [Xerte-dev] WordPress plugin > > > > https://github.com/patlockley/Wordpress-Xerte-Online is the github > > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress > download > > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN > > > > topie! > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > 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. > > 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. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Sun Jan 29 00:44:38 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 29 Jan 2012 00:44:38 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: The wordpress-xerte-online is just the github URL. It doesn't change anything for wordpress. On 29 Jan 2012, at 00:38, "Jenny.S" wrote: > Pat, Congrats on the official release! Some bugs however: > I guess you don't really want to change path to WordPress-Xerte-Online. but wordpress people got used to ftp up the whole folder, and they don't know to change the folder name to xerte-online. > activat--The plugin generated 8655 characters of unexpected output during activation. If you notice ?headers already sent? messages, problems with syndication feeds or other issues, try deactivating or removing this plugin. > language folder is empty. > save--file has been corrupted > if play without WP publish -- This post is not yet published > > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley wrote: > I'll send an email to the main list and the JISC Mail WordPress list > tomorrow, hopefully pick up some bored coders. > > It's very much 0.1 - as in, I do expect curve balls. > > Also, forgot to say - I added in a Xerte WordPress RSS feed, so > anything you create in WordPress could be served out via RSS (into say > Xpert) but also into people's inboxes / facebook / twitter - via the > WordPress timed release feature. Who needs moodle. > > On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > wrote: > > Nice one Pat. Good stuff. > > > > ________________________________________ > > From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley [patrick.lockley at googlemail.com] > > Sent: 28 January 2012 20:40 > > To: For Xerte technical developers > > Subject: [Xerte-dev] WordPress plugin > > > > https://github.com/patlockley/Wordpress-Xerte-Online is the github > > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress download > > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN > > > > topie! > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > 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. > > 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. > > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Sun Jan 29 00:55:25 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 29 Jan 2012 00:55:25 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I removed the old plugin Search from my blog for Xerte install the plugin Works fine (the play before publish is a known problem - always has happened - can't fix it really). On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S wrote: > Pat, Congrats on the official release! Some bugs however: > > I guess you don't really want to change path to WordPress-Xerte-Online. but > wordpress people got used to ftp up the whole folder, and they don't know to > change the folder name to xerte-online. > activat--The plugin generated 8655 characters of unexpected output during > activation. If you notice ?headers already sent? messages, problems with > syndication feeds or other issues, try deactivating or removing this plugin. > language folder is empty. > save--file has been corrupted > if play without WP publish -- This post is not yet published > > > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley > wrote: >> >> I'll send an email to the main list and the JISC Mail WordPress list >> tomorrow, hopefully pick up some bored coders. >> >> It's very much 0.1 - as in, I do expect curve balls. >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so >> anything you create in WordPress could be served out via RSS (into say >> Xpert) but also into people's inboxes / facebook / twitter - via the >> WordPress timed release feature. Who needs moodle. >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >> wrote: >> > Nice one Pat. Good stuff. >> > >> > ________________________________________ >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> > [patrick.lockley at googlemail.com] >> > Sent: 28 January 2012 20:40 >> > To: For Xerte technical developers >> > Subject: [Xerte-dev] WordPress plugin >> > >> > https://github.com/patlockley/Wordpress-Xerte-Online is the github >> > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress >> > download >> > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN >> > >> > topie! >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> 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. >> >> 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. > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Sun Jan 29 01:02:43 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Sun, 29 Jan 2012 09:02:43 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: that's interesting. I can play without WP publush with previous versions. On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley wrote: > I removed the old plugin > Search from my blog for Xerte > install the plugin > Works fine (the play before publish is a known problem - always has > happened - can't fix it really). > > On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S wrote: > > Pat, Congrats on the official release! Some bugs however: > > > > I guess you don't really want to change path to WordPress-Xerte-Online. > but > > wordpress people got used to ftp up the whole folder, and they don't > know to > > change the folder name to xerte-online. > > activat--The plugin generated 8655 characters of unexpected output during > > activation. If you notice ?headers already sent? messages, problems with > > syndication feeds or other issues, try deactivating or removing this > plugin. > > language folder is empty. > > save--file has been corrupted > > if play without WP publish -- This post is not yet published > > > > > > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley > > wrote: > >> > >> I'll send an email to the main list and the JISC Mail WordPress list > >> tomorrow, hopefully pick up some bored coders. > >> > >> It's very much 0.1 - as in, I do expect curve balls. > >> > >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so > >> anything you create in WordPress could be served out via RSS (into say > >> Xpert) but also into people's inboxes / facebook / twitter - via the > >> WordPress timed release feature. Who needs moodle. > >> > >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > >> wrote: > >> > Nice one Pat. Good stuff. > >> > > >> > ________________________________________ > >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > >> > [patrick.lockley at googlemail.com] > >> > Sent: 28 January 2012 20:40 > >> > To: For Xerte technical developers > >> > Subject: [Xerte-dev] WordPress plugin > >> > > >> > https://github.com/patlockley/Wordpress-Xerte-Online is the github > >> > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress > >> > download > >> > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN > >> > > >> > topie! > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> 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. > >> > >> 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. > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Sun Jan 29 01:06:17 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 29 Jan 2012 01:06:17 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: if you update it can be played, but either update or publish is needed to make the post id live On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S wrote: > that's interesting. I can play without WP publush with previous versions. > > > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley > wrote: >> >> I removed the old plugin >> Search from my blog for Xerte >> install the plugin >> Works fine (the play before publish is a known problem - always has >> happened - can't fix it really). >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S wrote: >> > Pat, Congrats on the official release! Some bugs however: >> > >> > I guess you don't really want to change path to WordPress-Xerte-Online. >> > but >> > wordpress people got used to ftp up the whole folder, and they don't >> > know to >> > change the folder name to xerte-online. >> > activat--The plugin generated 8655 characters of unexpected output >> > during >> > activation. If you notice ?headers already sent? messages, problems with >> > syndication feeds or other issues, try deactivating or removing this >> > plugin. >> > language folder is empty. >> > save--file has been corrupted >> > if play without WP publish -- This post is not yet published >> > >> > >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >> > wrote: >> >> >> >> I'll send an email to the main list and the JISC Mail WordPress list >> >> tomorrow, hopefully pick up some bored coders. >> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so >> >> anything you create in WordPress could be served out via RSS (into say >> >> Xpert) but also into people's inboxes / facebook / twitter - via the >> >> WordPress timed release feature. Who needs moodle. >> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >> >> wrote: >> >> > Nice one Pat. Good stuff. >> >> > >> >> > ________________________________________ >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> >> > [patrick.lockley at googlemail.com] >> >> > Sent: 28 January 2012 20:40 >> >> > To: For Xerte technical developers >> >> > Subject: [Xerte-dev] WordPress plugin >> >> > >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is the github >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress >> >> > download >> >> > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN >> >> > >> >> > topie! >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> 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. >> >> >> >> 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. >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Sun Jan 29 01:17:47 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Sun, 29 Jan 2012 09:17:47 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: The id reminds me another problem-- If I previously crated a post with name of "new", later I create another post with the same name, WP will make its slug as "new-1" while the title still shows "new". Xerte doesn't capture this, it still goes for "new" On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley wrote: > if you update it can be played, but either update or publish is needed > to make the post id live > > On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S wrote: > > that's interesting. I can play without WP publush with previous versions. > > > > > > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley > > wrote: > >> > >> I removed the old plugin > >> Search from my blog for Xerte > >> install the plugin > >> Works fine (the play before publish is a known problem - always has > >> happened - can't fix it really). > >> > >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S > wrote: > >> > Pat, Congrats on the official release! Some bugs however: > >> > > >> > I guess you don't really want to change path to > WordPress-Xerte-Online. > >> > but > >> > wordpress people got used to ftp up the whole folder, and they don't > >> > know to > >> > change the folder name to xerte-online. > >> > activat--The plugin generated 8655 characters of unexpected output > >> > during > >> > activation. If you notice ?headers already sent? messages, problems > with > >> > syndication feeds or other issues, try deactivating or removing this > >> > plugin. > >> > language folder is empty. > >> > save--file has been corrupted > >> > if play without WP publish -- This post is not yet published > >> > > >> > > >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley > >> > wrote: > >> >> > >> >> I'll send an email to the main list and the JISC Mail WordPress list > >> >> tomorrow, hopefully pick up some bored coders. > >> >> > >> >> It's very much 0.1 - as in, I do expect curve balls. > >> >> > >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so > >> >> anything you create in WordPress could be served out via RSS (into > say > >> >> Xpert) but also into people's inboxes / facebook / twitter - via the > >> >> WordPress timed release feature. Who needs moodle. > >> >> > >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > >> >> wrote: > >> >> > Nice one Pat. Good stuff. > >> >> > > >> >> > ________________________________________ > >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > Lockley > >> >> > [patrick.lockley at googlemail.com] > >> >> > Sent: 28 January 2012 20:40 > >> >> > To: For Xerte technical developers > >> >> > Subject: [Xerte-dev] WordPress plugin > >> >> > > >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is the github > >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress > >> >> > download > >> >> > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN > >> >> > > >> >> > topie! > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> 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. > >> >> > >> >> 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. > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Sun Jan 29 01:28:16 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 29 Jan 2012 01:28:16 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: doesn't happen here - three posts all called test, all play ok On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S wrote: > The id reminds me another problem-- If I previously crated a post with name > of "new", later I create another post with the same name, WP will make its > slug as "new-1" while the title still shows "new". Xerte doesn't capture > this, it still goes for "new" > > > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley > wrote: >> >> if you update it can be played, but either update or publish is needed >> to make the post id live >> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S wrote: >> > that's interesting. I can play without WP publush with previous >> > versions. >> > >> > >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley >> > wrote: >> >> >> >> I removed the old plugin >> >> Search from my blog for Xerte >> >> install the plugin >> >> Works fine (the play before publish is a known problem - always has >> >> happened - can't fix it really). >> >> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S >> >> wrote: >> >> > Pat, Congrats on the official release! Some bugs however: >> >> > >> >> > I guess you don't really want to change path to >> >> > WordPress-Xerte-Online. >> >> > but >> >> > wordpress people got used to ftp up the whole folder, and they don't >> >> > know to >> >> > change the folder name to xerte-online. >> >> > activat--The plugin generated 8655 characters of unexpected output >> >> > during >> >> > activation. If you notice ?headers already sent? messages, problems >> >> > with >> >> > syndication feeds or other issues, try deactivating or removing this >> >> > plugin. >> >> > language folder is empty. >> >> > save--file has been corrupted >> >> > if play without WP publish -- This post is not yet published >> >> > >> >> > >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> I'll send an email to the main list and the JISC Mail WordPress list >> >> >> tomorrow, hopefully pick up some bored coders. >> >> >> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >> >> >> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so >> >> >> anything you create in WordPress could be served out via RSS (into >> >> >> say >> >> >> Xpert) but also into people's inboxes / facebook / twitter - via the >> >> >> WordPress timed release feature. Who needs moodle. >> >> >> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >> >> >> wrote: >> >> >> > Nice one Pat. Good stuff. >> >> >> > >> >> >> > ________________________________________ >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> >> >> > Lockley >> >> >> > [patrick.lockley at googlemail.com] >> >> >> > Sent: 28 January 2012 20:40 >> >> >> > To: For Xerte technical developers >> >> >> > Subject: [Xerte-dev] WordPress plugin >> >> >> > >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is the github >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the WordPress >> >> >> > download >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the WordPress SVN >> >> >> > >> >> >> > topie! >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> 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. >> >> >> >> >> >> 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. >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Sun Jan 29 02:04:35 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Sun, 29 Jan 2012 10:04:35 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: just tested, now it's fine. probably because I previously can play without publish. On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley wrote: > doesn't happen here - three posts all called test, all play ok > > On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S wrote: > > The id reminds me another problem-- If I previously crated a post with > name > > of "new", later I create another post with the same name, WP will make > its > > slug as "new-1" while the title still shows "new". Xerte doesn't capture > > this, it still goes for "new" > > > > > > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley > > wrote: > >> > >> if you update it can be played, but either update or publish is needed > >> to make the post id live > >> > >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S > wrote: > >> > that's interesting. I can play without WP publush with previous > >> > versions. > >> > > >> > > >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley > >> > wrote: > >> >> > >> >> I removed the old plugin > >> >> Search from my blog for Xerte > >> >> install the plugin > >> >> Works fine (the play before publish is a known problem - always has > >> >> happened - can't fix it really). > >> >> > >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S > >> >> wrote: > >> >> > Pat, Congrats on the official release! Some bugs however: > >> >> > > >> >> > I guess you don't really want to change path to > >> >> > WordPress-Xerte-Online. > >> >> > but > >> >> > wordpress people got used to ftp up the whole folder, and they > don't > >> >> > know to > >> >> > change the folder name to xerte-online. > >> >> > activat--The plugin generated 8655 characters of unexpected output > >> >> > during > >> >> > activation. If you notice ?headers already sent? messages, problems > >> >> > with > >> >> > syndication feeds or other issues, try deactivating or removing > this > >> >> > plugin. > >> >> > language folder is empty. > >> >> > save--file has been corrupted > >> >> > if play without WP publish -- This post is not yet published > >> >> > > >> >> > > >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley > >> >> > wrote: > >> >> >> > >> >> >> I'll send an email to the main list and the JISC Mail WordPress > list > >> >> >> tomorrow, hopefully pick up some bored coders. > >> >> >> > >> >> >> It's very much 0.1 - as in, I do expect curve balls. > >> >> >> > >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so > >> >> >> anything you create in WordPress could be served out via RSS (into > >> >> >> say > >> >> >> Xpert) but also into people's inboxes / facebook / twitter - via > the > >> >> >> WordPress timed release feature. Who needs moodle. > >> >> >> > >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > >> >> >> wrote: > >> >> >> > Nice one Pat. Good stuff. > >> >> >> > > >> >> >> > ________________________________________ > >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > >> >> >> > Lockley > >> >> >> > [patrick.lockley at googlemail.com] > >> >> >> > Sent: 28 January 2012 20:40 > >> >> >> > To: For Xerte technical developers > >> >> >> > Subject: [Xerte-dev] WordPress plugin > >> >> >> > > >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is the > github > >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the > WordPress > >> >> >> > download > >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the WordPress > SVN > >> >> >> > > >> >> >> > topie! > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > _______________________________________________ > >> >> >> > Xerte-dev mailing list > >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > 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. > >> >> >> > > >> >> >> > >> >> >> _______________________________________________ > >> >> >> Xerte-dev mailing list > >> >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> >> 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. > >> >> >> > >> >> >> 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. > >> >> > > >> >> > > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > _______________________________________________ > >> >> > Xerte-dev mailing list > >> >> > Xerte-dev at lists.nottingham.ac.uk > >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> >> > > >> >> > 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. > >> >> > > >> >> > 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. > >> >> > > >> >> > > >> >> > >> >> _______________________________________________ > >> >> Xerte-dev mailing list > >> >> Xerte-dev at lists.nottingham.ac.uk > >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > 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. > >> > > >> > 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. > >> > > >> > > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Sun Jan 29 22:35:47 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sun, 29 Jan 2012 22:35:47 +0000 Subject: [Xerte-dev] Re: Problem with auto numbering of folders when creating individual page wizard projects In-Reply-To: <4F244963.5000503@tor.nl> References: <20120124214227.96136h96e9ubw8tv@server.tor.nl> <4F244963.5000503@tor.nl> Message-ID: I've just run a quick test and I can confirm the page folders are now creating correctly past 10 pages. Thanks for your help once again, I am progressing with the preparation of the models and xwd files ready for translation, and updating the svn entries in the pageWizards section as I go. Kind regards Johnathan On 28 January 2012 19:15, Tom Reijnders wrote: > This should fix it... > > Op 24-1-2012 21:42, Tom Reijnders schreef: > > Oops, that can't be right. I'll have a look when I am back from the >> states. (Possibly earlier if I can get to my machine) >> >> Citeren Kemp Johnathan : >> >> I am using Tom's latest editor.swf in desktop Xerte to test the new >>> individual page templates. >>> >>> I use Pages / Create a new page project. >>> >>> Then I add pages by selecting pages from the projects page menus e.g. >>> Pages >>> / Interactivity / Annotated Diagram >>> >>> The pages are added automatically and a folder is created for each page, >>> so >>> page one gets a folder page_000, the next page gets a folder page_001 >>> etc. >>> >>> However once the folder number page_010 has been created things go wrong. >>> >>> Every subsequent page is being assigned to the folder page_009 and this >>> is >>> filling up with the xml and xwd files for each subsequent page. >>> >>> Kind regards >>> >>> Johnathan >>> >>> 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. >>> >>> 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. >>> >>> >>> >> >> >> ---------------------------------------------------------------- >> This message was sent using IMP, the Internet Messaging Program. >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jennysong.ss at gmail.com Mon Jan 30 10:28:54 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Mon, 30 Jan 2012 18:28:54 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Pad, current version upload image preview seems missed out a "/" between xerte-online and media. So the Preview can't find image. I tried a print_r($_POST) , can see this: [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S wrote: > just tested, now it's fine. probably because I previously can play without > publish. > > > On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> doesn't happen here - three posts all called test, all play ok >> >> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S wrote: >> > The id reminds me another problem-- If I previously crated a post with >> name >> > of "new", later I create another post with the same name, WP will make >> its >> > slug as "new-1" while the title still shows "new". Xerte doesn't capture >> > this, it still goes for "new" >> > >> > >> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley >> > wrote: >> >> >> >> if you update it can be played, but either update or publish is needed >> >> to make the post id live >> >> >> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S >> wrote: >> >> > that's interesting. I can play without WP publush with previous >> >> > versions. >> >> > >> >> > >> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley >> >> > wrote: >> >> >> >> >> >> I removed the old plugin >> >> >> Search from my blog for Xerte >> >> >> install the plugin >> >> >> Works fine (the play before publish is a known problem - always has >> >> >> happened - can't fix it really). >> >> >> >> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S >> >> >> wrote: >> >> >> > Pat, Congrats on the official release! Some bugs however: >> >> >> > >> >> >> > I guess you don't really want to change path to >> >> >> > WordPress-Xerte-Online. >> >> >> > but >> >> >> > wordpress people got used to ftp up the whole folder, and they >> don't >> >> >> > know to >> >> >> > change the folder name to xerte-online. >> >> >> > activat--The plugin generated 8655 characters of unexpected output >> >> >> > during >> >> >> > activation. If you notice ?headers already sent? messages, >> problems >> >> >> > with >> >> >> > syndication feeds or other issues, try deactivating or removing >> this >> >> >> > plugin. >> >> >> > language folder is empty. >> >> >> > save--file has been corrupted >> >> >> > if play without WP publish -- This post is not yet published >> >> >> > >> >> >> > >> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >> >> >> > wrote: >> >> >> >> >> >> >> >> I'll send an email to the main list and the JISC Mail WordPress >> list >> >> >> >> tomorrow, hopefully pick up some bored coders. >> >> >> >> >> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >> >> >> >> >> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so >> >> >> >> anything you create in WordPress could be served out via RSS >> (into >> >> >> >> say >> >> >> >> Xpert) but also into people's inboxes / facebook / twitter - via >> the >> >> >> >> WordPress timed release feature. Who needs moodle. >> >> >> >> >> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >> >> >> >> wrote: >> >> >> >> > Nice one Pat. Good stuff. >> >> >> >> > >> >> >> >> > ________________________________________ >> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >> >> >> >> > Lockley >> >> >> >> > [patrick.lockley at googlemail.com] >> >> >> >> > Sent: 28 January 2012 20:40 >> >> >> >> > To: For Xerte technical developers >> >> >> >> > Subject: [Xerte-dev] WordPress plugin >> >> >> >> > >> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is the >> github >> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the >> WordPress >> >> >> >> > download >> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the >> WordPress SVN >> >> >> >> > >> >> >> >> > topie! >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > Xerte-dev mailing list >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > _______________________________________________ >> >> >> >> > Xerte-dev mailing list >> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> > 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. >> >> >> >> > >> >> >> >> >> >> >> >> _______________________________________________ >> >> >> >> Xerte-dev mailing list >> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> 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. >> >> >> >> >> >> >> >> 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. >> >> >> > >> >> >> > >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> > _______________________________________________ >> >> >> > Xerte-dev mailing list >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > 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. >> >> >> > >> >> >> > >> >> >> >> >> >> _______________________________________________ >> >> >> Xerte-dev mailing list >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> > _______________________________________________ >> >> > Xerte-dev mailing list >> >> > Xerte-dev at lists.nottingham.ac.uk >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > >> >> > 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. >> >> > >> >> > 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. >> >> > >> >> > >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Mon Jan 30 10:31:10 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 30 Jan 2012 10:31:10 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: there is also no post ID for that LO? Is this off a brand new LO? It definitely uploads on my localhost On Mon, Jan 30, 2012 at 10:28 AM, Jenny.S wrote: > Pad, current version upload image preview seems missed out a "/" between > xerte-online and media. So the Preview can't find image. I tried a > print_r($_POST) , can see this: > > [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png > > > > On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S wrote: >> >> just tested, now it's fine. probably because I previously can play without >> publish. >> >> >> On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley >> wrote: >>> >>> doesn't happen here - three posts all called test, all play ok >>> >>> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S wrote: >>> > The id reminds me another problem-- If I previously crated a post with >>> > name >>> > of "new", later I create another post with the same name, WP will make >>> > its >>> > slug as "new-1" while the title still shows "new". Xerte doesn't >>> > capture >>> > this, it still goes for "new" >>> > >>> > >>> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley >>> > wrote: >>> >> >>> >> if you update it can be played, but either update or publish is needed >>> >> to make the post id live >>> >> >>> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S >>> >> wrote: >>> >> > that's interesting. I can play without WP publush with previous >>> >> > versions. >>> >> > >>> >> > >>> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley >>> >> > wrote: >>> >> >> >>> >> >> I removed the old plugin >>> >> >> Search from my blog for Xerte >>> >> >> install the plugin >>> >> >> Works fine (the play before publish is a known problem - always has >>> >> >> happened - can't fix it really). >>> >> >> >>> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S >>> >> >> wrote: >>> >> >> > Pat, Congrats on the official release! Some bugs however: >>> >> >> > >>> >> >> > I guess you don't really want to change path to >>> >> >> > WordPress-Xerte-Online. >>> >> >> > but >>> >> >> > wordpress people got used to ftp up the whole folder, and they >>> >> >> > don't >>> >> >> > know to >>> >> >> > change the folder name to xerte-online. >>> >> >> > activat--The plugin generated 8655 characters of unexpected >>> >> >> > output >>> >> >> > during >>> >> >> > activation. If you notice ?headers already sent? messages, >>> >> >> > problems >>> >> >> > with >>> >> >> > syndication feeds or other issues, try deactivating or removing >>> >> >> > this >>> >> >> > plugin. >>> >> >> > language folder is empty. >>> >> >> > save--file has been corrupted >>> >> >> > if play without WP publish -- This post is not yet published >>> >> >> > >>> >> >> > >>> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >>> >> >> > wrote: >>> >> >> >> >>> >> >> >> I'll send an email to the main list and the JISC Mail WordPress >>> >> >> >> list >>> >> >> >> tomorrow, hopefully pick up some bored coders. >>> >> >> >> >>> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >>> >> >> >> >>> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, so >>> >> >> >> anything you create in WordPress could be served out via RSS >>> >> >> >> (into >>> >> >> >> say >>> >> >> >> Xpert) but also into people's inboxes / facebook / twitter - via >>> >> >> >> the >>> >> >> >> WordPress timed release feature. Who needs moodle. >>> >> >> >> >>> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >>> >> >> >> wrote: >>> >> >> >> > Nice one Pat. Good stuff. >>> >> >> >> > >>> >> >> >> > ________________________________________ >>> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >>> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat >>> >> >> >> > Lockley >>> >> >> >> > [patrick.lockley at googlemail.com] >>> >> >> >> > Sent: 28 January 2012 20:40 >>> >> >> >> > To: For Xerte technical developers >>> >> >> >> > Subject: [Xerte-dev] WordPress plugin >>> >> >> >> > >>> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is the >>> >> >> >> > github >>> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the >>> >> >> >> > WordPress >>> >> >> >> > download >>> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the WordPress >>> >> >> >> > SVN >>> >> >> >> > >>> >> >> >> > topie! >>> >> >> >> > >>> >> >> >> > _______________________________________________ >>> >> >> >> > Xerte-dev mailing list >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > _______________________________________________ >>> >> >> >> > Xerte-dev mailing list >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> > 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. >>> >> >> >> > >>> >> >> >> >>> >> >> >> _______________________________________________ >>> >> >> >> Xerte-dev mailing list >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> >> 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. >>> >> >> >> >>> >> >> >> 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. >>> >> >> > >>> >> >> > >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> > _______________________________________________ >>> >> >> > Xerte-dev mailing list >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > 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. >>> >> >> > >>> >> >> > >>> >> >> >>> >> >> _______________________________________________ >>> >> >> Xerte-dev mailing list >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> > _______________________________________________ >>> >> > Xerte-dev mailing list >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> > >>> >> > 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. >>> >> > >>> >> > 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. >>> >> > >>> >> > >>> >> >>> >> _______________________________________________ >>> >> Xerte-dev mailing list >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> > _______________________________________________ >>> > Xerte-dev mailing list >>> > Xerte-dev at lists.nottingham.ac.uk >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Mon Jan 30 10:34:25 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Mon, 30 Jan 2012 18:34:25 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I can see the image is uploaded in wp-content/xerte-online/id/media/ If go to view the post, can see the image is in the content. Just can't preview in Editor On Mon, Jan 30, 2012 at 6:31 PM, Pat Lockley wrote: > there is also no post ID for that LO? > > Is this off a brand new LO? > > It definitely uploads on my localhost > > On Mon, Jan 30, 2012 at 10:28 AM, Jenny.S wrote: > > Pad, current version upload image preview seems missed out a "/" between > > xerte-online and media. So the Preview can't find image. I tried a > > print_r($_POST) , can see this: > > > > [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png > > > > > > > > On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S > wrote: > >> > >> just tested, now it's fine. probably because I previously can play > without > >> publish. > >> > >> > >> On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley > >> wrote: > >>> > >>> doesn't happen here - three posts all called test, all play ok > >>> > >>> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S > wrote: > >>> > The id reminds me another problem-- If I previously crated a post > with > >>> > name > >>> > of "new", later I create another post with the same name, WP will > make > >>> > its > >>> > slug as "new-1" while the title still shows "new". Xerte doesn't > >>> > capture > >>> > this, it still goes for "new" > >>> > > >>> > > >>> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley > >>> > wrote: > >>> >> > >>> >> if you update it can be played, but either update or publish is > needed > >>> >> to make the post id live > >>> >> > >>> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S > >>> >> wrote: > >>> >> > that's interesting. I can play without WP publush with previous > >>> >> > versions. > >>> >> > > >>> >> > > >>> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley > >>> >> > wrote: > >>> >> >> > >>> >> >> I removed the old plugin > >>> >> >> Search from my blog for Xerte > >>> >> >> install the plugin > >>> >> >> Works fine (the play before publish is a known problem - always > has > >>> >> >> happened - can't fix it really). > >>> >> >> > >>> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S < > jennysong.ss at gmail.com> > >>> >> >> wrote: > >>> >> >> > Pat, Congrats on the official release! Some bugs however: > >>> >> >> > > >>> >> >> > I guess you don't really want to change path to > >>> >> >> > WordPress-Xerte-Online. > >>> >> >> > but > >>> >> >> > wordpress people got used to ftp up the whole folder, and they > >>> >> >> > don't > >>> >> >> > know to > >>> >> >> > change the folder name to xerte-online. > >>> >> >> > activat--The plugin generated 8655 characters of unexpected > >>> >> >> > output > >>> >> >> > during > >>> >> >> > activation. If you notice ?headers already sent? messages, > >>> >> >> > problems > >>> >> >> > with > >>> >> >> > syndication feeds or other issues, try deactivating or removing > >>> >> >> > this > >>> >> >> > plugin. > >>> >> >> > language folder is empty. > >>> >> >> > save--file has been corrupted > >>> >> >> > if play without WP publish -- This post is not yet published > >>> >> >> > > >>> >> >> > > >>> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley > >>> >> >> > wrote: > >>> >> >> >> > >>> >> >> >> I'll send an email to the main list and the JISC Mail > WordPress > >>> >> >> >> list > >>> >> >> >> tomorrow, hopefully pick up some bored coders. > >>> >> >> >> > >>> >> >> >> It's very much 0.1 - as in, I do expect curve balls. > >>> >> >> >> > >>> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, > so > >>> >> >> >> anything you create in WordPress could be served out via RSS > >>> >> >> >> (into > >>> >> >> >> say > >>> >> >> >> Xpert) but also into people's inboxes / facebook / twitter - > via > >>> >> >> >> the > >>> >> >> >> WordPress timed release feature. Who needs moodle. > >>> >> >> >> > >>> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > >>> >> >> >> wrote: > >>> >> >> >> > Nice one Pat. Good stuff. > >>> >> >> >> > > >>> >> >> >> > ________________________________________ > >>> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >>> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat > >>> >> >> >> > Lockley > >>> >> >> >> > [patrick.lockley at googlemail.com] > >>> >> >> >> > Sent: 28 January 2012 20:40 > >>> >> >> >> > To: For Xerte technical developers > >>> >> >> >> > Subject: [Xerte-dev] WordPress plugin > >>> >> >> >> > > >>> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is the > >>> >> >> >> > github > >>> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the > >>> >> >> >> > WordPress > >>> >> >> >> > download > >>> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the > WordPress > >>> >> >> >> > SVN > >>> >> >> >> > > >>> >> >> >> > topie! > >>> >> >> >> > > >>> >> >> >> > _______________________________________________ > >>> >> >> >> > Xerte-dev mailing list > >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> > _______________________________________________ > >>> >> >> >> > Xerte-dev mailing list > >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> > > >>> >> >> >> > 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. > >>> >> >> >> > > >>> >> >> >> > 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. > >>> >> >> >> > > >>> >> >> >> > >>> >> >> >> _______________________________________________ > >>> >> >> >> Xerte-dev mailing list > >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> >> 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. > >>> >> >> >> > >>> >> >> >> 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. > >>> >> >> > > >>> >> >> > > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > > >>> >> >> > _______________________________________________ > >>> >> >> > Xerte-dev mailing list > >>> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > 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. > >>> >> >> > > >>> >> >> > > >>> >> >> > >>> >> >> _______________________________________________ > >>> >> >> Xerte-dev mailing list > >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> > > >>> >> > > >>> >> > > >>> >> > 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. > >>> >> > > >>> >> > 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. > >>> >> > > >>> >> > > >>> >> > _______________________________________________ > >>> >> > Xerte-dev mailing list > >>> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> > > >>> >> > 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. > >>> >> > > >>> >> > 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. > >>> >> > > >>> >> > > >>> >> > >>> >> _______________________________________________ > >>> >> Xerte-dev mailing list > >>> >> Xerte-dev at lists.nottingham.ac.uk > >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> > > >>> > > >>> > > >>> > 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. > >>> > > >>> > 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. > >>> > > >>> > > >>> > _______________________________________________ > >>> > Xerte-dev mailing list > >>> > Xerte-dev at lists.nottingham.ac.uk > >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> > > >>> > 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. > >>> > > >>> > 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. > >>> > > >>> > > >>> > >>> _______________________________________________ > >>> Xerte-dev mailing list > >>> Xerte-dev at lists.nottingham.ac.uk > >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jennysong.ss at gmail.com Mon Jan 30 10:35:12 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Mon, 30 Jan 2012 18:35:12 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: yes, this is brand new from github On Mon, Jan 30, 2012 at 6:34 PM, Jenny.S wrote: > I can see the image is uploaded in wp-content/xerte-online/id/media/ > If go to view the post, can see the image is in the content. > Just can't preview in Editor > > > On Mon, Jan 30, 2012 at 6:31 PM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> there is also no post ID for that LO? >> >> Is this off a brand new LO? >> >> It definitely uploads on my localhost >> >> On Mon, Jan 30, 2012 at 10:28 AM, Jenny.S wrote: >> > Pad, current version upload image preview seems missed out a "/" between >> > xerte-online and media. So the Preview can't find image. I tried a >> > print_r($_POST) , can see this: >> > >> > [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png >> > >> > >> > >> > On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S >> wrote: >> >> >> >> just tested, now it's fine. probably because I previously can play >> without >> >> publish. >> >> >> >> >> >> On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley >> >> wrote: >> >>> >> >>> doesn't happen here - three posts all called test, all play ok >> >>> >> >>> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S >> wrote: >> >>> > The id reminds me another problem-- If I previously crated a post >> with >> >>> > name >> >>> > of "new", later I create another post with the same name, WP will >> make >> >>> > its >> >>> > slug as "new-1" while the title still shows "new". Xerte doesn't >> >>> > capture >> >>> > this, it still goes for "new" >> >>> > >> >>> > >> >>> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley >> >>> > wrote: >> >>> >> >> >>> >> if you update it can be played, but either update or publish is >> needed >> >>> >> to make the post id live >> >>> >> >> >>> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S >> >>> >> wrote: >> >>> >> > that's interesting. I can play without WP publush with previous >> >>> >> > versions. >> >>> >> > >> >>> >> > >> >>> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley >> >>> >> > wrote: >> >>> >> >> >> >>> >> >> I removed the old plugin >> >>> >> >> Search from my blog for Xerte >> >>> >> >> install the plugin >> >>> >> >> Works fine (the play before publish is a known problem - always >> has >> >>> >> >> happened - can't fix it really). >> >>> >> >> >> >>> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S < >> jennysong.ss at gmail.com> >> >>> >> >> wrote: >> >>> >> >> > Pat, Congrats on the official release! Some bugs however: >> >>> >> >> > >> >>> >> >> > I guess you don't really want to change path to >> >>> >> >> > WordPress-Xerte-Online. >> >>> >> >> > but >> >>> >> >> > wordpress people got used to ftp up the whole folder, and they >> >>> >> >> > don't >> >>> >> >> > know to >> >>> >> >> > change the folder name to xerte-online. >> >>> >> >> > activat--The plugin generated 8655 characters of unexpected >> >>> >> >> > output >> >>> >> >> > during >> >>> >> >> > activation. If you notice ?headers already sent? messages, >> >>> >> >> > problems >> >>> >> >> > with >> >>> >> >> > syndication feeds or other issues, try deactivating or >> removing >> >>> >> >> > this >> >>> >> >> > plugin. >> >>> >> >> > language folder is empty. >> >>> >> >> > save--file has been corrupted >> >>> >> >> > if play without WP publish -- This post is not yet published >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >> >>> >> >> > wrote: >> >>> >> >> >> >> >>> >> >> >> I'll send an email to the main list and the JISC Mail >> WordPress >> >>> >> >> >> list >> >>> >> >> >> tomorrow, hopefully pick up some bored coders. >> >>> >> >> >> >> >>> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >> >>> >> >> >> >> >>> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, >> so >> >>> >> >> >> anything you create in WordPress could be served out via RSS >> >>> >> >> >> (into >> >>> >> >> >> say >> >>> >> >> >> Xpert) but also into people's inboxes / facebook / twitter - >> via >> >>> >> >> >> the >> >>> >> >> >> WordPress timed release feature. Who needs moodle. >> >>> >> >> >> >> >>> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >> >>> >> >> >> wrote: >> >>> >> >> >> > Nice one Pat. Good stuff. >> >>> >> >> >> > >> >>> >> >> >> > ________________________________________ >> >>> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> >>> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >> Pat >> >>> >> >> >> > Lockley >> >>> >> >> >> > [patrick.lockley at googlemail.com] >> >>> >> >> >> > Sent: 28 January 2012 20:40 >> >>> >> >> >> > To: For Xerte technical developers >> >>> >> >> >> > Subject: [Xerte-dev] WordPress plugin >> >>> >> >> >> > >> >>> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is >> the >> >>> >> >> >> > github >> >>> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the >> >>> >> >> >> > WordPress >> >>> >> >> >> > download >> >>> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the >> WordPress >> >>> >> >> >> > SVN >> >>> >> >> >> > >> >>> >> >> >> > topie! >> >>> >> >> >> > >> >>> >> >> >> > _______________________________________________ >> >>> >> >> >> > Xerte-dev mailing list >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> > _______________________________________________ >> >>> >> >> >> > Xerte-dev mailing list >> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> > >> >>> >> >> >> > 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. >> >>> >> >> >> > >> >>> >> >> >> > 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. >> >>> >> >> >> > >> >>> >> >> >> >> >>> >> >> >> _______________________________________________ >> >>> >> >> >> Xerte-dev mailing list >> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >> 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. >> >>> >> >> >> >> >>> >> >> >> 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. >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > >> >>> >> >> > _______________________________________________ >> >>> >> >> > Xerte-dev mailing list >> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > 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. >> >>> >> >> > >> >>> >> >> > >> >>> >> >> >> >>> >> >> _______________________________________________ >> >>> >> >> Xerte-dev mailing list >> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> > >> >>> >> > >> >>> >> > >> >>> >> > 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. >> >>> >> > >> >>> >> > 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. >> >>> >> > >> >>> >> > >> >>> >> > _______________________________________________ >> >>> >> > Xerte-dev mailing list >> >>> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> > >> >>> >> > 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. >> >>> >> > >> >>> >> > 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. >> >>> >> > >> >>> >> > >> >>> >> >> >>> >> _______________________________________________ >> >>> >> Xerte-dev mailing list >> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> > >> >>> > >> >>> > >> >>> > 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. >> >>> > >> >>> > 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. >> >>> > >> >>> > >> >>> > _______________________________________________ >> >>> > Xerte-dev mailing list >> >>> > Xerte-dev at lists.nottingham.ac.uk >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> > >> >>> > 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. >> >>> > >> >>> > 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. >> >>> > >> >>> > >> >>> >> >>> _______________________________________________ >> >>> Xerte-dev mailing list >> >>> Xerte-dev at lists.nottingham.ac.uk >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Mon Jan 30 10:39:28 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 30 Jan 2012 10:39:28 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Ok, I just installed the version from WordPress, and uploaded an image The first one failed as it had some crazy character in, but the second one with normal A-Za-z letters worked fine. I can preview it in the editor, and it appears when I play the piece. This was a fresh install on my linix server, which had no installs before. On Mon, Jan 30, 2012 at 10:35 AM, Jenny.S wrote: > yes, this is brand new from github > > > On Mon, Jan 30, 2012 at 6:34 PM, Jenny.S wrote: >> >> I can see the image is uploaded in wp-content/xerte-online/id/media/ >> If go to view the post, can see the image is in the content. >> Just can't preview in Editor >> >> >> On Mon, Jan 30, 2012 at 6:31 PM, Pat Lockley >> wrote: >>> >>> there is also no post ID for that LO? >>> >>> Is this off a brand new LO? >>> >>> It definitely uploads on my localhost >>> >>> On Mon, Jan 30, 2012 at 10:28 AM, Jenny.S wrote: >>> > Pad, current version upload image preview seems missed out a "/" >>> > between >>> > xerte-online and media. So the Preview can't find image. I tried a >>> > print_r($_POST) , can see this: >>> > >>> > [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png >>> > >>> > >>> > >>> > On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S >>> > wrote: >>> >> >>> >> just tested, now it's fine. probably because I previously can play >>> >> without >>> >> publish. >>> >> >>> >> >>> >> On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley >>> >> wrote: >>> >>> >>> >>> doesn't happen here - three posts all called test, all play ok >>> >>> >>> >>> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S >>> >>> wrote: >>> >>> > The id reminds me another problem-- If I previously crated a post >>> >>> > with >>> >>> > name >>> >>> > of "new", later I create another post with the same name, WP will >>> >>> > make >>> >>> > its >>> >>> > slug as "new-1" while the title still shows "new". Xerte doesn't >>> >>> > capture >>> >>> > this, it still goes for "new" >>> >>> > >>> >>> > >>> >>> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley >>> >>> > wrote: >>> >>> >> >>> >>> >> if you update it can be played, but either update or publish is >>> >>> >> needed >>> >>> >> to make the post id live >>> >>> >> >>> >>> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S >>> >>> >> wrote: >>> >>> >> > that's interesting. I can play without WP publush with previous >>> >>> >> > versions. >>> >>> >> > >>> >>> >> > >>> >>> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley >>> >>> >> > wrote: >>> >>> >> >> >>> >>> >> >> I removed the old plugin >>> >>> >> >> Search from my blog for Xerte >>> >>> >> >> install the plugin >>> >>> >> >> Works fine (the play before publish is a known problem - always >>> >>> >> >> has >>> >>> >> >> happened - can't fix it really). >>> >>> >> >> >>> >>> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S >>> >>> >> >> >>> >>> >> >> wrote: >>> >>> >> >> > Pat, Congrats on the official release! Some bugs however: >>> >>> >> >> > >>> >>> >> >> > I guess you don't really want to change path to >>> >>> >> >> > WordPress-Xerte-Online. >>> >>> >> >> > but >>> >>> >> >> > wordpress people got used to ftp up the whole folder, and >>> >>> >> >> > they >>> >>> >> >> > don't >>> >>> >> >> > know to >>> >>> >> >> > change the folder name to xerte-online. >>> >>> >> >> > activat--The plugin generated 8655 characters of unexpected >>> >>> >> >> > output >>> >>> >> >> > during >>> >>> >> >> > activation. If you notice ?headers already sent? messages, >>> >>> >> >> > problems >>> >>> >> >> > with >>> >>> >> >> > syndication feeds or other issues, try deactivating or >>> >>> >> >> > removing >>> >>> >> >> > this >>> >>> >> >> > plugin. >>> >>> >> >> > language folder is empty. >>> >>> >> >> > save--file has been corrupted >>> >>> >> >> > if play without WP publish -- This post is not yet published >>> >>> >> >> > >>> >>> >> >> > >>> >>> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >>> >>> >> >> > wrote: >>> >>> >> >> >> >>> >>> >> >> >> I'll send an email to the main list and the JISC Mail >>> >>> >> >> >> WordPress >>> >>> >> >> >> list >>> >>> >> >> >> tomorrow, hopefully pick up some bored coders. >>> >>> >> >> >> >>> >>> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >>> >>> >> >> >> >>> >>> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS feed, >>> >>> >> >> >> so >>> >>> >> >> >> anything you create in WordPress could be served out via RSS >>> >>> >> >> >> (into >>> >>> >> >> >> say >>> >>> >> >> >> Xpert) but also into people's inboxes / facebook / twitter - >>> >>> >> >> >> via >>> >>> >> >> >> the >>> >>> >> >> >> WordPress timed release feature. Who needs moodle. >>> >>> >> >> >> >>> >>> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >>> >>> >> >> >> wrote: >>> >>> >> >> >> > Nice one Pat. Good stuff. >>> >>> >> >> >> > >>> >>> >> >> >> > ________________________________________ >>> >>> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >>> >>> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of >>> >>> >> >> >> > Pat >>> >>> >> >> >> > Lockley >>> >>> >> >> >> > [patrick.lockley at googlemail.com] >>> >>> >> >> >> > Sent: 28 January 2012 20:40 >>> >>> >> >> >> > To: For Xerte technical developers >>> >>> >> >> >> > Subject: [Xerte-dev] WordPress plugin >>> >>> >> >> >> > >>> >>> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is >>> >>> >> >> >> > the >>> >>> >> >> >> > github >>> >>> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is the >>> >>> >> >> >> > WordPress >>> >>> >> >> >> > download >>> >>> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the >>> >>> >> >> >> > WordPress >>> >>> >> >> >> > SVN >>> >>> >> >> >> > >>> >>> >> >> >> > topie! >>> >>> >> >> >> > >>> >>> >> >> >> > _______________________________________________ >>> >>> >> >> >> > Xerte-dev mailing list >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >> >> >> > _______________________________________________ >>> >>> >> >> >> > Xerte-dev mailing list >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >> >> >> > >>> >>> >> >> >> > 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. >>> >>> >> >> >> > >>> >>> >> >> >> > 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. >>> >>> >> >> >> > >>> >>> >> >> >> >>> >>> >> >> >> _______________________________________________ >>> >>> >> >> >> Xerte-dev mailing list >>> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >> >> >> 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. >>> >>> >> >> >> >>> >>> >> >> >> 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. >>> >>> >> >> > >>> >>> >> >> > >>> >>> >> >> > >>> >>> >> >> > 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. >>> >>> >> >> > >>> >>> >> >> > 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. >>> >>> >> >> > >>> >>> >> >> > >>> >>> >> >> > _______________________________________________ >>> >>> >> >> > Xerte-dev mailing list >>> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >> >> > >>> >>> >> >> > 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. >>> >>> >> >> > >>> >>> >> >> > 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. >>> >>> >> >> > >>> >>> >> >> > >>> >>> >> >> >>> >>> >> >> _______________________________________________ >>> >>> >> >> Xerte-dev mailing list >>> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >> > >>> >>> >> > >>> >>> >> > >>> >>> >> > 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. >>> >>> >> > >>> >>> >> > 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. >>> >>> >> > >>> >>> >> > >>> >>> >> > _______________________________________________ >>> >>> >> > Xerte-dev mailing list >>> >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >> > >>> >>> >> > 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. >>> >>> >> > >>> >>> >> > 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. >>> >>> >> > >>> >>> >> > >>> >>> >> >>> >>> >> _______________________________________________ >>> >>> >> Xerte-dev mailing list >>> >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> > >>> >>> > >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > >>> >>> > _______________________________________________ >>> >>> > Xerte-dev mailing list >>> >>> > Xerte-dev at lists.nottingham.ac.uk >>> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > >>> >>> >>> >>> _______________________________________________ >>> >>> Xerte-dev mailing list >>> >>> Xerte-dev at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >>> >> >>> > >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> > _______________________________________________ >>> > Xerte-dev mailing list >>> > Xerte-dev at lists.nottingham.ac.uk >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From jennysong.ss at gmail.com Mon Jan 30 10:51:53 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Mon, 30 Jan 2012 18:51:53 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: wait I download from wordpress to see any different On Mon, Jan 30, 2012 at 6:39 PM, Pat Lockley wrote: > Ok, I just installed the version from WordPress, and uploaded an image > > The first one failed as it had some crazy character in, but the second > one with normal A-Za-z letters worked fine. I can preview it in the > editor, and it appears when I play the piece. > > This was a fresh install on my linix server, which had no installs before. > > On Mon, Jan 30, 2012 at 10:35 AM, Jenny.S wrote: > > yes, this is brand new from github > > > > > > On Mon, Jan 30, 2012 at 6:34 PM, Jenny.S wrote: > >> > >> I can see the image is uploaded in wp-content/xerte-online/id/media/ > >> If go to view the post, can see the image is in the content. > >> Just can't preview in Editor > >> > >> > >> On Mon, Jan 30, 2012 at 6:31 PM, Pat Lockley > >> wrote: > >>> > >>> there is also no post ID for that LO? > >>> > >>> Is this off a brand new LO? > >>> > >>> It definitely uploads on my localhost > >>> > >>> On Mon, Jan 30, 2012 at 10:28 AM, Jenny.S > wrote: > >>> > Pad, current version upload image preview seems missed out a "/" > >>> > between > >>> > xerte-online and media. So the Preview can't find image. I tried a > >>> > print_r($_POST) , can see this: > >>> > > >>> > [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png > >>> > > >>> > > >>> > > >>> > On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S > >>> > wrote: > >>> >> > >>> >> just tested, now it's fine. probably because I previously can play > >>> >> without > >>> >> publish. > >>> >> > >>> >> > >>> >> On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley > >>> >> wrote: > >>> >>> > >>> >>> doesn't happen here - three posts all called test, all play ok > >>> >>> > >>> >>> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S > >>> >>> wrote: > >>> >>> > The id reminds me another problem-- If I previously crated a post > >>> >>> > with > >>> >>> > name > >>> >>> > of "new", later I create another post with the same name, WP will > >>> >>> > make > >>> >>> > its > >>> >>> > slug as "new-1" while the title still shows "new". Xerte doesn't > >>> >>> > capture > >>> >>> > this, it still goes for "new" > >>> >>> > > >>> >>> > > >>> >>> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley > >>> >>> > wrote: > >>> >>> >> > >>> >>> >> if you update it can be played, but either update or publish is > >>> >>> >> needed > >>> >>> >> to make the post id live > >>> >>> >> > >>> >>> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S < > jennysong.ss at gmail.com> > >>> >>> >> wrote: > >>> >>> >> > that's interesting. I can play without WP publush with > previous > >>> >>> >> > versions. > >>> >>> >> > > >>> >>> >> > > >>> >>> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley > >>> >>> >> > wrote: > >>> >>> >> >> > >>> >>> >> >> I removed the old plugin > >>> >>> >> >> Search from my blog for Xerte > >>> >>> >> >> install the plugin > >>> >>> >> >> Works fine (the play before publish is a known problem - > always > >>> >>> >> >> has > >>> >>> >> >> happened - can't fix it really). > >>> >>> >> >> > >>> >>> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S > >>> >>> >> >> > >>> >>> >> >> wrote: > >>> >>> >> >> > Pat, Congrats on the official release! Some bugs however: > >>> >>> >> >> > > >>> >>> >> >> > I guess you don't really want to change path to > >>> >>> >> >> > WordPress-Xerte-Online. > >>> >>> >> >> > but > >>> >>> >> >> > wordpress people got used to ftp up the whole folder, and > >>> >>> >> >> > they > >>> >>> >> >> > don't > >>> >>> >> >> > know to > >>> >>> >> >> > change the folder name to xerte-online. > >>> >>> >> >> > activat--The plugin generated 8655 characters of unexpected > >>> >>> >> >> > output > >>> >>> >> >> > during > >>> >>> >> >> > activation. If you notice ?headers already sent? messages, > >>> >>> >> >> > problems > >>> >>> >> >> > with > >>> >>> >> >> > syndication feeds or other issues, try deactivating or > >>> >>> >> >> > removing > >>> >>> >> >> > this > >>> >>> >> >> > plugin. > >>> >>> >> >> > language folder is empty. > >>> >>> >> >> > save--file has been corrupted > >>> >>> >> >> > if play without WP publish -- This post is not yet > published > >>> >>> >> >> > > >>> >>> >> >> > > >>> >>> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley > >>> >>> >> >> > wrote: > >>> >>> >> >> >> > >>> >>> >> >> >> I'll send an email to the main list and the JISC Mail > >>> >>> >> >> >> WordPress > >>> >>> >> >> >> list > >>> >>> >> >> >> tomorrow, hopefully pick up some bored coders. > >>> >>> >> >> >> > >>> >>> >> >> >> It's very much 0.1 - as in, I do expect curve balls. > >>> >>> >> >> >> > >>> >>> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS > feed, > >>> >>> >> >> >> so > >>> >>> >> >> >> anything you create in WordPress could be served out via > RSS > >>> >>> >> >> >> (into > >>> >>> >> >> >> say > >>> >>> >> >> >> Xpert) but also into people's inboxes / facebook / > twitter - > >>> >>> >> >> >> via > >>> >>> >> >> >> the > >>> >>> >> >> >> WordPress timed release feature. Who needs moodle. > >>> >>> >> >> >> > >>> >>> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney > >>> >>> >> >> >> wrote: > >>> >>> >> >> >> > Nice one Pat. Good stuff. > >>> >>> >> >> >> > > >>> >>> >> >> >> > ________________________________________ > >>> >>> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk > >>> >>> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of > >>> >>> >> >> >> > Pat > >>> >>> >> >> >> > Lockley > >>> >>> >> >> >> > [patrick.lockley at googlemail.com] > >>> >>> >> >> >> > Sent: 28 January 2012 20:40 > >>> >>> >> >> >> > To: For Xerte technical developers > >>> >>> >> >> >> > Subject: [Xerte-dev] WordPress plugin > >>> >>> >> >> >> > > >>> >>> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online is > >>> >>> >> >> >> > the > >>> >>> >> >> >> > github > >>> >>> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is > the > >>> >>> >> >> >> > WordPress > >>> >>> >> >> >> > download > >>> >>> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the > >>> >>> >> >> >> > WordPress > >>> >>> >> >> >> > SVN > >>> >>> >> >> >> > > >>> >>> >> >> >> > topie! > >>> >>> >> >> >> > > >>> >>> >> >> >> > _______________________________________________ > >>> >>> >> >> >> > Xerte-dev mailing list > >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >>> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> >> >> >> > _______________________________________________ > >>> >>> >> >> >> > Xerte-dev mailing list > >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >>> >> >> >> > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> >> >> >> > > >>> >>> >> >> >> > 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. > >>> >>> >> >> >> > > >>> >>> >> >> >> > 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. > >>> >>> >> >> >> > > >>> >>> >> >> >> > >>> >>> >> >> >> _______________________________________________ > >>> >>> >> >> >> Xerte-dev mailing list > >>> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> >> >> >> 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. > >>> >>> >> >> >> > >>> >>> >> >> >> 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. > >>> >>> >> >> > > >>> >>> >> >> > > >>> >>> >> >> > > >>> >>> >> >> > 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. > >>> >>> >> >> > > >>> >>> >> >> > 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. > >>> >>> >> >> > > >>> >>> >> >> > > >>> >>> >> >> > _______________________________________________ > >>> >>> >> >> > Xerte-dev mailing list > >>> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> >> >> > > >>> >>> >> >> > 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. > >>> >>> >> >> > > >>> >>> >> >> > 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. > >>> >>> >> >> > > >>> >>> >> >> > > >>> >>> >> >> > >>> >>> >> >> _______________________________________________ > >>> >>> >> >> Xerte-dev mailing list > >>> >>> >> >> Xerte-dev at lists.nottingham.ac.uk > >>> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> >> > > >>> >>> >> > > >>> >>> >> > > >>> >>> >> > 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. > >>> >>> >> > > >>> >>> >> > 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. > >>> >>> >> > > >>> >>> >> > > >>> >>> >> > _______________________________________________ > >>> >>> >> > Xerte-dev mailing list > >>> >>> >> > Xerte-dev at lists.nottingham.ac.uk > >>> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> >> > > >>> >>> >> > 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. > >>> >>> >> > > >>> >>> >> > 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. > >>> >>> >> > > >>> >>> >> > > >>> >>> >> > >>> >>> >> _______________________________________________ > >>> >>> >> Xerte-dev mailing list > >>> >>> >> Xerte-dev at lists.nottingham.ac.uk > >>> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> > > >>> >>> > > >>> >>> > > >>> >>> > 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. > >>> >>> > > >>> >>> > 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. > >>> >>> > > >>> >>> > > >>> >>> > _______________________________________________ > >>> >>> > Xerte-dev mailing list > >>> >>> > Xerte-dev at lists.nottingham.ac.uk > >>> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >>> > > >>> >>> > 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. > >>> >>> > > >>> >>> > 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. > >>> >>> > > >>> >>> > > >>> >>> > >>> >>> _______________________________________________ > >>> >>> Xerte-dev mailing list > >>> >>> Xerte-dev at lists.nottingham.ac.uk > >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> >> > >>> >> > >>> > > >>> > > >>> > 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. > >>> > > >>> > 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. > >>> > > >>> > > >>> > _______________________________________________ > >>> > Xerte-dev mailing list > >>> > Xerte-dev at lists.nottingham.ac.uk > >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >>> > > >>> > 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. > >>> > > >>> > 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. > >>> > > >>> > > >>> > >>> _______________________________________________ > >>> Xerte-dev mailing list > >>> Xerte-dev at lists.nottingham.ac.uk > >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> > > > > > > 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. > > > > 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. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > 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. > > > > 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. > > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jennysong.ss at gmail.com Mon Jan 30 11:10:58 2012 From: jennysong.ss at gmail.com (Jenny.S) Date: Mon, 30 Jan 2012 19:10:58 +0800 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: sorry for the false bug, It's my NetBeans file. My whole WP is a NetBeans project. I replaced the plugin with the same name, didn't do scan for extenal change. On Mon, Jan 30, 2012 at 6:51 PM, Jenny.S wrote: > wait I download from wordpress to see any different > > > On Mon, Jan 30, 2012 at 6:39 PM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> Ok, I just installed the version from WordPress, and uploaded an image >> >> The first one failed as it had some crazy character in, but the second >> one with normal A-Za-z letters worked fine. I can preview it in the >> editor, and it appears when I play the piece. >> >> This was a fresh install on my linix server, which had no installs before. >> >> On Mon, Jan 30, 2012 at 10:35 AM, Jenny.S wrote: >> > yes, this is brand new from github >> > >> > >> > On Mon, Jan 30, 2012 at 6:34 PM, Jenny.S >> wrote: >> >> >> >> I can see the image is uploaded in wp-content/xerte-online/id/media/ >> >> If go to view the post, can see the image is in the content. >> >> Just can't preview in Editor >> >> >> >> >> >> On Mon, Jan 30, 2012 at 6:31 PM, Pat Lockley >> >> wrote: >> >>> >> >>> there is also no post ID for that LO? >> >>> >> >>> Is this off a brand new LO? >> >>> >> >>> It definitely uploads on my localhost >> >>> >> >>> On Mon, Jan 30, 2012 at 10:28 AM, Jenny.S >> wrote: >> >>> > Pad, current version upload image preview seems missed out a "/" >> >>> > between >> >>> > xerte-online and media. So the Preview can't find image. I tried a >> >>> > print_r($_POST) , can see this: >> >>> > >> >>> > [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png >> >>> > >> >>> > >> >>> > >> >>> > On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S >> >>> > wrote: >> >>> >> >> >>> >> just tested, now it's fine. probably because I previously can play >> >>> >> without >> >>> >> publish. >> >>> >> >> >>> >> >> >>> >> On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley >> >>> >> wrote: >> >>> >>> >> >>> >>> doesn't happen here - three posts all called test, all play ok >> >>> >>> >> >>> >>> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S >> >>> >>> wrote: >> >>> >>> > The id reminds me another problem-- If I previously crated a >> post >> >>> >>> > with >> >>> >>> > name >> >>> >>> > of "new", later I create another post with the same name, WP >> will >> >>> >>> > make >> >>> >>> > its >> >>> >>> > slug as "new-1" while the title still shows "new". Xerte doesn't >> >>> >>> > capture >> >>> >>> > this, it still goes for "new" >> >>> >>> > >> >>> >>> > >> >>> >>> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley >> >>> >>> > wrote: >> >>> >>> >> >> >>> >>> >> if you update it can be played, but either update or publish is >> >>> >>> >> needed >> >>> >>> >> to make the post id live >> >>> >>> >> >> >>> >>> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S < >> jennysong.ss at gmail.com> >> >>> >>> >> wrote: >> >>> >>> >> > that's interesting. I can play without WP publush with >> previous >> >>> >>> >> > versions. >> >>> >>> >> > >> >>> >>> >> > >> >>> >>> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley >> >>> >>> >> > wrote: >> >>> >>> >> >> >> >>> >>> >> >> I removed the old plugin >> >>> >>> >> >> Search from my blog for Xerte >> >>> >>> >> >> install the plugin >> >>> >>> >> >> Works fine (the play before publish is a known problem - >> always >> >>> >>> >> >> has >> >>> >>> >> >> happened - can't fix it really). >> >>> >>> >> >> >> >>> >>> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S >> >>> >>> >> >> >> >>> >>> >> >> wrote: >> >>> >>> >> >> > Pat, Congrats on the official release! Some bugs however: >> >>> >>> >> >> > >> >>> >>> >> >> > I guess you don't really want to change path to >> >>> >>> >> >> > WordPress-Xerte-Online. >> >>> >>> >> >> > but >> >>> >>> >> >> > wordpress people got used to ftp up the whole folder, and >> >>> >>> >> >> > they >> >>> >>> >> >> > don't >> >>> >>> >> >> > know to >> >>> >>> >> >> > change the folder name to xerte-online. >> >>> >>> >> >> > activat--The plugin generated 8655 characters of >> unexpected >> >>> >>> >> >> > output >> >>> >>> >> >> > during >> >>> >>> >> >> > activation. If you notice ?headers already sent? messages, >> >>> >>> >> >> > problems >> >>> >>> >> >> > with >> >>> >>> >> >> > syndication feeds or other issues, try deactivating or >> >>> >>> >> >> > removing >> >>> >>> >> >> > this >> >>> >>> >> >> > plugin. >> >>> >>> >> >> > language folder is empty. >> >>> >>> >> >> > save--file has been corrupted >> >>> >>> >> >> > if play without WP publish -- This post is not yet >> published >> >>> >>> >> >> > >> >>> >>> >> >> > >> >>> >>> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >> >>> >>> >> >> > wrote: >> >>> >>> >> >> >> >> >>> >>> >> >> >> I'll send an email to the main list and the JISC Mail >> >>> >>> >> >> >> WordPress >> >>> >>> >> >> >> list >> >>> >>> >> >> >> tomorrow, hopefully pick up some bored coders. >> >>> >>> >> >> >> >> >>> >>> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >> >>> >>> >> >> >> >> >>> >>> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS >> feed, >> >>> >>> >> >> >> so >> >>> >>> >> >> >> anything you create in WordPress could be served out via >> RSS >> >>> >>> >> >> >> (into >> >>> >>> >> >> >> say >> >>> >>> >> >> >> Xpert) but also into people's inboxes / facebook / >> twitter - >> >>> >>> >> >> >> via >> >>> >>> >> >> >> the >> >>> >>> >> >> >> WordPress timed release feature. Who needs moodle. >> >>> >>> >> >> >> >> >>> >>> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >> >>> >>> >> >> >> wrote: >> >>> >>> >> >> >> > Nice one Pat. Good stuff. >> >>> >>> >> >> >> > >> >>> >>> >> >> >> > ________________________________________ >> >>> >>> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >> >>> >>> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf >> Of >> >>> >>> >> >> >> > Pat >> >>> >>> >> >> >> > Lockley >> >>> >>> >> >> >> > [patrick.lockley at googlemail.com] >> >>> >>> >> >> >> > Sent: 28 January 2012 20:40 >> >>> >>> >> >> >> > To: For Xerte technical developers >> >>> >>> >> >> >> > Subject: [Xerte-dev] WordPress plugin >> >>> >>> >> >> >> > >> >>> >>> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Onlineis >> >>> >>> >> >> >> > the >> >>> >>> >> >> >> > github >> >>> >>> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is >> the >> >>> >>> >> >> >> > WordPress >> >>> >>> >> >> >> > download >> >>> >>> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the >> >>> >>> >> >> >> > WordPress >> >>> >>> >> >> >> > SVN >> >>> >>> >> >> >> > >> >>> >>> >> >> >> > topie! >> >>> >>> >> >> >> > >> >>> >>> >> >> >> > _______________________________________________ >> >>> >>> >> >> >> > Xerte-dev mailing list >> >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >>> >> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> >> >> >> > _______________________________________________ >> >>> >>> >> >> >> > Xerte-dev mailing list >> >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >>> >> >> >> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> >> >> >> > >> >>> >>> >> >> >> > 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. >> >>> >>> >> >> >> > >> >>> >>> >> >> >> > 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. >> >>> >>> >> >> >> > >> >>> >>> >> >> >> >> >>> >>> >> >> >> _______________________________________________ >> >>> >>> >> >> >> Xerte-dev mailing list >> >>> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> >> >> >> 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. >> >>> >>> >> >> >> >> >>> >>> >> >> >> 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. >> >>> >>> >> >> > >> >>> >>> >> >> > >> >>> >>> >> >> > >> >>> >>> >> >> > 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. >> >>> >>> >> >> > >> >>> >>> >> >> > 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. >> >>> >>> >> >> > >> >>> >>> >> >> > >> >>> >>> >> >> > _______________________________________________ >> >>> >>> >> >> > Xerte-dev mailing list >> >>> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> >> >> > >> >>> >>> >> >> > 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. >> >>> >>> >> >> > >> >>> >>> >> >> > 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. >> >>> >>> >> >> > >> >>> >>> >> >> > >> >>> >>> >> >> >> >>> >>> >> >> _______________________________________________ >> >>> >>> >> >> Xerte-dev mailing list >> >>> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> >> > >> >>> >>> >> > >> >>> >>> >> > >> >>> >>> >> > 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. >> >>> >>> >> > >> >>> >>> >> > 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. >> >>> >>> >> > >> >>> >>> >> > >> >>> >>> >> > _______________________________________________ >> >>> >>> >> > Xerte-dev mailing list >> >>> >>> >> > Xerte-dev at lists.nottingham.ac.uk >> >>> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> >> > >> >>> >>> >> > 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. >> >>> >>> >> > >> >>> >>> >> > 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. >> >>> >>> >> > >> >>> >>> >> > >> >>> >>> >> >> >>> >>> >> _______________________________________________ >> >>> >>> >> Xerte-dev mailing list >> >>> >>> >> Xerte-dev at lists.nottingham.ac.uk >> >>> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> > >> >>> >>> > >> >>> >>> > >> >>> >>> > 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. >> >>> >>> > >> >>> >>> > 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. >> >>> >>> > >> >>> >>> > >> >>> >>> > _______________________________________________ >> >>> >>> > Xerte-dev mailing list >> >>> >>> > Xerte-dev at lists.nottingham.ac.uk >> >>> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >>> > >> >>> >>> > 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. >> >>> >>> > >> >>> >>> > 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. >> >>> >>> > >> >>> >>> > >> >>> >>> >> >>> >>> _______________________________________________ >> >>> >>> Xerte-dev mailing list >> >>> >>> Xerte-dev at lists.nottingham.ac.uk >> >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> >> >> >>> >> >> >>> > >> >>> > >> >>> > 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. >> >>> > >> >>> > 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. >> >>> > >> >>> > >> >>> > _______________________________________________ >> >>> > Xerte-dev mailing list >> >>> > Xerte-dev at lists.nottingham.ac.uk >> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >>> > >> >>> > 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. >> >>> > >> >>> > 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. >> >>> > >> >>> > >> >>> >> >>> _______________________________________________ >> >>> Xerte-dev mailing list >> >>> Xerte-dev at lists.nottingham.ac.uk >> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> >> > >> > >> > 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. >> > >> > 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. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > 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. >> > >> > 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. >> > >> > >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Mon Jan 30 11:15:36 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 30 Jan 2012 11:15:36 +0000 Subject: [Xerte-dev] Re: WordPress plugin In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA130909C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: It's ok, I get the same thing with .svn and .git folders all the time. On Mon, Jan 30, 2012 at 11:10 AM, Jenny.S wrote: > sorry for the false bug, It's my NetBeans file. My whole WP is a NetBeans > project. I replaced the plugin with the same name, didn't do scan for > extenal change. > > On Mon, Jan 30, 2012 at 6:51 PM, Jenny.S wrote: >> >> wait I download from wordpress to see any different >> >> >> On Mon, Jan 30, 2012 at 6:39 PM, Pat Lockley >> wrote: >>> >>> Ok, I just installed the version from WordPress, and uploaded an image >>> >>> The first one failed as it had some crazy character in, but the second >>> one with normal A-Za-z letters worked fine. I can preview it in the >>> editor, and it appears when I play the piece. >>> >>> This was a fresh install on my linix server, which had no installs >>> before. >>> >>> On Mon, Jan 30, 2012 at 10:35 AM, Jenny.S wrote: >>> > yes, this is brand new from github >>> > >>> > >>> > On Mon, Jan 30, 2012 at 6:34 PM, Jenny.S >>> > wrote: >>> >> >>> >> I can see the image is uploaded in wp-content/xerte-online/id/media/ >>> >> If go to view the post, can see the image is in the content. >>> >> Just can't preview in Editor >>> >> >>> >> >>> >> On Mon, Jan 30, 2012 at 6:31 PM, Pat Lockley >>> >> wrote: >>> >>> >>> >>> there is also no post ID for that LO? >>> >>> >>> >>> Is this off a brand new LO? >>> >>> >>> >>> It definitely uploads on my localhost >>> >>> >>> >>> On Mon, Jan 30, 2012 at 10:28 AM, Jenny.S >>> >>> wrote: >>> >>> > Pad, current version upload image preview seems missed out a "/" >>> >>> > between >>> >>> > xerte-online and media. So the Preview can't find image. I tried a >>> >>> > print_r($_POST) , can see this: >>> >>> > >>> >>> > [file_name] => ../wp-content/uploads/xerte-onlinmedia/crumb.png >>> >>> > >>> >>> > >>> >>> > >>> >>> > On Sun, Jan 29, 2012 at 10:04 AM, Jenny.S >>> >>> > wrote: >>> >>> >> >>> >>> >> just tested, now it's fine. probably because I previously can play >>> >>> >> without >>> >>> >> publish. >>> >>> >> >>> >>> >> >>> >>> >> On Sun, Jan 29, 2012 at 9:28 AM, Pat Lockley >>> >>> >> wrote: >>> >>> >>> >>> >>> >>> doesn't happen here - three posts all called test, all play ok >>> >>> >>> >>> >>> >>> On Sun, Jan 29, 2012 at 1:17 AM, Jenny.S >>> >>> >>> wrote: >>> >>> >>> > The id reminds me another problem-- If I previously crated a >>> >>> >>> > post >>> >>> >>> > with >>> >>> >>> > name >>> >>> >>> > of "new", later I create another post with the same name, WP >>> >>> >>> > will >>> >>> >>> > make >>> >>> >>> > its >>> >>> >>> > slug as "new-1" while the title still shows "new". Xerte >>> >>> >>> > doesn't >>> >>> >>> > capture >>> >>> >>> > this, it still goes for "new" >>> >>> >>> > >>> >>> >>> > >>> >>> >>> > On Sun, Jan 29, 2012 at 9:06 AM, Pat Lockley >>> >>> >>> > wrote: >>> >>> >>> >> >>> >>> >>> >> if you update it can be played, but either update or publish >>> >>> >>> >> is >>> >>> >>> >> needed >>> >>> >>> >> to make the post id live >>> >>> >>> >> >>> >>> >>> >> On Sun, Jan 29, 2012 at 1:02 AM, Jenny.S >>> >>> >>> >> >>> >>> >>> >> wrote: >>> >>> >>> >> > that's interesting. I can play without WP publush with >>> >>> >>> >> > previous >>> >>> >>> >> > versions. >>> >>> >>> >> > >>> >>> >>> >> > >>> >>> >>> >> > On Sun, Jan 29, 2012 at 8:55 AM, Pat Lockley >>> >>> >>> >> > wrote: >>> >>> >>> >> >> >>> >>> >>> >> >> I removed the old plugin >>> >>> >>> >> >> Search from my blog for Xerte >>> >>> >>> >> >> install the plugin >>> >>> >>> >> >> Works fine (the play before publish is a known problem - >>> >>> >>> >> >> always >>> >>> >>> >> >> has >>> >>> >>> >> >> happened - can't fix it really). >>> >>> >>> >> >> >>> >>> >>> >> >> On Sun, Jan 29, 2012 at 12:38 AM, Jenny.S >>> >>> >>> >> >> >>> >>> >>> >> >> wrote: >>> >>> >>> >> >> > Pat, Congrats on the official release! Some bugs however: >>> >>> >>> >> >> > >>> >>> >>> >> >> > I guess you don't really want to change path to >>> >>> >>> >> >> > WordPress-Xerte-Online. >>> >>> >>> >> >> > but >>> >>> >>> >> >> > wordpress people got used to ftp up the whole folder, and >>> >>> >>> >> >> > they >>> >>> >>> >> >> > don't >>> >>> >>> >> >> > know to >>> >>> >>> >> >> > change the folder name to xerte-online. >>> >>> >>> >> >> > activat--The plugin generated 8655 characters of >>> >>> >>> >> >> > unexpected >>> >>> >>> >> >> > output >>> >>> >>> >> >> > during >>> >>> >>> >> >> > activation. If you notice ?headers already sent? >>> >>> >>> >> >> > messages, >>> >>> >>> >> >> > problems >>> >>> >>> >> >> > with >>> >>> >>> >> >> > syndication feeds or other issues, try deactivating or >>> >>> >>> >> >> > removing >>> >>> >>> >> >> > this >>> >>> >>> >> >> > plugin. >>> >>> >>> >> >> > language folder is empty. >>> >>> >>> >> >> > save--file has been corrupted >>> >>> >>> >> >> > if play without WP publish -- This post is not yet >>> >>> >>> >> >> > published >>> >>> >>> >> >> > >>> >>> >>> >> >> > >>> >>> >>> >> >> > On Sun, Jan 29, 2012 at 5:08 AM, Pat Lockley >>> >>> >>> >> >> > wrote: >>> >>> >>> >> >> >> >>> >>> >>> >> >> >> I'll send an email to the main list and the JISC Mail >>> >>> >>> >> >> >> WordPress >>> >>> >>> >> >> >> list >>> >>> >>> >> >> >> tomorrow, hopefully pick up some bored coders. >>> >>> >>> >> >> >> >>> >>> >>> >> >> >> It's very much 0.1 - as in, I do expect curve balls. >>> >>> >>> >> >> >> >>> >>> >>> >> >> >> Also, forgot to say - I added in a Xerte WordPress RSS >>> >>> >>> >> >> >> feed, >>> >>> >>> >> >> >> so >>> >>> >>> >> >> >> anything you create in WordPress could be served out via >>> >>> >>> >> >> >> RSS >>> >>> >>> >> >> >> (into >>> >>> >>> >> >> >> say >>> >>> >>> >> >> >> Xpert) but also into people's inboxes / facebook / >>> >>> >>> >> >> >> twitter - >>> >>> >>> >> >> >> via >>> >>> >>> >> >> >> the >>> >>> >>> >> >> >> WordPress timed release feature. Who needs moodle. >>> >>> >>> >> >> >> >>> >>> >>> >> >> >> On Sat, Jan 28, 2012 at 9:05 PM, Julian Tenney >>> >>> >>> >> >> >> wrote: >>> >>> >>> >> >> >> > Nice one Pat. Good stuff. >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > ________________________________________ >>> >>> >>> >> >> >> > From: xerte-dev-bounces at lists.nottingham.ac.uk >>> >>> >>> >> >> >> > [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf >>> >>> >>> >> >> >> > Of >>> >>> >>> >> >> >> > Pat >>> >>> >>> >> >> >> > Lockley >>> >>> >>> >> >> >> > [patrick.lockley at googlemail.com] >>> >>> >>> >> >> >> > Sent: 28 January 2012 20:40 >>> >>> >>> >> >> >> > To: For Xerte technical developers >>> >>> >>> >> >> >> > Subject: [Xerte-dev] WordPress plugin >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > https://github.com/patlockley/Wordpress-Xerte-Online >>> >>> >>> >> >> >> > is >>> >>> >>> >> >> >> > the >>> >>> >>> >> >> >> > github >>> >>> >>> >> >> >> > http://wordpress.org/extend/plugins/xerte-online/ is >>> >>> >>> >> >> >> > the >>> >>> >>> >> >> >> > WordPress >>> >>> >>> >> >> >> > download >>> >>> >>> >> >> >> > http://plugins.svn.wordpress.org/xerte-online is the >>> >>> >>> >> >> >> > WordPress >>> >>> >>> >> >> >> > SVN >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > topie! >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > _______________________________________________ >>> >>> >>> >> >> >> > Xerte-dev mailing list >>> >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> >> >> >> > _______________________________________________ >>> >>> >>> >> >> >> > Xerte-dev mailing list >>> >>> >>> >> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > 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. >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> > 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. >>> >>> >>> >> >> >> > >>> >>> >>> >> >> >> >>> >>> >>> >> >> >> _______________________________________________ >>> >>> >>> >> >> >> Xerte-dev mailing list >>> >>> >>> >> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> >> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> >> >> >> 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. >>> >>> >>> >> >> >> >>> >>> >>> >> >> >> 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. >>> >>> >>> >> >> > >>> >>> >>> >> >> > >>> >>> >>> >> >> > >>> >>> >>> >> >> > 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. >>> >>> >>> >> >> > >>> >>> >>> >> >> > 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. >>> >>> >>> >> >> > >>> >>> >>> >> >> > >>> >>> >>> >> >> > _______________________________________________ >>> >>> >>> >> >> > Xerte-dev mailing list >>> >>> >>> >> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> >> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> >> >> > >>> >>> >>> >> >> > 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. >>> >>> >>> >> >> > >>> >>> >>> >> >> > 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. >>> >>> >>> >> >> > >>> >>> >>> >> >> > >>> >>> >>> >> >> >>> >>> >>> >> >> _______________________________________________ >>> >>> >>> >> >> Xerte-dev mailing list >>> >>> >>> >> >> Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> >> > >>> >>> >>> >> > >>> >>> >>> >> > >>> >>> >>> >> > 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. >>> >>> >>> >> > >>> >>> >>> >> > 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. >>> >>> >>> >> > >>> >>> >>> >> > >>> >>> >>> >> > _______________________________________________ >>> >>> >>> >> > Xerte-dev mailing list >>> >>> >>> >> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> >> > >>> >>> >>> >> > 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. >>> >>> >>> >> > >>> >>> >>> >> > 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. >>> >>> >>> >> > >>> >>> >>> >> > >>> >>> >>> >> >>> >>> >>> >> _______________________________________________ >>> >>> >>> >> Xerte-dev mailing list >>> >>> >>> >> Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> > >>> >>> >>> > >>> >>> >>> > >>> >>> >>> > 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. >>> >>> >>> > >>> >>> >>> > 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. >>> >>> >>> > >>> >>> >>> > >>> >>> >>> > _______________________________________________ >>> >>> >>> > Xerte-dev mailing list >>> >>> >>> > Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >>> > >>> >>> >>> > 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. >>> >>> >>> > >>> >>> >>> > 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. >>> >>> >>> > >>> >>> >>> > >>> >>> >>> >>> >>> >>> _______________________________________________ >>> >>> >>> Xerte-dev mailing list >>> >>> >>> Xerte-dev at lists.nottingham.ac.uk >>> >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> >> >>> >>> >> >>> >>> > >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > >>> >>> > _______________________________________________ >>> >>> > Xerte-dev mailing list >>> >>> > Xerte-dev at lists.nottingham.ac.uk >>> >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > 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. >>> >>> > >>> >>> > >>> >>> >>> >>> _______________________________________________ >>> >>> Xerte-dev mailing list >>> >>> Xerte-dev at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> >> >>> >> >>> > >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> > _______________________________________________ >>> > Xerte-dev mailing list >>> > Xerte-dev at lists.nottingham.ac.uk >>> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >>> > >>> > 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. >>> > >>> > 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. >>> > >>> > >>> >>> _______________________________________________ >>> Xerte-dev mailing list >>> Xerte-dev at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From johnathan.kemp at ntlworld.com Mon Jan 30 13:24:04 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Mon, 30 Jan 2012 13:24:04 +0000 Subject: [Xerte-dev] Re: Interactive Diagram Page (customHotspots.rlm) Message-ID: I am about to start extracting the language strings from the rlm file but find during prior testing that if I select the mcq option that the page just stops responding on preview. Is this a known bug? What is supposed to happen? I have tested this both in a Page Templates project and in an individual page template project using the customHotspots.rlm file and an xwd derived from the contents in templates.xwd. Kind regards Johnathan -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Mon Jan 30 13:36:28 2012 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 30 Jan 2012 14:36:28 +0100 Subject: [Xerte-dev] Re: Problem with auto numbering of folders when creating individual page wizard projects In-Reply-To: References: <20120124214227.96136h96e9ubw8tv@server.tor.nl> <4F244963.5000503@tor.nl> Message-ID: <4F269CDC.2060305@tor.nl> Cool, I'll have a look .... Op 29-1-2012 23:35, Kemp Johnathan schreef: > I've just run a quick test and I can confirm the page folders are now > creating correctly past 10 pages. > > Thanks for your help once again, > > I am progressing with the preparation of the models and xwd files > ready for translation, and updating the svn entries in the pageWizards > section as I go. > > Kind regards > > Johnathan > > On 28 January 2012 19:15, Tom Reijnders > wrote: > > This should fix it... > > Op 24-1-2012 21:42, Tom Reijnders schreef: > > Oops, that can't be right. I'll have a look when I am back > from the states. (Possibly earlier if I can get to my machine) > > Citeren Kemp Johnathan >: > > I am using Tom's latest editor.swf in desktop Xerte to > test the new > individual page templates. > > I use Pages / Create a new page project. > > Then I add pages by selecting pages from the projects page > menus e.g. Pages > / Interactivity / Annotated Diagram > > The pages are added automatically and a folder is created > for each page, so > page one gets a folder page_000, the next page gets a > folder page_001 etc. > > However once the folder number page_010 has been created > things go wrong. > > Every subsequent page is being assigned to the folder > page_009 and this is > filling up with the xml and xwd files for each subsequent > page. > > Kind regards > > Johnathan > > 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. > > 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. > > > > > > ---------------------------------------------------------------- > This message was sent using IMP, the Internet Messaging Program. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > > > 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. > > 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. > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Mon Jan 30 20:57:44 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Mon, 30 Jan 2012 20:57:44 -0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> Message-ID: <015e01ccdf91$d5316d60$7f944820$@co.uk> A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 11:02:18 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 11:02:18 +0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: <015e01ccdf91$d5316d60$7f944820$@co.uk> References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> <015e01ccdf91$d5316d60$7f944820$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA16823DC@EXCHANGE1.ad.nottingham.ac.uk> It is being drawn... ...the values are kind of normalised to fit between the lowest and highest values, so if the series goes 2,4,6 then the chart is drawn to fit between 2 and 6. Hence the first bar just appears to be empty... ;-) It needs the limits expanding so the first item is just above the origin. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 30 January 2012 20:58 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell > wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. [cid:image001.jpg at 01CCE007.CC3CA0A0] I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: image001.jpg URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 11:06:36 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 11:06:36 +0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: <015e01ccdf91$d5316d60$7f944820$@co.uk> References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> <015e01ccdf91$d5316d60$7f944820$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA16823E8@EXCHANGE1.ad.nottingham.ac.uk> Here you go: if you have some series of data to test against, that'd be handy. In calculating yMin for the y-axis, I did Math.floor(yMin * 0.9) which I think is a sensible solution. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 30 January 2012 20:58 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell > wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. [cid:image001.jpg at 01CCE008.66206120] I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: image001.jpg URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 11:51:35 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 11:51:35 +0000 Subject: [Xerte-dev] Re: TTS error In-Reply-To: <007501ccdcd9$794264b0$6bc72e10$@co.uk> References: <010c01ccdc49$8cc89260$a659b720$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CC3F8@EXCHANGE1.ad.nottingham.ac.uk> <007501ccdcd9$794264b0$6bc72e10$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA168246B@EXCHANGE1.ad.nottingham.ac.uk> This is fixed now. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 27 January 2012 09:53 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: TTS error may not be relevant but in testing Pat's Wordpress plugin I noticed that has the same error where TOC is undefined and continue is read as table of contents. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 27 January 2012 09:28 To: For Xerte technical developers Subject: [Xerte-dev] Re: TTS error Play_560 isn't necessarily running the latest code: it would be good to know what happens with the files from the svn. I'll check it out though. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 26 January 2012 16:43 To: 'For Xerte technical developers' Subject: [Xerte-dev] TTS error Hi all just been testing some additional TTS voices on Windows 7 and out of curiosity tested how they worked with a Xerte LO too and to begin with used the Notting page_560 example http://www.nottingham.ac.uk/toolkits/play_560 and then I tested with one of my own LO's randomly selected http://mitchellmedia.co.uk/moodle/xertetoolkits/play_120 It seems an error as crept in at some point with the TTS reading of navigation elements... on the 560 lo table of contents is read as "undefined" volume control get's selected when tabbing but doesn't get read bottom right contents button gets read as "table of contents" on 120 lo toc and continue get read correctly volume control get's selected when tabbing but doesn't get read Mine is not a completely up-to-date install so it seems like this error may have crept in recently? HTH Ron 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: XMLEngine.swf Type: application/x-shockwave-flash Size: 147605 bytes Desc: XMLEngine.swf URL: From patrick.lockley at googlemail.com Tue Jan 31 12:00:13 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 31 Jan 2012 12:00:13 +0000 Subject: [Xerte-dev] Re: TTS error In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA168246B@EXCHANGE1.ad.nottingham.ac.uk> References: <010c01ccdc49$8cc89260$a659b720$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CC3F8@EXCHANGE1.ad.nottingham.ac.uk> <007501ccdcd9$794264b0$6bc72e10$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA168246B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Do I need to update anything? On Tue, Jan 31, 2012 at 11:51 AM, Julian Tenney wrote: > This is fixed now. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 27 January 2012 09:53 > To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: TTS error > > > > may not be relevant but in testing Pat's Wordpress plugin I noticed that has > the same error where TOC is undefined and continue is read as table of > contents. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney > Sent: 27 January 2012 09:28 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: TTS error > > > > Play_560 isn?t necessarily running the latest code: it would be good to know > what happens with the files from the svn. > > > > I?ll check it out though. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 26 January 2012 16:43 > To: 'For Xerte technical developers' > Subject: [Xerte-dev] TTS error > > > > Hi all > > just been testing some additional TTS voices on Windows 7 and out of > curiosity tested how they worked with a Xerte LO too and to begin with used > the Notting page_560 example http://www.nottingham.ac.uk/toolkits/play_560 > and then I tested with one of my own LO's randomly selected > http://mitchellmedia.co.uk/moodle/xertetoolkits/play_120 > > > > It seems an error as crept in at some point with the TTS reading of > navigation elements... > > > > on the 560 lo > > table of contents is read as "undefined" > > volume control get's selected when tabbing but doesn't get read > > bottom right contents button gets read as "table of contents" > > > > on 120 lo > > toc and continue get read correctly > > volume control get's selected when tabbing but doesn't get read > > > > Mine is not a completely up-to-date install so it seems like this error may > have crept in recently? > > > > HTH > > Ron > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > From Julian.Tenney at nottingham.ac.uk Tue Jan 31 12:01:54 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 12:01:54 +0000 Subject: [Xerte-dev] Re: TTS error In-Reply-To: References: <010c01ccdc49$8cc89260$a659b720$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA11CC3F8@EXCHANGE1.ad.nottingham.ac.uk> <007501ccdcd9$794264b0$6bc72e10$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA168246B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA168247D@EXCHANGE1.ad.nottingham.ac.uk> Engine from the svn. It had some dodgy references to the languages xml in it. -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 31 January 2012 12:00 To: For Xerte technical developers Subject: [Xerte-dev] Re: TTS error Do I need to update anything? On Tue, Jan 31, 2012 at 11:51 AM, Julian Tenney wrote: > This is fixed now. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 27 January 2012 09:53 > To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: TTS error > > > > may not be relevant but in testing Pat's Wordpress plugin I noticed that has > the same error where TOC is undefined and continue is read as table of > contents. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney > Sent: 27 January 2012 09:28 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: TTS error > > > > Play_560 isn't necessarily running the latest code: it would be good to know > what happens with the files from the svn. > > > > I'll check it out though. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 26 January 2012 16:43 > To: 'For Xerte technical developers' > Subject: [Xerte-dev] TTS error > > > > Hi all > > just been testing some additional TTS voices on Windows 7 and out of > curiosity tested how they worked with a Xerte LO too and to begin with used > the Notting page_560 example http://www.nottingham.ac.uk/toolkits/play_560 > and then I tested with one of my own LO's randomly selected > http://mitchellmedia.co.uk/moodle/xertetoolkits/play_120 > > > > It seems an error as crept in at some point with the TTS reading of > navigation elements... > > > > on the 560 lo > > table of contents is read as "undefined" > > volume control get's selected when tabbing but doesn't get read > > bottom right contents button gets read as "table of contents" > > > > on 120 lo > > toc and continue get read correctly > > volume control get's selected when tabbing but doesn't get read > > > > Mine is not a completely up-to-date install so it seems like this error may > have crept in recently? > > > > HTH > > Ron > > > > 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. > > 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. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev From ronm at mitchellmedia.co.uk Tue Jan 31 12:11:22 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Tue, 31 Jan 2012 12:11:22 -0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA16823E8@EXCHANGE1.ad.nottingham.ac.uk> References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> <015e01ccdf91$d5316d60$7f944820$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA16823E8@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <00c401cce011$7558c700$600a5500$@co.uk> When you say "Here you go" - was there meant to be an attachment? Did you change tempH = (cd[i][j].y - yMin) * scalar; to tempH = (cd[i][j].y - Math.floor(yMin * 0.9)) * scalar; ? Which certainly gets the first bar appearing or somewhere else? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2012 11:07 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte Here you go: if you have some series of data to test against, that'd be handy. In calculating yMin for the y-axis, I did Math.floor(yMin * 0.9) which I think is a sensible solution. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 30 January 2012 20:58 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 12:12:41 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 12:12:41 +0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: <00c401cce011$7558c700$600a5500$@co.uk> References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> <015e01ccdf91$d5316d60$7f944820$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA16823E8@EXCHANGE1.ad.nottingham.ac.uk> <00c401cce011$7558c700$600a5500$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA16824A5@EXCHANGE1.ad.nottingham.ac.uk> No, I just changed the minY calculation up the top. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2012 12:11 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte When you say "Here you go" - was there meant to be an attachment? Did you change tempH = (cd[i][j].y - yMin) * scalar; to tempH = (cd[i][j].y - Math.floor(yMin * 0.9)) * scalar; ? Which certainly gets the first bar appearing or somewhere else? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2012 11:07 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte Here you go: if you have some series of data to test against, that'd be handy. In calculating yMin for the y-axis, I did Math.floor(yMin * 0.9) which I think is a sensible solution. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 30 January 2012 20:58 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell > wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. [cid:image001.jpg at 01CCE011.A1328410] I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: chart.rlm Type: application/octet-stream Size: 5995 bytes Desc: chart.rlm URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 12:13:36 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 12:13:36 +0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: <00c401cce011$7558c700$600a5500$@co.uk> References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> <015e01ccdf91$d5316d60$7f944820$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA16823E8@EXCHANGE1.ad.nottingham.ac.uk> <00c401cce011$7558c700$600a5500$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA16824AA@EXCHANGE1.ad.nottingham.ac.uk> You don't need to: I did yMin =- yMin * 0.9 etc, so the new yMin is already calculated for these calcs - is that right? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2012 12:11 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte When you say "Here you go" - was there meant to be an attachment? Did you change tempH = (cd[i][j].y - yMin) * scalar; to tempH = (cd[i][j].y - Math.floor(yMin * 0.9)) * scalar; ? Which certainly gets the first bar appearing or somewhere else? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2012 11:07 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte Here you go: if you have some series of data to test against, that'd be handy. In calculating yMin for the y-axis, I did Math.floor(yMin * 0.9) which I think is a sensible solution. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 30 January 2012 20:58 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell > wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. [cid:image001.jpg at 01CCE011.C2764B20] I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: image001.jpg URL: From ronm at mitchellmedia.co.uk Tue Jan 31 12:25:26 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Tue, 31 Jan 2012 12:25:26 -0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA16824AA@EXCHANGE1.ad.nottingham.ac.uk> References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> <015e01ccdf91$d5316d60$7f944820$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA16823E8@EXCHANGE1.ad.nottingham.ac.uk> <00c401cce011$7558c700$600a5500$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA16824AA@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <00e701cce013$6c902c10$45b08430$@co.uk> Ok cheers - I was assuming the change would need to be in the bar chart section as all the other types seem to work ok. But adding where you have definitely seems to have fixed it without causing any problems with the other types. I can't believe this hasn't cropped up previously. Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2012 12:14 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte You don't need to: I did yMin =- yMin * 0.9 etc, so the new yMin is already calculated for these calcs - is that right? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2012 12:11 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte When you say "Here you go" - was there meant to be an attachment? Did you change tempH = (cd[i][j].y - yMin) * scalar; to tempH = (cd[i][j].y - Math.floor(yMin * 0.9)) * scalar; ? Which certainly gets the first bar appearing or somewhere else? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2012 11:07 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte Here you go: if you have some series of data to test against, that'd be handy. In calculating yMin for the y-axis, I did Math.floor(yMin * 0.9) which I think is a sensible solution. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 30 January 2012 20:58 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 13:08:42 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 13:08:42 +0000 Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte In-Reply-To: <00e701cce013$6c902c10$45b08430$@co.uk> References: <003301ccd693$a328fa10$e97aee30$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA0175E42@EXCHANGE1.ad.nottingham.ac.uk> <004801ccd694$7aa5c590$6ff150b0$@co.uk> <015e01ccdf91$d5316d60$7f944820$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA16823E8@EXCHANGE1.ad.nottingham.ac.uk> <00c401cce011$7558c700$600a5500$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0BA16824AA@EXCHANGE1.ad.nottingham.ac.uk> <00e701cce013$6c902c10$45b08430$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA1682530@EXCHANGE1.ad.nottingham.ac.uk> I don't think too many people use the charts page, plus I think it might have been added later than a lot of installs' code. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2012 12:25 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte Ok cheers - I was assuming the change would need to be in the bar chart section as all the other types seem to work ok. But adding where you have definitely seems to have fixed it without causing any problems with the other types. I can't believe this hasn't cropped up previously. Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2012 12:14 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte You don't need to: I did yMin =- yMin * 0.9 etc, so the new yMin is already calculated for these calcs - is that right? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 31 January 2012 12:11 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte When you say "Here you go" - was there meant to be an attachment? Did you change tempH = (cd[i][j].y - yMin) * scalar; to tempH = (cd[i][j].y - Math.floor(yMin * 0.9)) * scalar; ? Which certainly gets the first bar appearing or somewhere else? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 31 January 2012 11:07 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte Here you go: if you have some series of data to test against, that'd be handy. In calculating yMin for the y-axis, I did Math.floor(yMin * 0.9) which I think is a sensible solution. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 30 January 2012 20:58 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte A possible additional bug with the chart page type when choosing bar chart has been highlighted so might need some more magic and although I've just looked and looked again at the script in chart.rlm I seem to lack the mystical powers to even spot where the critter might be :-( I've been testing this in response to someone asking if they were doing something wrong... with bar chart selected and regardless of how many series are added the first bar doesn't show e.g. http://mitchellmedia.co.uk/moodle/xertetoolkits/play_269 It looks like it's the same on page 18 of the 560 example http://www.nottingham.ac.uk/toolkits/play_560 I suspect it's an [i] or a [j] or a ++ out of place but I can't spot it! :-( Any ideas? Cheers Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 January 2012 10:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte like quidditch On Thu, Jan 19, 2012 at 10:24 AM, Ron Mitchell > wrote: Cheers! Seems to be a lot of wizards flying about! ;-) From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 19 January 2012 10:19 To: For Xerte technical developers Subject: [Xerte-dev] Re: poblem with chart page colour picker XOT and Xerte I fixed it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 January 2012 10:18 To: 'For Xerte technical developers' Subject: [Xerte-dev] poblem with chart page colour picker XOT and Xerte Hi all seemed better to post this here rather than the other lists... Has an error crept in with recent developments with the chart page colour picker? I was delivering some training yesterday using XOT and on this particular XOT install when trying to set the chart colour with the picker it seems to be appearing below rather than above the data entry box e.g. [cid:image001.jpg at 01CCE019.74B27B40] I've tested this morning by replacing various files from an install where this is working as it should but also just tested by creating a new page template project with Xerte rather than XOT and the same issue arises. It doesn't appear to be the chart.xwd causing the problem but I could be wrong about that. I'll have another look later but wondering if everyone has the same problem and where it might be if not in chart.rlm? Cheers Ron 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 8231 bytes Desc: image001.jpg URL: From johnathan.kemp at ntlworld.com Tue Jan 31 13:54:29 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Tue, 31 Jan 2012 13:54:29 +0000 Subject: [Xerte-dev] Selection of appropriate models on which to base the new international ready model files Message-ID: Following my recent testing of the embed content page I have had occasion to update my copy of the XOT svn. I also updated my Xerte svn copy and then compared the models in the following folders using winmerge xerte svn\templates\pageTemplates\models and XOT svn\modules\xerte\parent_templates\Nottingham\models There are differences between the two versions of the following files with the most recent being indicated against each file dragDropLabel.rlm x embedDiv.rlm xot hotspotImage.rlm xot jmol.rlm xot memory.rlm xot textGraphics.rlm xot textSWF.rlm xot textVideo.rlm xot thumbnailViewer.rlm x youtuberss.rlm x I have been using the pageTemplates models as my source for developing the languaged versions of the files and monitoring changes to the pageTemplates models against a baseline snapshot taken before I started the work. As I develop the new model files I am including support for projects with multiple page definitions. Whilst this will be neutral in impact to XOT based pages in terms of their performance it will, until the changeover is completed, make comparison between the previous files and the new versions a little more complicated as every reference to the data structure is modified e.g. templatedata.quiz[0] becomes templatedata.quiz[projPI] in XOT projects projPI gets set to 0 at the start of the page. You can view completed examples in the xerte svn in pageWizards/models/ So where should I be looking for the most appropriate version of the files to use and how do we manage the current situation in which changes are taking place, in two different places? How am I to know which version to use and when a change should be implemented in the languaged version of the files? I don't want to produce a set of files that omits important changes that have been made, but at present I don't know which version of the files I should use or when a change should be incorporated in the files I am developing. Kind regards Johnathan -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 14:04:48 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 14:04:48 +0000 Subject: [Xerte-dev] Re: Selection of appropriate models on which to base the new international ready model files In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA16825BB@EXCHANGE1.ad.nottingham.ac.uk> Most up to date models are in xerte svn. I always develop in there, and when done, and all other dependences are in place for toolkits, I move them in there. Xerte is the source for all xerte rlated stuff; toolkits for the php and web app for toolkits. Does that help? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 31 January 2012 13:54 To: Xerte Developers Discussion List Subject: [Xerte-dev] Selection of appropriate models on which to base the new international ready model files Following my recent testing of the embed content page I have had occasion to update my copy of the XOT svn. I also updated my Xerte svn copy and then compared the models in the following folders using winmerge xerte svn\templates\pageTemplates\models and XOT svn\modules\xerte\parent_templates\Nottingham\models There are differences between the two versions of the following files with the most recent being indicated against each file dragDropLabel.rlm x embedDiv.rlm xot hotspotImage.rlm xot jmol.rlm xot memory.rlm xot textGraphics.rlm xot textSWF.rlm xot textVideo.rlm xot thumbnailViewer.rlm x youtuberss.rlm x I have been using the pageTemplates models as my source for developing the languaged versions of the files and monitoring changes to the pageTemplates models against a baseline snapshot taken before I started the work. As I develop the new model files I am including support for projects with multiple page definitions. Whilst this will be neutral in impact to XOT based pages in terms of their performance it will, until the changeover is completed, make comparison between the previous files and the new versions a little more complicated as every reference to the data structure is modified e.g. templatedata.quiz[0] becomes templatedata.quiz[projPI] in XOT projects projPI gets set to 0 at the start of the page. You can view completed examples in the xerte svn in pageWizards/models/ So where should I be looking for the most appropriate version of the files to use and how do we manage the current situation in which changes are taking place, in two different places? How am I to know which version to use and when a change should be implemented in the languaged version of the files? I don't want to produce a set of files that omits important changes that have been made, but at present I don't know which version of the files I should use or when a change should be incorporated in the files I am developing. Kind regards Johnathan -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Tue Jan 31 14:16:19 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Tue, 31 Jan 2012 14:16:19 +0000 Subject: [Xerte-dev] Re: Selection of appropriate models on which to base the new international ready model files In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0BA16825BB@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0BA16825BB@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: So if I have understood you correctly I should use the model files in Xerte svn\templates\pageTemplates\models and ignore any work done in the XOT svn? Kind regards Johnathan PS what is happening with the Interactive Diagram page? It appears to be a work in progress, with code in the rlm file to support a multiple choice question, but nothing in the xwd to provide data for this? On 31 January 2012 14:04, Julian Tenney wrote: > Most up to date models are in xerte svn. > > > > I always develop in there, and when done, and all other dependences are in > place for toolkits, I move them in there. Xerte is the source for all xerte > rlated stuff; toolkits for the php and web app for toolkits. > > > > Does that help? > > > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* 31 January 2012 13:54 > *To:* Xerte Developers Discussion List > *Subject:* [Xerte-dev] Selection of appropriate models on which to base > the new international ready model files > > > > Following my recent testing of the embed content page I have had occasion > to update my copy of the XOT svn. > > > > I also updated my Xerte svn copy and then compared the models in the > following folders using winmerge > > xerte svn\templates\pageTemplates\models > > and > > XOT svn\modules\xerte\parent_templates\Nottingham\models > > There are differences between the two versions of the following files with > the most recent being indicated against each file > > > dragDropLabel.rlm x > embedDiv.rlm xot > hotspotImage.rlm xot > jmol.rlm xot > memory.rlm xot > textGraphics.rlm xot > textSWF.rlm xot > textVideo.rlm xot > thumbnailViewer.rlm x > youtuberss.rlm x > > I have been using the pageTemplates models as my source for developing the > languaged versions of the files and monitoring changes to the pageTemplates > models against a baseline snapshot taken before I started the work. > > As I develop the new model files I am including support for projects with > multiple page definitions. Whilst this will be neutral in impact to XOT > based pages in terms of their performance it will, until the changeover is > completed, make comparison between the previous files and the new versions > a little more complicated as every reference to the data structure is > modified e.g. > > templatedata.quiz[0] becomes templatedata.quiz[projPI] > > in XOT projects projPI gets set to 0 at the start of the page. > > > > You can view completed examples in the xerte svn in pageWizards/models/ > > > > So where should I be looking for the most appropriate version of the files > to use and how do we manage the current situation in which changes are > taking place, in two different places? > > > > How am I to know which version to use and when a change should be > implemented in the languaged version of the files? > > > > I don't want to produce a set of files that omits important changes that > have been made, but at present I don't know which version of the files I > should use or when a change should be incorporated in the files I am > developing. > > > > Kind regards > > > > Johnathan > > > > > > 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. > > 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. > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > 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. > > 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. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jan 31 14:23:42 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 31 Jan 2012 14:23:42 +0000 Subject: [Xerte-dev] Re: Selection of appropriate models on which to base the new international ready model files In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0BA16825BB@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0BA16825E6@EXCHANGE1.ad.nottingham.ac.uk> Yep. When I make a build for toolkits I overwrite all the stuff from xerte that is in toolkits into toolkits if you see what I mean: if it's in xerte, then it's the boss file over the same file in toolkits. Possible exceptions, but you won't go far wrong with that. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 31 January 2012 14:16 To: For Xerte technical developers Subject: [Xerte-dev] Re: Selection of appropriate models on which to base the new international ready model files So if I have understood you correctly I should use the model files in Xerte svn\templates\pageTemplates\models and ignore any work done in the XOT svn? Kind regards Johnathan PS what is happening with the Interactive Diagram page? It appears to be a work in progress, with code in the rlm file to support a multiple choice question, but nothing in the xwd to provide data for this? On 31 January 2012 14:04, Julian Tenney > wrote: Most up to date models are in xerte svn. I always develop in there, and when done, and all other dependences are in place for toolkits, I move them in there. Xerte is the source for all xerte rlated stuff; toolkits for the php and web app for toolkits. Does that help? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 31 January 2012 13:54 To: Xerte Developers Discussion List Subject: [Xerte-dev] Selection of appropriate models on which to base the new international ready model files Following my recent testing of the embed content page I have had occasion to update my copy of the XOT svn. I also updated my Xerte svn copy and then compared the models in the following folders using winmerge xerte svn\templates\pageTemplates\models and XOT svn\modules\xerte\parent_templates\Nottingham\models There are differences between the two versions of the following files with the most recent being indicated against each file dragDropLabel.rlm x embedDiv.rlm xot hotspotImage.rlm xot jmol.rlm xot memory.rlm xot textGraphics.rlm xot textSWF.rlm xot textVideo.rlm xot thumbnailViewer.rlm x youtuberss.rlm x I have been using the pageTemplates models as my source for developing the languaged versions of the files and monitoring changes to the pageTemplates models against a baseline snapshot taken before I started the work. As I develop the new model files I am including support for projects with multiple page definitions. Whilst this will be neutral in impact to XOT based pages in terms of their performance it will, until the changeover is completed, make comparison between the previous files and the new versions a little more complicated as every reference to the data structure is modified e.g. templatedata.quiz[0] becomes templatedata.quiz[projPI] in XOT projects projPI gets set to 0 at the start of the page. You can view completed examples in the xerte svn in pageWizards/models/ So where should I be looking for the most appropriate version of the files to use and how do we manage the current situation in which changes are taking place, in two different places? How am I to know which version to use and when a change should be implemented in the languaged version of the files? I don't want to produce a set of files that omits important changes that have been made, but at present I don't know which version of the files I should use or when a change should be incorporated in the files I am developing. Kind regards Johnathan 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. 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. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev 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. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: