From admin at strivney.com Fri Jul 1 08:51:34 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 1 Jul 2011 10:51:34 +0300 Subject: [Xerte] AS3 Sound Code not working in Xerte Message-ID: Help!!! I've have to use AS3, for this particular exercise and the sound code I have on a button: var snd:grey_rod= new grey_rod(); speaker_grey.addEventListener (MouseEvent.CLICK, soundbutton_Handler); function soundbutton_Handler (e:MouseEvent):void { snd.play(); } which works perfectly in the SWF, doesn't play in Xerte. Any suggestions why not? Thank you!!! Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 1 12:12:14 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 1 Jul 2011 07:12:14 -0400 Subject: [Xerte] Re: AS3 Sound Code not working in Xerte In-Reply-To: References: Message-ID: The Xerte 2 runtime can not interpret AS3. AS2 only. Date: Fri, 1 Jul 2011 10:51:34 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] AS3 Sound Code not working in Xerte Help!!! I've have to use AS3, for this particular exercise and the sound code I have on a button: var snd:grey_rod= new grey_rod(); speaker_grey.addEventListener (MouseEvent.CLICK, soundbutton_Handler); function soundbutton_Handler (e:MouseEvent):void {snd.play(); } which works perfectly in the SWF, doesn't play in Xerte. Any suggestions why not? Thank you!!! Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 1 13:11:07 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 1 Jul 2011 15:11:07 +0300 Subject: [Xerte] AS3 Code doesn't work in Xerte? Message-ID: Hi, I may be duplicating one part of this plea - my previous post didn't seem to come through. I have to use Actionscript 3 for a particular exercise and the code, which works fine in the SWF, doesn't work in Xerte. Is there a problem with Xerte and AS3? This is the code: 1) To attach sound to a movie clip: /var snd:grey_rod= new grey_rod(); //speaker_grey.addEventListener (MouseEvent.CLICK, soundbutton_Handler); //function soundbutton_Handler (e:MouseEvent):void { //snd.play(); 2) for a drag and drop game: var objectoriginalX:Number; var objectoriginalY:Number; triangle_mc.buttonMode = true; triangle_mc.addEventListener(MouseEvent.MOUSE_DOWN,pickupObject); triangle_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject); function pickupObject(event:MouseEvent):void { event.target.startDrag(true); event.target.parent.addChild(event.target); objectoriginalX = event.target.x; objectoriginalY = event.target.y; response_txt.text = " " } function dropObject(event:MouseEvent):void { event.target.stopDrag(); var matchingTargetName:String = "target" + event.target.name; var matchingTarget:DisplayObject = getChildByName(matchingTargetName); if (event.target.dropTarget != null && event.target.dropTarget.parent == matchingTarget){ event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickupObject); event.target.removeEventListener(MouseEvent.MOUSE_UP, dropObject); event.target.buttonMode = false; event.target.x = matchingTarget.x; event.target.y = matchingTarget.y; response_txt.text = "You did it!" }else { event.target.x = objectoriginalX; event.target.y = objectoriginalY; response_txt.text = "Try again" } } Please help - why might Xerte not like this code? Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jul 1 13:33:08 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 1 Jul 2011 13:33:08 +0100 Subject: [Xerte] Re: AS3 Code doesn't work in Xerte? In-Reply-To: References: Message-ID: <007101cc37eb$0a8a74b0$1f9f5e10$@co.uk> Dave Burnett has already answered your question - you can't use AS3 with Xerte 2. It's AS2 only. If you're using pageTemplates you could use the New Window page to load your swf in a new chromeless window or obviously just link to it normally. HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 01 July 2011 13:11 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] AS3 Code doesn't work in Xerte? Hi, I may be duplicating one part of this plea - my previous post didn't seem to come through. I have to use Actionscript 3 for a particular exercise and the code, which works fine in the SWF, doesn't work in Xerte. Is there a problem with Xerte and AS3? This is the code: 1) To attach sound to a movie clip: /var snd:grey_rod= new grey_rod(); //speaker_grey.addEventListener (MouseEvent.CLICK, soundbutton_Handler); //function soundbutton_Handler (e:MouseEvent):void { //snd.play(); 2) for a drag and drop game: var objectoriginalX:Number; var objectoriginalY:Number; triangle_mc.buttonMode = true; triangle_mc.addEventListener(MouseEvent.MOUSE_DOWN,pickupObject); triangle_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject); function pickupObject(event:MouseEvent):void { event.target.startDrag(true); event.target.parent.addChild(event.target); objectoriginalX = event.target.x; objectoriginalY = event.target.y; response_txt.text = " " } function dropObject(event:MouseEvent):void { event.target.stopDrag(); var matchingTargetName:String = "target" + event.target.name; var matchingTarget:DisplayObject = getChildByName(matchingTargetName); if (event.target.dropTarget != null && event.target.dropTarget.parent == matchingTarget){ event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickupObject); event.target.removeEventListener(MouseEvent.MOUSE_UP, dropObject); event.target.buttonMode = false; event.target.x = matchingTarget.x; event.target.y = matchingTarget.y; response_txt.text = "You did it!" }else { event.target.x = objectoriginalX; event.target.y = objectoriginalY; response_txt.text = "Try again" } } Please help - why might Xerte not like this code? Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 1 14:38:02 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 1 Jul 2011 16:38:02 +0300 Subject: [Xerte] Is there a New Window Page in Wizards? Message-ID: Aaarrgghhh! Well that solves the mystery about AS3 not working. Thanks for replying Dave and Ron. I am using Page Wizards. Ron I don't find the New Window page you mention there. Jonathan - is there such a thing in Page Wizards? Thank you. -- Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 1 15:01:57 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 1 Jul 2011 10:01:57 -0400 Subject: [Xerte] Re: Is there a New Window Page in Wizards? In-Reply-To: References: Message-ID: http://lists.nottingham.ac.uk/pipermail/xerte/2011-May/009743.html Install the latest version of Xerte. Dave Date: Fri, 1 Jul 2011 16:38:02 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Is there a New Window Page in Wizards? Aaarrgghhh! Well that solves the mystery about AS3 not working. Thanks for replying Dave and Ron. I am using Page Wizards. Ron I don't find the New Window page you mention there. Jonathan - is there such a thing in Page Wizards? Thank you. -- Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Fri Jul 1 15:52:46 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Fri, 01 Jul 2011 16:52:46 +0200 Subject: [Xerte] Re: Is there a New Window Page in Wizards? In-Reply-To: References: Message-ID: <4E0DDF3E.4010108@tor.nl> Regrettably, no, that is not going to work..... Deborah is using Page Wizards, Not Page Templates. I am sure Jonathan would be able to (and perhaps even has) add New Window to the Page Wizards. At the moment various people are trying to accomplish two things... 1. Make the difference between Page Wizards, Page templates in Xerte standalone and Page Templates in XOT as small as possible. This might also make Page Wizards usable in XOT... 2. Enable multi language support in Xerte (standalone and XOT) For sure effort 1. will alleviate these situations n the future. but we're not there yet. In the meantime, maintenance and big changes will be a bit awkward, so bear with us poor developers... ;-) Tom Op 1-7-2011 16:01, Dave Burnett schreef: > > http://lists.nottingham.ac.uk/pipermail/xerte/2011-May/009743.html > > Install the latest version of Xerte. > > Dave > > > > ------------------------------------------------------------------------ > Date: Fri, 1 Jul 2011 16:38:02 +0300 > From: admin at strivney.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Is there a New Window Page in Wizards? > > Aaarrgghhh! Well that solves the mystery about AS3 not working. > Thanks for replying Dave and Ron. > > I am using Page Wizards. Ron I don't find the New Window page you > mention there. Jonathan - is there such a thing in Page Wizards? > > Thank you. > -- > Deborah > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and > any attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, > please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of > Nottingham. This message has been checked for viruses but the contents > of an attachment may still contain software viruses which could damage > your computer system: you are advised to perform your own checks. > Email communications with the University of Nottingham may be > monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 reijnders at tor.nl Fri Jul 1 15:56:15 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Fri, 01 Jul 2011 16:56:15 +0200 Subject: [Xerte] Re: AS3 Code doesn't work in Xerte? In-Reply-To: References: Message-ID: <4E0DE00F.800@tor.nl> If you really, really need AS3, than Xerte 3 is an option. But that is a bit of a different beast, (i.e. no templates yet) Tom Op 1-7-2011 14:11, Deborah Delin schreef: > Hi, > > I may be duplicating one part of this plea - my previous post didn't > seem to come through. > > I have to use Actionscript 3 for a particular exercise and the code, > which works fine in the SWF, doesn't work in Xerte. Is there a > problem with Xerte and AS3? > > This is the code: > > 1) To attach sound to a movie clip: > > /var snd:grey_rod= new grey_rod(); > > //speaker_grey.addEventListener (MouseEvent.CLICK, soundbutton_Handler); > > //function soundbutton_Handler (e:MouseEvent):void { > //snd.play(); > > 2) for a drag and drop game: > > var objectoriginalX:Number; > var objectoriginalY:Number; > > triangle_mc.buttonMode = true; > triangle_mc.addEventListener(MouseEvent.MOUSE_DOWN,pickupObject); > triangle_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject); > > function pickupObject(event:MouseEvent):void { > event.target.startDrag(true); > event.target.parent.addChild(event.target); > objectoriginalX = event.target.x; > objectoriginalY = event.target.y; > response_txt.text = " " > } > function dropObject(event:MouseEvent):void { > event.target.stopDrag(); > var matchingTargetName:String = "target" + event.target.name > ; > var matchingTarget:DisplayObject = getChildByName(matchingTargetName); > if (event.target.dropTarget != null && > event.target.dropTarget.parent == matchingTarget){ > event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickupObject); > event.target.removeEventListener(MouseEvent.MOUSE_UP, dropObject); > event.target.buttonMode = false; > event.target.x = matchingTarget.x; > event.target.y = matchingTarget.y; > response_txt.text = "You did it!" > }else { > event.target.x = objectoriginalX; > event.target.y = objectoriginalY; > response_txt.text = "Try again" > } > } > > Please help - why might Xerte not like this code? > > Deborah > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 1 17:48:43 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 1 Jul 2011 19:48:43 +0300 Subject: [Xerte] Is there a New Window Page in Wizards? Message-ID: I am using the latest version of Wizards - April 2011 - and I don't see a page called New Window, Tom, I definitely don't think I'm up to Xerte 3 so I'll just have to make the SWF external to Xerte and link to it unless there's any good news about New Window. Thanks. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Fri Jul 1 18:59:38 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Fri, 1 Jul 2011 18:59:38 +0100 Subject: [Xerte] Re: Is there a New Window Page in Wizards? In-Reply-To: <4E0DDF3E.4010108@tor.nl> References: <4E0DDF3E.4010108@tor.nl> Message-ID: Hello Deborah, As Tom says, there is a lot going on right now with respect to Page Templates and Page Wizards. The New Page page currently available in Page Templates came out after the last issue of the Page Wizards, so at present there is no New Page page in Page Wizards, but there will be. However at the moment the focus of attention is on re-modeling every Page Wizard so that they can share the same set of model files with the Page Templates project template. This will result in significant improvements in the maintenance of Page Wizards including making it much easier to create a new Page Wizard when a new page appears in Page Templates. Also it offers the opportunity to port some of the pages currently only available in Page Wizards into Page Templates. So good stuff is on the way, but it will take a little time. It may be that you don't see much new in Page Wizards until after the September developers conference. I did take a look at the New Page page in Page Templates couldn't get it to work properly. I think there were some changes to the code since I last looked at it, but I have been focusing on the language developments rather than creating new pages. I'll take another look at it and see if I can get a Page Wizard working in the interim. Kind regards Johnathan On 1 July 2011 15:52, Tom Reijnders wrote: > Regrettably, no, that is not going to work..... > > Deborah is using Page Wizards, Not Page Templates. I am sure Jonathan would > be able to (and perhaps even has) add New Window to the Page Wizards. > > At the moment various people are trying to accomplish two things... > > 1. Make the difference between Page Wizards, Page templates in Xerte > standalone and Page Templates in XOT as small as possible. This might also > make Page Wizards usable in XOT... > 2. Enable multi language support in Xerte (standalone and XOT) > > For sure effort 1. will alleviate these situations n the future. but we're > not there yet. In the meantime, maintenance and big changes will be a bit > awkward, so bear with us poor developers... ;-) > > Tom > > Op 1-7-2011 16:01, Dave Burnett schreef: > > > http://lists.nottingham.ac.uk/pipermail/xerte/2011-May/009743.html > > Install the latest version of Xerte. > > Dave > > > > ------------------------------ > Date: Fri, 1 Jul 2011 16:38:02 +0300 > From: admin at strivney.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Is there a New Window Page in Wizards? > > Aaarrgghhh! Well that solves the mystery about AS3 not working. Thanks > for replying Dave and Ron. > > I am using Page Wizards. Ron I don't find the New Window page you > mention there. Jonathan - is there such a thing in Page Wizards? > > Thank you. > -- > Deborah > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Fri Jul 1 23:06:46 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Fri, 1 Jul 2011 23:06:46 +0100 Subject: [Xerte] Xerte 2.n - Page Templates New Window Page Message-ID: A while ago I tried to use the page and hit some issues that I reported to this list, but subsequently have not looked at the Page, being busy with looking at languaging issues for the Page Wizards. Following a recent post regarding whether there was a Page Wizard for the New Window page I have updated my Xerte svn and then tried both the /templates/pageTemplates folder contents and the /runtime/wizards/Page Templates.xtp file to create a Page Templates sourced project with a New Window page. I have experienced the following after creating a New Window page, adding an image and a valid url for the page to open a window on. a) Depending on the size of picture the panel can become displaced as shown in the attached picture panel.jpg b) I cannot open a new window, clicking on the picture does not open a new window c) The project navigation can become frozen so it is impossible to exit the page without closing down the preview, I think this occurs after several attempts to open a window by clicking on the picture. d) After the navigation becomes frozen and the preview closed, when I re-preview the project the page load stalls with a loading xml message as shown in loading.jpg. The only way to get the page to load again is to completely exit Xerte and then restart Xerte. Is anyone using this page template successfully? Are my experiences unique? If so what am I doing wrong? Kind regards Johnathan -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: wizard.jpg Type: image/jpeg Size: 73813 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: panel.jpg Type: image/jpeg Size: 64646 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: loading.jpg Type: image/jpeg Size: 32059 bytes Desc: not available URL: From reijnders at tor.nl Sat Jul 2 07:15:31 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Sat, 02 Jul 2011 08:15:31 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: Message-ID: <4E0EB783.4000801@tor.nl> Jonathan, The new page is a bit of atrange beast as it uses javascript to open a new Window, i.e. to the est of my knowledge, that is NOT working in preview. Tom Op 2-7-2011 0:06, Kemp Johnathan schreef: > A while ago I tried to use the page and hit some issues that I > reported to this list, but subsequently have not looked at the Page, > being busy with looking at languaging issues for the Page Wizards. > > Following a recent post regarding whether there was a Page Wizard for > the New Window page I have updated my Xerte svn and then tried both the > > /templates/pageTemplates folder contents > > and the > > /runtime/wizards/Page Templates.xtp file > > to create a Page Templates sourced project with a New Window page. > > I have experienced the following after creating a New Window page, > adding an image and a valid url for the page to open a window on. > a) Depending on the size of picture the panel can become displaced as > shown in the attached picture panel.jpg > b) I cannot open a new window, clicking on the picture does not open a > new window > c) The project navigation can become frozen so it is impossible to > exit the page without closing down the preview, I think this occurs > after several attempts to open a window by clicking on the picture. > d) After the navigation becomes frozen and the preview closed, when I > re-preview the project the page load stalls with a loading xml message > as shown in loading.jpg. The only way to get the page to load again is > to completely exit Xerte and then restart Xerte. > > Is anyone using this page template successfully? > Are my experiences unique? > If so what am I doing wrong? > > 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 mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 admin at strivney.com Sat Jul 2 15:40:21 2011 From: admin at strivney.com (Deborah Delin) Date: Sat, 2 Jul 2011 17:40:21 +0300 Subject: [Xerte] New Window Page - Wizards Message-ID: Thanks for the information Jonathan, and for looking into this. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Sat Jul 2 16:38:35 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sat, 2 Jul 2011 16:38:35 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <4E0EB783.4000801@tor.nl> References: <4E0EB783.4000801@tor.nl> Message-ID: Hello Tom, Thanks for the info. I tried publishing the new page project and opening the page in both Opera and Internet Explorer. The good news is that in the browser I could not get the page to crash to the loading xml display. However I still could not get it to open a new window. Do I simple enter a URL into the wizard form's URL field e.g. http://www.bbc.co.uk or do I have to enter something else? Kind regards Johnathan On 2 July 2011 07:15, Tom Reijnders wrote: > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to open a new > Window, i.e. to the est of my knowledge, that is NOT working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I reported to > this list, but subsequently have not looked at the Page, being busy with > looking at languaging issues for the Page Wizards. > > Following a recent post regarding whether there was a Page Wizard for the > New Window page I have updated my Xerte svn and then tried both the > > /templates/pageTemplates folder contents > > and the > > /runtime/wizards/Page Templates.xtp file > > to create a Page Templates sourced project with a New Window page. > > I have experienced the following after creating a New Window page, adding > an image and a valid url for the page to open a window on. > a) Depending on the size of picture the panel can become displaced as shown > in the attached picture panel.jpg > b) I cannot open a new window, clicking on the picture does not open a new > window > c) The project navigation can become frozen so it is impossible to exit the > page without closing down the preview, I think this occurs after several > attempts to open a window by clicking on the picture. > d) After the navigation becomes frozen and the preview closed, when I > re-preview the project the page load stalls with a loading xml message as > shown in loading.jpg. The only way to get the page to load again is to > completely exit Xerte and then restart Xerte. > > Is anyone using this page template successfully? > Are my experiences unique? > If so what am I doing wrong? > > 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 mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Sat Jul 2 17:26:51 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Sat, 02 Jul 2011 18:26:51 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: <4E0EB783.4000801@tor.nl> Message-ID: <4E0F46CB.90908@tor.nl> I'll have a look... I thought that just the url should do the tricks yes. I've had it working. Op 2-7-2011 17:38, Kemp Johnathan schreef: > Hello Tom, > > Thanks for the info. > > I tried publishing the new page project and opening the page in both > Opera and Internet Explorer. > > The good news is that in the browser I could not get the page to crash > to the loading xml display. > > However I still could not get it to open a new window. > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > or do I have to enter something else? > > Kind regards > > Johnathan > > On 2 July 2011 07:15, Tom Reijnders > wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to > open a new Window, i.e. to the est of my knowledge, that is NOT > working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: >> A while ago I tried to use the page and hit some issues that I >> reported to this list, but subsequently have not looked at the >> Page, being busy with looking at languaging issues for the Page >> Wizards. >> >> Following a recent post regarding whether there was a Page Wizard >> for the New Window page I have updated my Xerte svn and then >> tried both the >> >> /templates/pageTemplates folder contents >> >> and the >> >> /runtime/wizards/Page Templates.xtp file >> >> to create a Page Templates sourced project with a New Window page. >> >> I have experienced the following after creating a New Window >> page, adding an image and a valid url for the page to open a >> window on. >> a) Depending on the size of picture the panel can become >> displaced as shown in the attached picture panel.jpg >> b) I cannot open a new window, clicking on the picture does not >> open a new window >> c) The project navigation can become frozen so it is impossible >> to exit the page without closing down the preview, I think this >> occurs after several attempts to open a window by clicking on the >> picture. >> d) After the navigation becomes frozen and the preview closed, >> when I re-preview the project the page load stalls with a loading >> xml message as shown in loading.jpg. The only way to get the page >> to load again is to completely exit Xerte and then restart Xerte. >> >> Is anyone using this page template successfully? >> Are my experiences unique? >> If so what am I doing wrong? >> >> 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 mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 reijnders at tor.nl Sat Jul 2 21:10:47 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Sat, 02 Jul 2011 22:10:47 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: <4E0EB783.4000801@tor.nl> Message-ID: <4E0F7B47.2030004@tor.nl> Tried it, and here it seems to work fine. Clicking the image (to open the window) will work one time once the page is open. You have to navigate to another page and re-enter this page if you want to open the window again. As this is implemented using javascropt openWindow, you will have to allow pop-up windows. Regards, Tom Op 2-7-2011 17:38, Kemp Johnathan schreef: > Hello Tom, > > Thanks for the info. > > I tried publishing the new page project and opening the page in both > Opera and Internet Explorer. > > The good news is that in the browser I could not get the page to crash > to the loading xml display. > > However I still could not get it to open a new window. > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > or do I have to enter something else? > > Kind regards > > Johnathan > > On 2 July 2011 07:15, Tom Reijnders > wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to > open a new Window, i.e. to the est of my knowledge, that is NOT > working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: >> A while ago I tried to use the page and hit some issues that I >> reported to this list, but subsequently have not looked at the >> Page, being busy with looking at languaging issues for the Page >> Wizards. >> >> Following a recent post regarding whether there was a Page Wizard >> for the New Window page I have updated my Xerte svn and then >> tried both the >> >> /templates/pageTemplates folder contents >> >> and the >> >> /runtime/wizards/Page Templates.xtp file >> >> to create a Page Templates sourced project with a New Window page. >> >> I have experienced the following after creating a New Window >> page, adding an image and a valid url for the page to open a >> window on. >> a) Depending on the size of picture the panel can become >> displaced as shown in the attached picture panel.jpg >> b) I cannot open a new window, clicking on the picture does not >> open a new window >> c) The project navigation can become frozen so it is impossible >> to exit the page without closing down the preview, I think this >> occurs after several attempts to open a window by clicking on the >> picture. >> d) After the navigation becomes frozen and the preview closed, >> when I re-preview the project the page load stalls with a loading >> xml message as shown in loading.jpg. The only way to get the page >> to load again is to completely exit Xerte and then restart Xerte. >> >> Is anyone using this page template successfully? >> Are my experiences unique? >> If so what am I doing wrong? >> >> 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 mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 johnathan.kemp at ntlworld.com Sun Jul 3 19:16:31 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sun, 3 Jul 2011 19:16:31 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <4E0F7B47.2030004@tor.nl> References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> Message-ID: Hello Tom, Which version of New Page are you using, - the one in the current Xerte download or the latest from the svn? I still can't get it to work in either Internet Explorer (32 bit) or Opera. I have created a test html file that opens a new window using java script and this successfully opens a new window in both browsers so I don't think the browser settings are the source of the problem. Kind regards Johnathan On 2 July 2011 21:10, Tom Reijnders wrote: > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time once the page is > open. You have to navigate to another page and re-enter this page if you > want to open the window again. > > As this is implemented using javascropt openWindow, you will have to allow > pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > Thanks for the info. > > I tried publishing the new page project and opening the page in both > Opera and Internet Explorer. > > The good news is that in the browser I could not get the page to crash to > the loading xml display. > > However I still could not get it to open a new window. > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > or do I have to enter something else? > > Kind regards > > Johnathan > > On 2 July 2011 07:15, Tom Reijnders wrote: > >> Jonathan, >> >> The new page is a bit of atrange beast as it uses javascript to open a >> new Window, i.e. to the est of my knowledge, that is NOT working in preview. >> >> Tom >> >> Op 2-7-2011 0:06, Kemp Johnathan schreef: >> >> A while ago I tried to use the page and hit some issues that I reported >> to this list, but subsequently have not looked at the Page, being busy with >> looking at languaging issues for the Page Wizards. >> >> Following a recent post regarding whether there was a Page Wizard for >> the New Window page I have updated my Xerte svn and then tried both the >> >> /templates/pageTemplates folder contents >> >> and the >> >> /runtime/wizards/Page Templates.xtp file >> >> to create a Page Templates sourced project with a New Window page. >> >> I have experienced the following after creating a New Window page, >> adding an image and a valid url for the page to open a window on. >> a) Depending on the size of picture the panel can become displaced as >> shown in the attached picture panel.jpg >> b) I cannot open a new window, clicking on the picture does not open a new >> window >> c) The project navigation can become frozen so it is impossible to exit >> the page without closing down the preview, I think this occurs after several >> attempts to open a window by clicking on the picture. >> d) After the navigation becomes frozen and the preview closed, when I >> re-preview the project the page load stalls with a loading xml message as >> shown in loading.jpg. The only way to get the page to load again is to >> completely exit Xerte and then restart Xerte. >> >> Is anyone using this page template successfully? >> Are my experiences unique? >> If so what am I doing wrong? >> >> 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 mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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 >> >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > _______________________________________________ > Xerte mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Sun Jul 3 19:48:12 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Sun, 03 Jul 2011 20:48:12 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> Message-ID: <4E10B96C.6070407@tor.nl> Good question.... This one? Tom Op 3-7-2011 20:16, Kemp Johnathan schreef: > Hello Tom, > > Which version of New Page are you using, - the one in the current > Xerte download or the latest from the svn? > > I still can't get it to work in either Internet Explorer (32 bit) or > Opera. > > I have created a test html file that opens a new window using java > script and this successfully opens a new window in both browsers so I > don't think the browser settings are the source of the problem. > > Kind regards > > Johnathan > > On 2 July 2011 21:10, Tom Reijnders > wrote: > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time once > the page is open. You have to navigate to another page and > re-enter this page if you want to open the window again. > > As this is implemented using javascropt openWindow, you will have > to allow pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: >> Hello Tom, >> >> Thanks for the info. >> >> I tried publishing the new page project and opening the page in >> both Opera and Internet Explorer. >> >> The good news is that in the browser I could not get the page to >> crash to the loading xml display. >> >> However I still could not get it to open a new window. >> >> Do I simple enter a URL into the wizard form's URL field e.g. >> http://www.bbc.co.uk >> >> or do I have to enter something else? >> >> Kind regards >> >> Johnathan >> >> On 2 July 2011 07:15, Tom Reijnders > > wrote: >> >> Jonathan, >> >> The new page is a bit of atrange beast as it uses javascript >> to open a new Window, i.e. to the est of my knowledge, that >> is NOT working in preview. >> >> Tom >> >> Op 2-7-2011 0:06, Kemp Johnathan schreef: >>> A while ago I tried to use the page and hit some issues that >>> I reported to this list, but subsequently have not looked at >>> the Page, being busy with looking at languaging issues for >>> the Page Wizards. >>> >>> Following a recent post regarding whether there was a Page >>> Wizard for the New Window page I have updated my Xerte svn >>> and then tried both the >>> >>> /templates/pageTemplates folder contents >>> >>> and the >>> >>> /runtime/wizards/Page Templates.xtp file >>> >>> to create a Page Templates sourced project with a New Window >>> page. >>> >>> I have experienced the following after creating a New Window >>> page, adding an image and a valid url for the page to open a >>> window on. >>> a) Depending on the size of picture the panel can become >>> displaced as shown in the attached picture panel.jpg >>> b) I cannot open a new window, clicking on the picture does >>> not open a new window >>> c) The project navigation can become frozen so it is >>> impossible to exit the page without closing down the >>> preview, I think this occurs after several attempts to open >>> a window by clicking on the picture. >>> d) After the navigation becomes frozen and the preview >>> closed, when I re-preview the project the page load stalls >>> with a loading xml message as shown in loading.jpg. The only >>> way to get the page to load again is to completely exit >>> Xerte and then restart Xerte. >>> >>> Is anyone using this page template successfully? >>> Are my experiences unique? >>> If so what am I doing wrong? >>> >>> 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 mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer 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 >> >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the >> addressee and may contain confidential information. If you >> have received this message in error, please send it back to >> me, and immediately delete it. Please do not use, copy or >> disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of >> this email do not necessarily reflect the views of the >> University of Nottingham. >> >> This message has been checked for viruses but the contents of >> an attachment >> may still contain software viruses which could damage your >> computer system: >> you are advised to perform your own checks. Email >> communications with the >> University of Nottingham may be monitored as permitted by UK >> legislation. >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: newWindow.rlm URL: From Julian.Tenney at nottingham.ac.uk Mon Jul 4 15:12:50 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 4 Jul 2011 15:12:50 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <4E0EB783.4000801@tor.nl> References: <4E0EB783.4000801@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B1E8@EXCHANGE1.ad.nottingham.ac.uk> No, it won't: you'll need to preview in a browser. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 02 July 2011 07:16 To: Xerte discussion list Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page Jonathan, The new page is a bit of atrange beast as it uses javascript to open a new Window, i.e. to the est of my knowledge, that is NOT working in preview. Tom Op 2-7-2011 0:06, Kemp Johnathan schreef: A while ago I tried to use the page and hit some issues that I reported to this list, but subsequently have not looked at the Page, being busy with looking at languaging issues for the Page Wizards. Following a recent post regarding whether there was a Page Wizard for the New Window page I have updated my Xerte svn and then tried both the /templates/pageTemplates folder contents and the /runtime/wizards/Page Templates.xtp file to create a Page Templates sourced project with a New Window page. I have experienced the following after creating a New Window page, adding an image and a valid url for the page to open a window on. a) Depending on the size of picture the panel can become displaced as shown in the attached picture panel.jpg b) I cannot open a new window, clicking on the picture does not open a new window c) The project navigation can become frozen so it is impossible to exit the page without closing down the preview, I think this occurs after several attempts to open a window by clicking on the picture. d) After the navigation becomes frozen and the preview closed, when I re-preview the project the page load stalls with a loading xml message as shown in loading.jpg. The only way to get the page to load again is to completely exit Xerte and then restart Xerte. Is anyone using this page template successfully? Are my experiences unique? If so what am I doing wrong? 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Julian.Tenney at nottingham.ac.uk Mon Jul 4 15:16:21 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 4 Jul 2011 15:16:21 +0100 Subject: [Xerte] Re: AS3 Code doesn't work in Xerte? In-Reply-To: <4E0DE00F.800@tor.nl> References: <4E0DE00F.800@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B1ED@EXCHANGE1.ad.nottingham.ac.uk> You could open an as3 swf in a new window, but xerte cannot load as3 swfs. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 01 July 2011 15:56 To: Xerte discussion list Subject: [Xerte] Re: AS3 Code doesn't work in Xerte? If you really, really need AS3, than Xerte 3 is an option. But that is a bit of a different beast, (i.e. no templates yet) Tom Op 1-7-2011 14:11, Deborah Delin schreef: Hi, I may be duplicating one part of this plea - my previous post didn't seem to come through. I have to use Actionscript 3 for a particular exercise and the code, which works fine in the SWF, doesn't work in Xerte. Is there a problem with Xerte and AS3? This is the code: 1) To attach sound to a movie clip: /var snd:grey_rod= new grey_rod(); //speaker_grey.addEventListener (MouseEvent.CLICK, soundbutton_Handler); //function soundbutton_Handler (e:MouseEvent):void { //snd.play(); 2) for a drag and drop game: var objectoriginalX:Number; var objectoriginalY:Number; triangle_mc.buttonMode = true; triangle_mc.addEventListener(MouseEvent.MOUSE_DOWN,pickupObject); triangle_mc.addEventListener(MouseEvent.MOUSE_UP, dropObject); function pickupObject(event:MouseEvent):void { event.target.startDrag(true); event.target.parent.addChild(event.target); objectoriginalX = event.target.x; objectoriginalY = event.target.y; response_txt.text = " " } function dropObject(event:MouseEvent):void { event.target.stopDrag(); var matchingTargetName:String = "target" + event.target.name; var matchingTarget:DisplayObject = getChildByName(matchingTargetName); if (event.target.dropTarget != null && event.target.dropTarget.parent == matchingTarget){ event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickupObject); event.target.removeEventListener(MouseEvent.MOUSE_UP, dropObject); event.target.buttonMode = false; event.target.x = matchingTarget.x; event.target.y = matchingTarget.y; response_txt.text = "You did it!" }else { event.target.x = objectoriginalX; event.target.y = objectoriginalY; response_txt.text = "Try again" } } Please help - why might Xerte not like this code? Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Julian.Tenney at nottingham.ac.uk Mon Jul 4 15:51:59 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 4 Jul 2011 15:51:59 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <4E0F7B47.2030004@tor.nl> References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> I can launch the new window as many times as I want to: you will only get one window though, which is desired. There is no need to navigate back to the page to reset the launching code... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 02 July 2011 21:11 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page Tried it, and here it seems to work fine. Clicking the image (to open the window) will work one time once the page is open. You have to navigate to another page and re-enter this page if you want to open the window again. As this is implemented using javascropt openWindow, you will have to allow pop-up windows. Regards, Tom Op 2-7-2011 17:38, Kemp Johnathan schreef: Hello Tom, Thanks for the info. I tried publishing the new page project and opening the page in both Opera and Internet Explorer. The good news is that in the browser I could not get the page to crash to the loading xml display. However I still could not get it to open a new window. Do I simple enter a URL into the wizard form's URL field e.g. http://www.bbc.co.uk or do I have to enter something else? Kind regards Johnathan On 2 July 2011 07:15, Tom Reijnders > wrote: Jonathan, The new page is a bit of atrange beast as it uses javascript to open a new Window, i.e. to the est of my knowledge, that is NOT working in preview. Tom Op 2-7-2011 0:06, Kemp Johnathan schreef: A while ago I tried to use the page and hit some issues that I reported to this list, but subsequently have not looked at the Page, being busy with looking at languaging issues for the Page Wizards. Following a recent post regarding whether there was a Page Wizard for the New Window page I have updated my Xerte svn and then tried both the /templates/pageTemplates folder contents and the /runtime/wizards/Page Templates.xtp file to create a Page Templates sourced project with a New Window page. I have experienced the following after creating a New Window page, adding an image and a valid url for the page to open a window on. a) Depending on the size of picture the panel can become displaced as shown in the attached picture panel.jpg b) I cannot open a new window, clicking on the picture does not open a new window c) The project navigation can become frozen so it is impossible to exit the page without closing down the preview, I think this occurs after several attempts to open a window by clicking on the picture. d) After the navigation becomes frozen and the preview closed, when I re-preview the project the page load stalls with a loading xml message as shown in loading.jpg. The only way to get the page to load again is to completely exit Xerte and then restart Xerte. Is anyone using this page template successfully? Are my experiences unique? If so what am I doing wrong? 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Julian.Tenney at nottingham.ac.uk Mon Jul 4 16:51:38 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 4 Jul 2011 16:51:38 +0100 Subject: [Xerte] FW: Google Alert - xerte Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> Unsure if Ron posted this here: apologies if so... but interesting to see Xerte running on iPads... I'd really welcome more discussion on what you guys are doing, or want to do on mobiles. From: Google Alerts [mailto:googlealerts-noreply at google.com] Sent: 03 July 2011 22:58 To: julian.tenney at nottingham.ac.uk Subject: Google Alert - xerte Web 1 new result for xerte www.mitchellmedia.co.uk > Blog Archive > Xerte on the iPad Screenshot of Xerte on iPad via Puffin Web Browser ... This wouldn't be a viable app just to enable access to Xerte content but it does provide that option ... mitchellmedia.co.uk/430 ________________________________ This as-it-happens Google Alert is brought to you by Google. Remove this alert. Create another alert. Manage your alerts. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Jul 4 16:54:11 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 4 Jul 2011 16:54:11 +0100 Subject: [Xerte] Re: Google maps template in Xerte Online Toolkit In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B30C@EXCHANGE1.ad.nottingham.ac.uk> The API has changed. Just trying to figure out why the new one won't work... -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 30 June 2011 11:21 To: Xerte discussion list Subject: [Xerte] Re: Google maps template in Xerte Online Toolkit Google has a newish interface since yesterday wondering if they've done for the API.... again Don't be evil On Thu, Jun 30, 2011 at 11:14 AM, Alistair McNaught wrote: > Just tried it on JISC Techdis sandpit and I get the same - except if I click > on the map of the world in FF it opens a new window with the map I want. > > > > A > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Usher Julie > Sent: 30 June 2011 10:01 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Google maps template in Xerte Online Toolkit > > > > Hi all > > Is anyone else having trouble viewing the maps added using the google maps > template in Xerte Online? In Internet Explorer (8) I just see a blank white > square, and in Firefox I see a map of the whole world... > > I'm a relatively new user so I may have missed something obvious - any > advice would be much appreciated. > > > > Thanks a lot > > > > Julie Usher > > > > Learning Technology > > University of Northampton > > > > Boughton Green Road > > Northampton NN2 7AL > > > > Phone: 01604 892558 > > Skype: jules_u1 > > Twitter: @LearnTechUoN > > Web: northampton.ac.uk/learntech > > > > Ranked number 1 in the UK for Value Added > > The University of Northampton has achieved the top ranking among UK > Universities for 'Value Added' in the Guardian Universities League table for > 2012. See more about this on our website. > > Award winner - Outstanding Higher Education Institution Supporting Social > Entrepreneurship 2011 (UnLtd/HEFCE) > > This e-mail is private and may be confidential and is for the intended > recipient only. If you are not the intended recipient you are strictly > prohibited from using, printing, copying, distributing or disseminating this > e-mail or any information contained in it. We virus scan all E-mails leaving > The University of Northampton but no warranty is given that this E-mail and > any attachments are virus free. You should undertake your own virus > checking. The right to monitor E-mail communications through our networks is > reserved by us. > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Alistair.McNaught at HEAcademy.ac.uk Mon Jul 4 17:09:23 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Mon, 4 Jul 2011 17:09:23 +0100 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: If there was a reliable way of taking a few simple Xerte templates that could output simple html for either local or web based consumption through a phone browser I'd be a happy person. Even if all we had was * plain text, * text plus image, * text plus audio, * text plus video and * simple m/c quiz 5 templates, built into a stripped down XOT bundle with same sharing, import, export etc options as XOT but publishing to html instead of Flash. That would be nice to see. A From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 04 July 2011 16:52 To: Xerte discussion list Subject: [Xerte] FW: Google Alert - xerte Unsure if Ron posted this here: apologies if so... but interesting to see Xerte running on iPads... I'd really welcome more discussion on what you guys are doing, or want to do on mobiles. From: Google Alerts [mailto:googlealerts-noreply at google.com] Sent: 03 July 2011 22:58 To: julian.tenney at nottingham.ac.uk Subject: Google Alert - xerte Web 1 new result for xerte www.mitchellmedia.co.uk > Blog Archive > Xerte on the iPad Screenshot of Xerte on iPad via Puffin Web Browser ... This wouldn't be a viable app just to enable access to Xerte content but it does provide that option ... mitchellmedia.co.uk/430 ________________________________ This as-it-happens Google Alert is brought to you by Google. Remove this alert. Create another alert. Manage your alerts. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Mon Jul 4 17:10:27 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 4 Jul 2011 17:10:27 +0100 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B328@EXCHANGE1.ad.nottingham.ac.uk> I'm expecting a rabid horde of eager open source developers to come charging over the hill any minute now... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 04 July 2011 17:09 To: Xerte discussion list Subject: [Xerte] Re: FW: Google Alert - xerte If there was a reliable way of taking a few simple Xerte templates that could output simple html for either local or web based consumption through a phone browser I'd be a happy person. Even if all we had was * plain text, * text plus image, * text plus audio, * text plus video and * simple m/c quiz 5 templates, built into a stripped down XOT bundle with same sharing, import, export etc options as XOT but publishing to html instead of Flash. That would be nice to see. A From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 04 July 2011 16:52 To: Xerte discussion list Subject: [Xerte] FW: Google Alert - xerte Unsure if Ron posted this here: apologies if so... but interesting to see Xerte running on iPads... I'd really welcome more discussion on what you guys are doing, or want to do on mobiles. From: Google Alerts [mailto:googlealerts-noreply at google.com] Sent: 03 July 2011 22:58 To: julian.tenney at nottingham.ac.uk Subject: Google Alert - xerte Web 1 new result for xerte www.mitchellmedia.co.uk > Blog Archive > Xerte on the iPad Screenshot of Xerte on iPad via Puffin Web Browser ... This wouldn't be a viable app just to enable access to Xerte content but it does provide that option ... mitchellmedia.co.uk/430 ________________________________ This as-it-happens Google Alert is brought to you by Google. Remove this alert. Create another alert. Manage your alerts. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Alistair.McNaught at HEAcademy.ac.uk Mon Jul 4 17:20:08 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Mon, 4 Jul 2011 17:20:08 +0100 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F058A75B328@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F058A75B328@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I just got knocked over in the rush.. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 04 July 2011 17:10 To: Xerte discussion list Subject: [Xerte] Re: FW: Google Alert - xerte I'm expecting a rabid horde of eager open source developers to come charging over the hill any minute now... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 04 July 2011 17:09 To: Xerte discussion list Subject: [Xerte] Re: FW: Google Alert - xerte If there was a reliable way of taking a few simple Xerte templates that could output simple html for either local or web based consumption through a phone browser I'd be a happy person. Even if all we had was * plain text, * text plus image, * text plus audio, * text plus video and * simple m/c quiz 5 templates, built into a stripped down XOT bundle with same sharing, import, export etc options as XOT but publishing to html instead of Flash. That would be nice to see. A From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 04 July 2011 16:52 To: Xerte discussion list Subject: [Xerte] FW: Google Alert - xerte Unsure if Ron posted this here: apologies if so... but interesting to see Xerte running on iPads... I'd really welcome more discussion on what you guys are doing, or want to do on mobiles. From: Google Alerts [mailto:googlealerts-noreply at google.com] Sent: 03 July 2011 22:58 To: julian.tenney at nottingham.ac.uk Subject: Google Alert - xerte Web 1 new result for xerte www.mitchellmedia.co.uk > Blog Archive > Xerte on the iPad Screenshot of Xerte on iPad via Puffin Web Browser ... This wouldn't be a viable app just to enable access to Xerte content but it does provide that option ... mitchellmedia.co.uk/430 ________________________________ This as-it-happens Google Alert is brought to you by Google. Remove this alert. Create another alert. Manage your alerts. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Mon Jul 4 17:31:14 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 4 Jul 2011 17:31:14 +0100 Subject: [Xerte] Re: Xerte Develper Nonference: Suggested Dates Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B34B@EXCHANGE1.ad.nottingham.ac.uk> Hi, I'm looking at Thursday 15 and Friday 16th September: that's the best date for the most people if we do a two day event. More information to follow, but put those days in your diary. Now we have a date, I'll find a venue... Julian From: Tenney Julian Sent: 27 June 2011 09:49 To: 'Xerte discussion list' Subject: Xerte Develper Nonference: Suggested Dates For those of you that missed this on Friday... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 24 June 2011 09:13 To: Xerte discussion list Subject: [Xerte] ANN: Xerte Develper Nonference: Suggested Dates We are looking to host a two or three day even in September for developers to come together and work on some Xerte stuff, learn and share ideas. There is some current community based work afoot to address internationalisation, and those developers were looking to meet up to move some ideas forward. There are some other ideas that could really do with prototyping, and would benefit from some group discussion: mobile delivery, for example, and Alistair has some accessibility areas he'd like to improve. Everyone always has loads of ideas for new templates as well, it would be good to share some knowledge about Xerte 3.0, and I'd welcome anything - anything at all - that others would like to put on the agenda The event would be free, and fairly DIY. I'm happy to suggest Nottingham as a venue, but also open to ideas for other venues that might be nice. Attendees would pay travel and expenses, although there may be some booty for people willing to take on certain developments. It's all quite embryonic, but first off I need to get some idea of number of people who'd like to get together, and dates that are suitable in the middle two weeks of September: register your interest here: http://doodle.com/e9s9raax55ndsxga -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Mon Jul 4 19:58:34 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 04 Jul 2011 20:58:34 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4E120D5A.3040203@tor.nl> What I see here, but, I am not using the latest code... If I close the Window, I cannor reopen it, unless I navigate to another page and back.... Op 4-7-2011 16:51, Julian Tenney schreef: > > I can launch the new window as many times as I want to: you will only > get one window though, which is desired. There is no need to navigate > back to the page to reset the launching code... > > *From:* xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Tom Reijnders > *Sent:* 02 July 2011 21:11 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time once the > page is open. You have to navigate to another page and re-enter this > page if you want to open the window again. > > As this is implemented using javascropt openWindow, you will have to > allow pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > Thanks for the info. > > I tried publishing the new page project and opening the page in both > Opera and Internet Explorer. > > The good news is that in the browser I could not get the page to crash > to the loading xml display. > > However I still could not get it to open a new window. > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > or do I have to enter something else? > > Kind regards > > Johnathan > > On 2 July 2011 07:15, Tom Reijnders > wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to open > a new Window, i.e. to the est of my knowledge, that is NOT working in > preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I > reported to this list, but subsequently have not looked at the Page, > being busy with looking at languaging issues for the Page Wizards. > > Following a recent post regarding whether there was a Page Wizard for > the New Window page I have updated my Xerte svn and then tried both the > > /templates/pageTemplates folder contents > > and the > > /runtime/wizards/Page Templates.xtp file > > to create a Page Templates sourced project with a New Window page. > > I have experienced the following after creating a New Window page, > adding an image and a valid url for the page to open a window on. > > a) Depending on the size of picture the panel can become displaced as > shown in the attached picture panel.jpg > > b) I cannot open a new window, clicking on the picture does not open a > new window > > c) The project navigation can become frozen so it is impossible to > exit the page without closing down the preview, I think this occurs > after several attempts to open a window by clicking on the picture. > > d) After the navigation becomes frozen and the preview closed, when I > re-preview the project the page load stalls with a loading xml message > as shown in loading.jpg. The only way to get the page to load again is > to completely exit Xerte and then restart Xerte. > > Is anyone using this page template successfully? > > Are my experiences unique? > > If so what am I doing wrong? > > 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 mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your computer > system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 reijnders at tor.nl Mon Jul 4 20:00:48 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 04 Jul 2011 21:00:48 +0200 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4E120DE0.3000509@tor.nl> We have had several requests to make Xerte (online) learning objects available through IOS (iPad, iPod, iPhone) Op 4-7-2011 17:51, Julian Tenney schreef: > > Unsure if Ron posted this here: apologies if so... but interesting to > see Xerte running on iPads... > > I'd really welcome more discussion on what you guys are doing, or want > to do on mobiles. > > *From:* Google Alerts [mailto:googlealerts-noreply at google.com] > *Sent:* 03 July 2011 22:58 > *To:* julian.tenney at nottingham.ac.uk > *Subject:* Google Alert - xerte > > *Web* > > > > *1* new result for *xerte* > > www.mitchellmedia.co.uk ? Blog Archive ? *Xerte* on the iPad > > Screenshot of *Xerte* on iPad via Puffin Web Browser *...* This > wouldn't be a viable app just to enable access to *Xerte* content but > it does provide that option *...* > mitchellmedia.co.uk/430 > > > ------------------------------------------------------------------------ > > This as-it-happens Google Alert is brought to you by Google. > > Remove > > this alert. > Create > > another alert. > Manage > > your alerts. > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 patrick.lockley at googlemail.com Mon Jul 4 20:26:56 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 4 Jul 2011 20:26:56 +0100 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: <4E120DE0.3000509@tor.nl> References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <4E120DE0.3000509@tor.nl> Message-ID: just put make an iphone app which searches for android shops nearby? On Mon, Jul 4, 2011 at 8:00 PM, Tom Reijnders wrote: > ** > We have had several requests to make Xerte (online) learning objects > available through IOS (iPad, iPod, iPhone) > > > Op 4-7-2011 17:51, Julian Tenney schreef: > > Unsure if Ron posted this here: apologies if so? but interesting to see > Xerte running on iPads?**** > > ** ** > > I?d really welcome more discussion on what you guys are doing, or want to > do on mobiles.**** > > ** ** > > *From:* Google Alerts [mailto:googlealerts-noreply at google.com] > > *Sent:* 03 July 2011 22:58 > *To:* julian.tenney at nottingham.ac.uk > *Subject:* Google Alert - xerte**** > > ** ** > > *Web***** > > *1* new result for *xerte***** > > **** > > www.mitchellmedia.co.uk ? Blog Archive ? *Xerte* on the iPad > Screenshot of *Xerte* on iPad via Puffin Web Browser *...* This wouldn't > be a viable app just to enable access to *Xerte* content but it does > provide that option *...* > mitchellmedia.co.uk/430 > **** > > ** ** > ------------------------------ > > This as-it-happens Google Alert is brought to you by Google. > > Removethis alert. > Createanother alert. > Manageyour alerts. > **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Mon Jul 4 20:41:32 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 04 Jul 2011 21:41:32 +0200 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <4E120DE0.3000509@tor.nl> Message-ID: <4E12176C.1060800@tor.nl> Yes.... good idea... Oh.., ehmm no, the users haven't a clue why.... I wish the Xerte project could simply boycot IOS.... I am afraid that's not the best way to go. In the end, I think it;s ok not to support IOS for the people I've spoken to. They understand it's is a bit of a political position Apple has chosen, and that we as developers are in a corner. But they really, really would appreciate a solution..... ;-) Tom Op 4-7-2011 21:26, Pat Lockley schreef: > just put make an iphone app which searches for android shops nearby? > > On Mon, Jul 4, 2011 at 8:00 PM, Tom Reijnders > wrote: > > We have had several requests to make Xerte (online) learning > objects available through IOS (iPad, iPod, iPhone) > > > Op 4-7-2011 17:51, Julian Tenney schreef: >> >> Unsure if Ron posted this here: apologies if so? but interesting >> to see Xerte running on iPads? >> >> I?d really welcome more discussion on what you guys are doing, or >> want to do on mobiles. >> >> *From:* Google Alerts [mailto:googlealerts-noreply at google.com] >> *Sent:* 03 July 2011 22:58 >> *To:* julian.tenney at nottingham.ac.uk >> >> *Subject:* Google Alert - xerte >> >> *Web* >> >> >> >> *1* new result for *xerte* >> >> www.mitchellmedia.co.uk ? Blog Archive ? *Xerte* on the iPad >> >> Screenshot of *Xerte* on iPad via Puffin Web Browser *...* This >> wouldn't be a viable app just to enable access to *Xerte* content >> but it does provide that option *...* >> mitchellmedia.co.uk/430 >> >> >> ------------------------------------------------------------------------ >> >> This as-it-happens Google Alert is brought to you by Google. >> >> Remove >> >> this alert. >> Create >> >> another alert. >> Manage >> >> your alerts. >> >> >> This message and any attachment are intended solely for the >> addressee and may contain confidential information. If you have >> received this message in error, please send it back to me, and >> immediately delete it. Please do not use, copy or disclose the >> information contained in this message or in any attachment. Any >> views or opinions expressed by the author of this email do not >> necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage >> your computer system: you are advised to perform your own checks. >> Email communications with the University of Nottingham may be >> monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 patrick.lockley at googlemail.com Mon Jul 4 20:43:35 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 4 Jul 2011 20:43:35 +0100 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: <4E12176C.1060800@tor.nl> References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <4E120DE0.3000509@tor.nl> <4E12176C.1060800@tor.nl> Message-ID: I did build a very basic PHP version once (for a limited set of page types). I'd dare try again but for the fear of being crushed under requests. On Mon, Jul 4, 2011 at 8:41 PM, Tom Reijnders wrote: > ** > Yes.... good idea... > > Oh.., ehmm no, the users haven't a clue why.... > > I wish the Xerte project could simply boycot IOS.... I am afraid that's not > the best way to go. In the end, I think it;s ok not to support IOS for the > people I've spoken to. They understand it's is a bit of a political position > Apple has chosen, and that we as developers are in a corner. But they > really, really would appreciate a solution..... ;-) > > Tom > > > > Op 4-7-2011 21:26, Pat Lockley schreef: > > just put make an iphone app which searches for android shops nearby? > > On Mon, Jul 4, 2011 at 8:00 PM, Tom Reijnders wrote: > >> We have had several requests to make Xerte (online) learning objects >> available through IOS (iPad, iPod, iPhone) >> >> >> Op 4-7-2011 17:51, Julian Tenney schreef: >> >> Unsure if Ron posted this here: apologies if so? but interesting to see >> Xerte running on iPads? >> >> >> >> I?d really welcome more discussion on what you guys are doing, or want to >> do on mobiles. >> >> >> >> *From:* Google Alerts [mailto:googlealerts-noreply at google.com] >> >> *Sent:* 03 July 2011 22:58 >> *To:* julian.tenney at nottingham.ac.uk >> *Subject:* Google Alert - xerte >> >> >> >> *Web* >> >> *1* new result for *xerte* >> >> >> >> www.mitchellmedia.co.uk ? Blog Archive ? *Xerte* on the iPad >> Screenshot of *Xerte* on iPad via Puffin Web Browser *...* This wouldn't >> be a viable app just to enable access to *Xerte* content but it does >> provide that option *...* >> mitchellmedia.co.uk/430 >> >> >> ------------------------------ >> >> This as-it-happens Google Alert is brought to you by Google. >> >> Removethis alert. >> Createanother alert. >> Manageyour alerts. >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer system: you are advised to perform your own checks. Email >> communications with the University of Nottingham may be monitored as >> permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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 >> >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > > _______________________________________________ > Xerte mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 knowledgeware at kccsoft.com Mon Jul 4 22:18:34 2011 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 4 Jul 2011 14:18:34 -0700 Subject: [Xerte] ASP code to send email Message-ID: <009c01cc3a8f$eeffaf10$ccff0d30$@kccsoft.com> I don't have permission to upload to the xerte wiki but I see attachments can be sent to this list. FWIW I'm attaching a simple script to send email from xerte by bouncing them off a .asp page. It works (you'd have to insert your own server name, etc.) but the data form is not being validated before sending, etc. Thanks to DaveB for assistance in this. RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: generic_asp_send_email.zip Type: application/x-zip-compressed Size: 3196 bytes Desc: not available URL: From knowledgeware at kccsoft.com Mon Jul 4 22:38:54 2011 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 4 Jul 2011 14:38:54 -0700 Subject: [Xerte] The dirty dozen, revealed? Message-ID: <00bb01cc3a92$c639ba50$52ad2ef0$@kccsoft.com> Will there be any clues forthcoming on this list re the dirty dozen that AS2 wannabees (like me) should focus on? RonM2 :- ) On Wed, Jun 29, 2011 at 9:58 AM, Julian Tenney wrote: > There's no avoiding some programming concepts and constructs, but I'll > let you into a secret: (whispers) it's not hard. The core language > (the stuff you use to make everything else work) is really not very > big at all, and with half a dozen concepts and half a dozen constructs you can do things. -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Tue Jul 5 07:31:37 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Tue, 5 Jul 2011 07:31:37 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <4E120D5A.3040203@tor.nl> References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> Message-ID: Last night I downloaded Xerte 2.16 from the website to see if anything had changed. I also updated my svn copy. The website version of Xerte has not changed since I started working with the New Page page, it still has the line if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ The svn update showed no changes either, since my last update. Would someone mind emailing me a zipped up working page templates based project that contains a working New Page page, so that I can be sure everything is in order so that I can test it and compare the files to the ones I am using. I tried the model Tom attached and still could not get a window to open. One last question, just to cover all bases. Is this one of those things that only works when the project's htm file is opened as a url call to a web server, rather than using file / open in a web browser? I don't have a localhost server set up so I have been testing thus far by opening the index.htm file using open with / Internet Explorer. The project runs fine it is just the New Page page does not open a window, whilst a test.htm file that just contains a bit of html and javascript opens a window with no problem. Kind regards Johnathan On 4 July 2011 19:58, Tom Reijnders wrote: > What I see here, but, I am not using the latest code... If I close the > Window, I cannor reopen it, unless I navigate to another page and back.... > > > > Op 4-7-2011 16:51, Julian Tenney schreef: > > I can launch the new window as many times as I want to: you will only get > one window though, which is desired. There is no need to navigate back to > the page to reset the launching code? > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Tom Reijnders > *Sent:* 02 July 2011 21:11 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time once the page is > open. You have to navigate to another page and re-enter this page if you > want to open the window again. > > As this is implemented using javascropt openWindow, you will have to allow > pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > > > Thanks for the info. > > > > I tried publishing the new page project and opening the page in both Opera > and Internet Explorer. > > > > The good news is that in the browser I could not get the page to crash to > the loading xml display. > > > > However I still could not get it to open a new window. > > > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > > > or do I have to enter something else? > > > > Kind regards > > > > Johnathan > > > > On 2 July 2011 07:15, Tom Reijnders wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to open a new > Window, i.e. to the est of my knowledge, that is NOT working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I reported to > this list, but subsequently have not looked at the Page, being busy with > looking at languaging issues for the Page Wizards. > > > > Following a recent post regarding whether there was a Page Wizard for the > New Window page I have updated my Xerte svn and then tried both the > > > > /templates/pageTemplates folder contents > > > > and the > > > > /runtime/wizards/Page Templates.xtp file > > > > to create a Page Templates sourced project with a New Window page. > > > > I have experienced the following after creating a New Window page, adding > an image and a valid url for the page to open a window on. > > a) Depending on the size of picture the panel can become displaced as shown > in the attached picture panel.jpg > > b) I cannot open a new window, clicking on the picture does not open a new > window > > c) The project navigation can become frozen so it is impossible to exit the > page without closing down the preview, I think this occurs after several > attempts to open a window by clicking on the picture. > > d) After the navigation becomes frozen and the preview closed, when I > re-preview the project the page load stalls with a loading xml message as > shown in loading.jpg. The only way to get the page to load again is to > completely exit Xerte and then restart Xerte. > > > > Is anyone using this page template successfully? > > Are my experiences unique? > > If so what am I doing wrong? > > > > 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 mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Alistair.McNaught at HEAcademy.ac.uk Tue Jul 5 09:17:04 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Tue, 5 Jul 2011 09:17:04 +0100 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk><4E120DE0.3000509@tor.nl><4E12176C.1060800@tor.nl> Message-ID: Can we open source Pat's brain? A From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 04 July 2011 20:44 To: Xerte discussion list Subject: [Xerte] Re: FW: Google Alert - xerte I did build a very basic PHP version once (for a limited set of page types). I'd dare try again but for the fear of being crushed under requests. On Mon, Jul 4, 2011 at 8:41 PM, Tom Reijnders wrote: Yes.... good idea... Oh.., ehmm no, the users haven't a clue why.... I wish the Xerte project could simply boycot IOS.... I am afraid that's not the best way to go. In the end, I think it;s ok not to support IOS for the people I've spoken to. They understand it's is a bit of a political position Apple has chosen, and that we as developers are in a corner. But they really, really would appreciate a solution..... ;-) Tom Op 4-7-2011 21:26, Pat Lockley schreef: just put make an iphone app which searches for android shops nearby? On Mon, Jul 4, 2011 at 8:00 PM, Tom Reijnders wrote: We have had several requests to make Xerte (online) learning objects available through IOS (iPad, iPod, iPhone) Op 4-7-2011 17:51, Julian Tenney schreef: Unsure if Ron posted this here: apologies if so... but interesting to see Xerte running on iPads... I'd really welcome more discussion on what you guys are doing, or want to do on mobiles. From: Google Alerts [mailto:googlealerts-noreply at google.com] Sent: 03 July 2011 22:58 To: julian.tenney at nottingham.ac.uk Subject: Google Alert - xerte Web 1 new result for xerte www.mitchellmedia.co.uk > Blog Archive > Xerte on the iPad Screenshot of Xerte on iPad via Puffin Web Browser ... This wouldn't be a viable app just to enable access to Xerte content but it does provide that option ... mitchellmedia.co.uk/430 ________________________________ This as-it-happens Google Alert is brought to you by Google. Remove this alert. Create another alert. Manage your alerts. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Tue Jul 5 10:03:55 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 5 Jul 2011 10:03:55 +0100 Subject: [Xerte] Re: FW: Google Alert - xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <4E120DE0.3000509@tor.nl> <4E12176C.1060800@tor.nl> Message-ID: my brain is not licensed under zombie commons On Tue, Jul 5, 2011 at 9:17 AM, Alistair McNaught < Alistair.McNaught at heacademy.ac.uk> wrote: > Can we open source Pat?s brain?**** > > ** ** > > A**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 04 July 2011 20:44 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: FW: Google Alert - xerte**** > > ** ** > > I did build a very basic PHP version once (for a limited set of page > types).**** > > ** ** > > I'd dare try again but for the fear of being crushed under requests.**** > > On Mon, Jul 4, 2011 at 8:41 PM, Tom Reijnders wrote:*** > * > > Yes.... good idea... > > Oh.., ehmm no, the users haven't a clue why.... > > I wish the Xerte project could simply boycot IOS.... I am afraid that's not > the best way to go. In the end, I think it;s ok not to support IOS for the > people I've spoken to. They understand it's is a bit of a political position > Apple has chosen, and that we as developers are in a corner. But they > really, really would appreciate a solution..... ;-) > > Tom > > > > Op 4-7-2011 21:26, Pat Lockley schreef: **** > > just put make an iphone app which searches for android shops nearby?**** > > On Mon, Jul 4, 2011 at 8:00 PM, Tom Reijnders wrote:*** > * > > We have had several requests to make Xerte (online) learning objects > available through IOS (iPad, iPod, iPhone) > > > Op 4-7-2011 17:51, Julian Tenney schreef: **** > > Unsure if Ron posted this here: apologies if so? but interesting to see > Xerte running on iPads?**** > > **** > > I?d really welcome more discussion on what you guys are doing, or want to > do on mobiles.**** > > **** > > *From:* Google Alerts [mailto:googlealerts-noreply at google.com] > > *Sent:* 03 July 2011 22:58 > *To:* julian.tenney at nottingham.ac.uk > *Subject:* Google Alert - xerte**** > > **** > > *Web***** > > *1* new result for *xerte***** > > **** > > www.mitchellmedia.co.uk ? Blog Archive ? *Xerte* on the iPad > Screenshot of *Xerte* on iPad via Puffin Web Browser *...* This wouldn't > be a viable app just to enable access to *Xerte* content but it does > provide that option *...* > mitchellmedia.co.uk/430 > **** > > **** > ------------------------------ > > This as-it-happens Google Alert is brought to you by Google. > > Removethis alert. > Createanother alert. > Manageyour alerts. > **** > > ** ** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. **** > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > **** > > ** ** > > _______________________________________________**** > > Xerte mailing list**** > > Xerte at lists.nottingham.ac.uk**** > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > ** ** > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.**** > > ** ** > > This message has been checked for viruses but the contents of an attachment**** > > may still contain software viruses which could damage your computer 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**** > > ** ** > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > **** > > ** ** > > ** ** > > _______________________________________________**** > > Xerte mailing list**** > > Xerte at lists.nottingham.ac.uk**** > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > ** ** > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.**** > > ** ** > > This message has been checked for viruses but the contents of an attachment**** > > may still contain software viruses which could damage your computer 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**** > > ** ** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > **** > > ** ** > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 mlynch at glam.ac.uk Tue Jul 5 11:49:18 2011 From: mlynch at glam.ac.uk (Lynch M (LCSS)) Date: Tue, 5 Jul 2011 10:49:18 +0000 Subject: [Xerte] Admin level account on Web toolkit? In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <4E120DE0.3000509@tor.nl> <4E12176C.1060800@tor.nl> Message-ID: <3FDB56B208335D428FD50D8C77056BAB0C8660@MailDB1.uni.glam.ac.uk> List members Just wondering (nube question) - is it possible to create an admin-level account on the toolkit so we can see and administrate users objects? If so how? Cheers -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Tue Jul 5 11:53:56 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 5 Jul 2011 11:53:56 +0100 Subject: [Xerte] Re: Admin level account on Web toolkit? In-Reply-To: <3FDB56B208335D428FD50D8C77056BAB0C8660@MailDB1.uni.glam.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <4E120DE0.3000509@tor.nl> <4E12176C.1060800@tor.nl> <3FDB56B208335D428FD50D8C77056BAB0C8660@MailDB1.uni.glam.ac.uk> Message-ID: You can create it when you install the system. If you don't create it when you install the system you need to edit the sitedetails table and add a username and password manually. this user can only log in via management.php On Tue, Jul 5, 2011 at 11:49 AM, Lynch M (LCSS) wrote: > List members > > Just wondering (nube question) ? is it possible to create an admin-level > account on the toolkit so we can see and administrate users objects? If so > how? > > Cheers > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 5 14:50:54 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 5 Jul 2011 14:50:54 +0100 Subject: [Xerte] Re: Admin level account on Web toolkit? In-Reply-To: <3FDB56B208335D428FD50D8C77056BAB0C8660@MailDB1.uni.glam.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F058A75B307@EXCHANGE1.ad.nottingham.ac.uk> <4E120DE0.3000509@tor.nl> <4E12176C.1060800@tor.nl> <3FDB56B208335D428FD50D8C77056BAB0C8660@MailDB1.uni.glam.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B731@EXCHANGE1.ad.nottingham.ac.uk> Login to management.php From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Lynch M (LCSS) Sent: 05 July 2011 11:49 To: Xerte discussion list Subject: [Xerte] Admin level account on Web toolkit? List members Just wondering (nube question) - is it possible to create an admin-level account on the toolkit so we can see and administrate users objects? If so how? Cheers -------------- next part -------------- An HTML attachment was scrubbed... URL: From Alistair.McNaught at HEAcademy.ac.uk Tue Jul 5 14:47:21 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Tue, 5 Jul 2011 14:47:21 +0100 Subject: [Xerte] Google maps template - pedagogical workarounds Message-ID: Hi everybody in answer to a query on our helpdesk I've put together a learning object that explores alternative ways of getting the Google maps functionality on Xerte online toolkits by using alternative templates a little bit creatively. http://xerte5.techdis.palepurple.co.uk/play_3617 Interestingly, the more I looked at the alternative ways of displaying maps the more excited I got about the possibilities; but then I am quite excitable.... I'm sure there are other things that I've missed so feel free to outcompete me on this! Alistair Alistair McNaught Senior Advisor JISC TechDis C/O The Higher Education Academy Building Innovation Way York Science Park YORK YO10 5BR 07870567659 Skype: alistair_techdis http://www.jisctechdis.ac.uk Interested in pragmatic inclusion- focused staff development? See JISC TechDis ITQ for accessible IT practice information and taster resource . -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 5 15:24:07 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 5 Jul 2011 15:24:07 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> Get the latest files from the svn. Yes, you will need to preview in browser, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 05 July 2011 07:32 To: Xerte discussion list Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page Last night I downloaded Xerte 2.16 from the website to see if anything had changed. I also updated my svn copy. The website version of Xerte has not changed since I started working with the New Page page, it still has the line if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ The svn update showed no changes either, since my last update. Would someone mind emailing me a zipped up working page templates based project that contains a working New Page page, so that I can be sure everything is in order so that I can test it and compare the files to the ones I am using. I tried the model Tom attached and still could not get a window to open. One last question, just to cover all bases. Is this one of those things that only works when the project's htm file is opened as a url call to a web server, rather than using file / open in a web browser? I don't have a localhost server set up so I have been testing thus far by opening the index.htm file using open with / Internet Explorer. The project runs fine it is just the New Page page does not open a window, whilst a test.htm file that just contains a bit of html and javascript opens a window with no problem. Kind regards Johnathan On 4 July 2011 19:58, Tom Reijnders > wrote: What I see here, but, I am not using the latest code... If I close the Window, I cannor reopen it, unless I navigate to another page and back.... Op 4-7-2011 16:51, Julian Tenney schreef: I can launch the new window as many times as I want to: you will only get one window though, which is desired. There is no need to navigate back to the page to reset the launching code... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 02 July 2011 21:11 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page Tried it, and here it seems to work fine. Clicking the image (to open the window) will work one time once the page is open. You have to navigate to another page and re-enter this page if you want to open the window again. As this is implemented using javascropt openWindow, you will have to allow pop-up windows. Regards, Tom Op 2-7-2011 17:38, Kemp Johnathan schreef: Hello Tom, Thanks for the info. I tried publishing the new page project and opening the page in both Opera and Internet Explorer. The good news is that in the browser I could not get the page to crash to the loading xml display. However I still could not get it to open a new window. Do I simple enter a URL into the wizard form's URL field e.g. http://www.bbc.co.uk or do I have to enter something else? Kind regards Johnathan On 2 July 2011 07:15, Tom Reijnders > wrote: Jonathan, The new page is a bit of atrange beast as it uses javascript to open a new Window, i.e. to the est of my knowledge, that is NOT working in preview. Tom Op 2-7-2011 0:06, Kemp Johnathan schreef: A while ago I tried to use the page and hit some issues that I reported to this list, but subsequently have not looked at the Page, being busy with looking at languaging issues for the Page Wizards. Following a recent post regarding whether there was a Page Wizard for the New Window page I have updated my Xerte svn and then tried both the /templates/pageTemplates folder contents and the /runtime/wizards/Page Templates.xtp file to create a Page Templates sourced project with a New Window page. I have experienced the following after creating a New Window page, adding an image and a valid url for the page to open a window on. a) Depending on the size of picture the panel can become displaced as shown in the attached picture panel.jpg b) I cannot open a new window, clicking on the picture does not open a new window c) The project navigation can become frozen so it is impossible to exit the page without closing down the preview, I think this occurs after several attempts to open a window by clicking on the picture. d) After the navigation becomes frozen and the preview closed, when I re-preview the project the page load stalls with a loading xml message as shown in loading.jpg. The only way to get the page to load again is to completely exit Xerte and then restart Xerte. Is anyone using this page template successfully? Are my experiences unique? If so what am I doing wrong? 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Tue Jul 5 15:28:45 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 5 Jul 2011 15:28:45 +0100 Subject: [Xerte] Re: Google maps template - pedagogical workarounds In-Reply-To: References: Message-ID: the geography teacher within you is still strong Obi Wan On Tue, Jul 5, 2011 at 2:47 PM, Alistair McNaught wrote: > Hi everybody > > in answer to a query on our helpdesk I've put together a learning object > that explores alternative ways of getting the Google maps functionality on > Xerte online toolkits by using alternative templates a little bit > creatively. > > > > http://xerte5.techdis.palepurple.co.uk/play_3617 > > > > Interestingly, the more I looked at the alternative ways of displaying maps > the more excited I got about the possibilities; but then I am quite > excitable?. > > I'm sure there are other things that I've missed so feel free to outcompete > me on this! > > > > Alistair > > > > Alistair McNaught > > Senior Advisor > > JISC TechDis > > C/O The Higher Education Academy Building > > Innovation Way > > York Science Park > > YORK > > YO10 5BR > > > > 07870567659 > > Skype: alistair_techdis > > http://www.jisctechdis.ac.uk > > > > Interested in pragmatic inclusion- focused staff development? > See JISC TechDis ITQ for accessible IT practice information and taster > resource. > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 5 15:33:26 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 5 Jul 2011 15:33:26 +0100 Subject: [Xerte] Re: The dirty dozen, revealed? In-Reply-To: <00bb01cc3a92$c639ba50$52ad2ef0$@kccsoft.com> References: <00bb01cc3a92$c639ba50$52ad2ef0$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B79D@EXCHANGE1.ad.nottingham.ac.uk> A good question: here's a few for starters: Understanding what properties, methods, events, objects and classes are Know that objects are made from classes and have a type, and how to create new Objects. Understand scope. Using arrays and other collections, particularly XML Running loops over arrays and other collections, particularly XML Be able to use conditional statements Be able to work with strings, numbers, dates and Boolean values Handle recursion. Know where the help is, and know how to debug. Gives you 4 spare slots. I think that covers everything you need to know to code in Xerte. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 04 July 2011 22:39 To: Xerte discussion list Subject: [Xerte] The dirty dozen, revealed? Will there be any clues forthcoming on this list re the dirty dozen that AS2 wannabees (like me) should focus on? RonM2 :- ) On Wed, Jun 29, 2011 at 9:58 AM, Julian Tenney > wrote: > There's no avoiding some programming concepts and constructs, but I'll > let you into a secret: (whispers) it's not hard. The core language > (the stuff you use to make everything else work) is really not very > big at all, and with half a dozen concepts and half a dozen constructs you can do things. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 5 15:38:46 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 5 Jul 2011 15:38:46 +0100 Subject: [Xerte] FW: More You Tube Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B7B0@EXCHANGE1.ad.nottingham.ac.uk> We have a user finding youtube videos sometimes play and sometimes don't. Is anyone else have similar experiences? I can't always replicate his experiences. So I have been looking at these Ladyhawke you tube clips for My Delirium... One works and the others don't seem to. This embed code works These embed codes don't seem to The obvious solution is use the one that works, but unfortunately it only shows the lyrics rather than the music video. My curiosity is more about why do some you tube videos not play when embedded? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 5 15:34:22 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 5 Jul 2011 15:34:22 +0100 Subject: [Xerte] Re: ASP code to send email In-Reply-To: <009c01cc3a8f$eeffaf10$ccff0d30$@kccsoft.com> References: <009c01cc3a8f$eeffaf10$ccff0d30$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A75B7A1@EXCHANGE1.ad.nottingham.ac.uk> Sign up for the wiki. I think it takes a week for permission to be granted to stop the spammers. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of KnowledgeWare Sent: 04 July 2011 22:19 To: Xerte discussion list Subject: [Xerte] ASP code to send email I don't have permission to upload to the xerte wiki but I see attachments can be sent to this list. FWIW I'm attaching a simple script to send email from xerte by bouncing them off a .asp page. It works (you'd have to insert your own server name, etc.) but the data form is not being validated before sending, etc. Thanks to DaveB for assistance in this... RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: From knowledgeware at kccsoft.com Tue Jul 5 19:33:34 2011 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Tue, 5 Jul 2011 11:33:34 -0700 Subject: [Xerte] Re: The dirty dozen, revealed? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F058A75B79D@EXCHANGE1.ad.nottingham.ac.uk> References: <00bb01cc3a92$c639ba50$52ad2ef0$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F058A75B79D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <011901cc3b42$0cac4ac0$2604e040$@kccsoft.com> Thanks for these suggestions.there's the summer gone. RonM2 :- ) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Tuesday, July 05, 2011 7:33 AM To: Xerte discussion list Subject: [Xerte] Re: The dirty dozen, revealed? A good question: here's a few for starters: Understanding what properties, methods, events, objects and classes are Know that objects are made from classes and have a type, and how to create new Objects. Understand scope. Using arrays and other collections, particularly XML Running loops over arrays and other collections, particularly XML Be able to use conditional statements Be able to work with strings, numbers, dates and Boolean values Handle recursion. Know where the help is, and know how to debug. Gives you 4 spare slots. I think that covers everything you need to know to code in Xerte. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 5 21:41:56 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 5 Jul 2011 21:41:56 +0100 Subject: [Xerte] Re: The dirty dozen, revealed? In-Reply-To: <011901cc3b42$0cac4ac0$2604e040$@kccsoft.com> References: <00bb01cc3a92$c639ba50$52ad2ef0$@kccsoft.com> <12C67A1EEC419342AF5E59DA31562C3F058A75B79D@EXCHANGE1.ad.nottingham.ac.uk>, <011901cc3b42$0cac4ac0$2604e040$@kccsoft.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F058A55390B@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Wed Jul 6 07:26:43 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Wed, 6 Jul 2011 07:26:43 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: "Get the latest files from the svn. Yes, you will need to preview in browser," I updated my SVN after reading your email. I have created a new project using the Xerte.exe in the runtime folder of the svn and hence the pageTemplates.xtp file in the svn's runtime/wizards folder. This file shows a Date modified date of 21/06/2011 I have published the project and then opened the index.htm file in both Internet Explorer and Opera and still clicking on the image fails to open a new window. Does the index.htm page have to reside on a web server and be delivered by a http request e.g. "http://localhost/project/index.htm" or should it work correctly if in Opera I use Page / Open and select index.htm from the file picker? I have attached the project so that you can see for yourself what is, or rather is not, happening. Sorry to be a nuisance with this but If I can reach a point where I have a working example I can turn it into a Page Wizard and make it available so that Deborah (see recent posts regarding actionscript 3) can use her learning module. Kind regards Johnathan On 5 July 2011 15:24, Julian Tenney wrote: > Get the latest files from the svn. Yes, you will need to preview in > browser, > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* 05 July 2011 07:32 > *To:* Xerte discussion list > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > > > Last night I downloaded Xerte 2.16 from the website to see if anything had > changed. I also updated my svn copy. > > > > The website version of Xerte has not changed since I started working with > the New Page page, it still has the line > > > > if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ > > > > The svn update showed no changes either, since my last update. > > > > Would someone mind emailing me a zipped up working page templates based > project that contains a working New Page page, so that I can be sure > everything is in order so that I can test it and compare the files to the > ones I am using. I tried the model Tom attached and still could not get a > window to open. > > > > One last question, just to cover all bases. Is this one of those things > that only works when the project's htm file is opened as a url call to a web > server, rather than using file / open in a web browser? I don't have a > localhost server set up so I have been testing thus far by opening the > index.htm file using open with / Internet Explorer. The project runs fine it > is just the New Page page does not open a window, whilst a test.htm file > that just contains a bit of html and javascript opens a window with no > problem. > > > > Kind regards > > > > Johnathan > > > > On 4 July 2011 19:58, Tom Reijnders wrote: > > What I see here, but, I am not using the latest code... If I close the > Window, I cannor reopen it, unless I navigate to another page and back.... > > > > Op 4-7-2011 16:51, Julian Tenney schreef: > > I can launch the new window as many times as I want to: you will only get > one window though, which is desired. There is no need to navigate back to > the page to reset the launching code? > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Tom Reijnders > *Sent:* 02 July 2011 21:11 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time once the page is > open. You have to navigate to another page and re-enter this page if you > want to open the window again. > > As this is implemented using javascropt openWindow, you will have to allow > pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > > > Thanks for the info. > > > > I tried publishing the new page project and opening the page in both Opera > and Internet Explorer. > > > > The good news is that in the browser I could not get the page to crash to > the loading xml display. > > > > However I still could not get it to open a new window. > > > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > > > or do I have to enter something else? > > > > Kind regards > > > > Johnathan > > > > On 2 July 2011 07:15, Tom Reijnders wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to open a new > Window, i.e. to the est of my knowledge, that is NOT working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I reported to > this list, but subsequently have not looked at the Page, being busy with > looking at languaging issues for the Page Wizards. > > > > Following a recent post regarding whether there was a Page Wizard for the > New Window page I have updated my Xerte svn and then tried both the > > > > /templates/pageTemplates folder contents > > > > and the > > > > /runtime/wizards/Page Templates.xtp file > > > > to create a Page Templates sourced project with a New Window page. > > > > I have experienced the following after creating a New Window page, adding > an image and a valid url for the page to open a window on. > > a) Depending on the size of picture the panel can become displaced as shown > in the attached picture panel.jpg > > b) I cannot open a new window, clicking on the picture does not open a new > window > > c) The project navigation can become frozen so it is impossible to exit the > page without closing down the preview, I think this occurs after several > attempts to open a window by clicking on the picture. > > d) After the navigation becomes frozen and the preview closed, when I > re-preview the project the page load stalls with a loading xml message as > shown in loading.jpg. The only way to get the page to load again is to > completely exit Xerte and then restart Xerte. > > > > Is anyone using this page template successfully? > > Are my experiences unique? > > If so what am I doing wrong? > > > > 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 mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > > Xerte mailing list > > > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: newPage svn 07_06.zip Type: application/zip Size: 724467 bytes Desc: not available URL: From reijnders at tor.nl Wed Jul 6 08:01:17 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Wed, 06 Jul 2011 09:01:17 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4E14083D.7040502@tor.nl> It is working here.... (Windows 7, 64bit, IE8(32 bit)) Op 6-7-2011 8:26, Kemp Johnathan schreef: > "Get the latest files from the svn. Yes, you will need to preview in > browser," > > I updated my SVN after reading your email. > > I have created a new project using the Xerte.exe in the runtime folder > of the svn and hence the pageTemplates.xtp file in the svn's > runtime/wizards folder. This file shows a Date modified date of 21/06/2011 > > I have published the project and then opened the index.htm file in > both Internet Explorer and Opera and still clicking on the image fails > to open a new window. > > Does the index.htm page have to reside on a web server and be > delivered by a http request e.g. > "http://localhost/project/index.htm" > > or should it work correctly if in Opera I use Page / Open and select > index.htm from the file picker? > > I have attached the project so that you can see for yourself what is, > or rather is not, happening. > > Sorry to be a nuisance with this but If I can reach a point where I > have a working example I can turn it into a Page Wizard and make it > available so that Deborah (see recent posts regarding actionscript 3) > can use her learning module. > > Kind regards > > Johnathan > > > > On 5 July 2011 15:24, Julian Tenney > wrote: > > Get the latest files from the svn. Yes, you will need to preview > in browser, > > *From:* xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk > ] *On Behalf Of *Kemp > Johnathan > *Sent:* 05 July 2011 07:32 > *To:* Xerte discussion list > > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > Last night I downloaded Xerte 2.16 from the website to see if > anything had changed. I also updated my svn copy. > > The website version of Xerte has not changed since I started > working with the New Page page, it still has the line > > if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ > > The svn update showed no changes either, since my last update. > > Would someone mind emailing me a zipped up working page templates > based project that contains a working New Page page, so that I can > be sure everything is in order so that I can test it and compare > the files to the ones I am using. I tried the model Tom attached > and still could not get a window to open. > > One last question, just to cover all bases. Is this one of those > things that only works when the project's htm file is opened as a > url call to a web server, rather than using file / open in a web > browser? I don't have a localhost server set up so I have been > testing thus far by opening the index.htm file using open with / > Internet Explorer. The project runs fine it is just the New Page > page does not open a window, whilst a test.htm file that just > contains a bit of html and javascript opens a window with no problem. > > Kind regards > > Johnathan > > On 4 July 2011 19:58, Tom Reijnders > wrote: > > What I see here, but, I am not using the latest code... If I close > the Window, I cannor reopen it, unless I navigate to another page > and back.... > > > > Op 4-7-2011 16:51, Julian Tenney schreef: > > I can launch the new window as many times as I want to: you > will only get one window though, which is desired. There is no > need to navigate back to the page to reset the launching code? > > *From:* xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Tom Reijnders > *Sent:* 02 July 2011 21:11 > *To:* xerte at lists.nottingham.ac.uk > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time > once the page is open. You have to navigate to another page > and re-enter this page if you want to open the window again. > > As this is implemented using javascropt openWindow, you will > have to allow pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > Thanks for the info. > > I tried publishing the new page project and opening the page > in both Opera and Internet Explorer. > > The good news is that in the browser I could not get the page > to crash to the loading xml display. > > However I still could not get it to open a new window. > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > or do I have to enter something else? > > Kind regards > > Johnathan > > On 2 July 2011 07:15, Tom Reijnders > wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript > to open a new Window, i.e. to the est of my knowledge, that is > NOT working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I > reported to this list, but subsequently have not looked at the > Page, being busy with looking at languaging issues for the > Page Wizards. > > Following a recent post regarding whether there was a Page > Wizard for the New Window page I have updated my Xerte svn and > then tried both the > > /templates/pageTemplates folder contents > > and the > > /runtime/wizards/Page Templates.xtp file > > to create a Page Templates sourced project with a New Window page. > > I have experienced the following after creating a New Window > page, adding an image and a valid url for the page to open a > window on. > > a) Depending on the size of picture the panel can become > displaced as shown in the attached picture panel.jpg > > b) I cannot open a new window, clicking on the picture does > not open a new window > > c) The project navigation can become frozen so it is > impossible to exit the page without closing down the preview, > I think this occurs after several attempts to open a window by > clicking on the picture. > > d) After the navigation becomes frozen and the preview closed, > when I re-preview the project the page load stalls with a > loading xml message as shown in loading.jpg. The only way to > get the page to load again is to completely exit Xerte and > then restart Xerte. > > Is anyone using this page template successfully? > > Are my experiences unique? > > If so what am I doing wrong? > > 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 mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you > have received this message in error, please send it back to > me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of > this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of > an attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email > communications with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > > _______________________________________________ > > Xerte mailing list > > > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: moz-screenshot-91.png Type: image/png Size: 103297 bytes Desc: not available URL: From ronm at mitchellmedia.co.uk Wed Jul 6 08:20:51 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 6 Jul 2011 08:20:51 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <001901cc3bad$3ed8fa50$bc8aeef0$@co.uk> Hi Jonathan Works fine here so must be something local preventing it from working for you. e.g. downloaded and extracted your zip, opened index.htm, clicked the image on page 2, got the BBC window. HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 06 July 2011 07:27 To: Xerte discussion list Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page "Get the latest files from the svn. Yes, you will need to preview in browser," I updated my SVN after reading your email. I have created a new project using the Xerte.exe in the runtime folder of the svn and hence the pageTemplates.xtp file in the svn's runtime/wizards folder. This file shows a Date modified date of 21/06/2011 I have published the project and then opened the index.htm file in both Internet Explorer and Opera and still clicking on the image fails to open a new window. Does the index.htm page have to reside on a web server and be delivered by a http request e.g. "http://localhost/project/index.htm" or should it work correctly if in Opera I use Page / Open and select index.htm from the file picker? I have attached the project so that you can see for yourself what is, or rather is not, happening. Sorry to be a nuisance with this but If I can reach a point where I have a working example I can turn it into a Page Wizard and make it available so that Deborah (see recent posts regarding actionscript 3) can use her learning module. Kind regards Johnathan On 5 July 2011 15:24, Julian Tenney wrote: Get the latest files from the svn. Yes, you will need to preview in browser, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 05 July 2011 07:32 To: Xerte discussion list Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page Last night I downloaded Xerte 2.16 from the website to see if anything had changed. I also updated my svn copy. The website version of Xerte has not changed since I started working with the New Page page, it still has the line if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ The svn update showed no changes either, since my last update. Would someone mind emailing me a zipped up working page templates based project that contains a working New Page page, so that I can be sure everything is in order so that I can test it and compare the files to the ones I am using. I tried the model Tom attached and still could not get a window to open. One last question, just to cover all bases. Is this one of those things that only works when the project's htm file is opened as a url call to a web server, rather than using file / open in a web browser? I don't have a localhost server set up so I have been testing thus far by opening the index.htm file using open with / Internet Explorer. The project runs fine it is just the New Page page does not open a window, whilst a test.htm file that just contains a bit of html and javascript opens a window with no problem. Kind regards Johnathan On 4 July 2011 19:58, Tom Reijnders wrote: What I see here, but, I am not using the latest code... If I close the Window, I cannor reopen it, unless I navigate to another page and back.... Op 4-7-2011 16:51, Julian Tenney schreef: I can launch the new window as many times as I want to: you will only get one window though, which is desired. There is no need to navigate back to the page to reset the launching code. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 02 July 2011 21:11 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page Tried it, and here it seems to work fine. Clicking the image (to open the window) will work one time once the page is open. You have to navigate to another page and re-enter this page if you want to open the window again. As this is implemented using javascropt openWindow, you will have to allow pop-up windows. Regards, Tom Op 2-7-2011 17:38, Kemp Johnathan schreef: Hello Tom, Thanks for the info. I tried publishing the new page project and opening the page in both Opera and Internet Explorer. The good news is that in the browser I could not get the page to crash to the loading xml display. However I still could not get it to open a new window. Do I simple enter a URL into the wizard form's URL field e.g. http://www.bbc.co.uk or do I have to enter something else? Kind regards Johnathan On 2 July 2011 07:15, Tom Reijnders wrote: Jonathan, The new page is a bit of atrange beast as it uses javascript to open a new Window, i.e. to the est of my knowledge, that is NOT working in preview. Tom Op 2-7-2011 0:06, Kemp Johnathan schreef: A while ago I tried to use the page and hit some issues that I reported to this list, but subsequently have not looked at the Page, being busy with looking at languaging issues for the Page Wizards. Following a recent post regarding whether there was a Page Wizard for the New Window page I have updated my Xerte svn and then tried both the /templates/pageTemplates folder contents and the /runtime/wizards/Page Templates.xtp file to create a Page Templates sourced project with a New Window page. I have experienced the following after creating a New Window page, adding an image and a valid url for the page to open a window on. a) Depending on the size of picture the panel can become displaced as shown in the attached picture panel.jpg b) I cannot open a new window, clicking on the picture does not open a new window c) The project navigation can become frozen so it is impossible to exit the page without closing down the preview, I think this occurs after several attempts to open a window by clicking on the picture. d) After the navigation becomes frozen and the preview closed, when I re-preview the project the page load stalls with a loading xml message as shown in loading.jpg. The only way to get the page to load again is to completely exit Xerte and then restart Xerte. Is anyone using this page template successfully? Are my experiences unique? If so what am I doing wrong? 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 i.donkervoort at tor.nl Wed Jul 6 09:33:15 2011 From: i.donkervoort at tor.nl (Inge Donkervoort) Date: Wed, 06 Jul 2011 10:33:15 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <001901cc3bad$3ed8fa50$bc8aeef0$@co.uk> References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> <001901cc3bad$3ed8fa50$bc8aeef0$@co.uk> Message-ID: <4E141DCB.3060607@tor.nl> Hi Jonathan, Mixed results. 1. Works fine for Windows 7 2. Does not work on Windows XP when not using http server (IE8/FF) 3. Work on the Windows XP using http server (IE8/FF) Inge Op 06-07-2011 9:20, Ron Mitchell schreef: > > Hi Jonathan > > Works fine here so must be something local preventing it from working > for you. e.g. downloaded and extracted your zip, opened index.htm, > clicked the image on page 2, got the BBC window. > > HTH > > Ron > > *From:* xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp > Johnathan > *Sent:* 06 July 2011 07:27 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > "Get the latest files from the svn. Yes, you will need to preview in > browser," > > I updated my SVN after reading your email. > > I have created a new project using the Xerte.exe in the runtime folder > of the svn and hence the pageTemplates.xtp file in the svn's > runtime/wizards folder. This file shows a Date modified date of 21/06/2011 > > I have published the project and then opened the index.htm file in > both Internet Explorer and Opera and still clicking on the image fails > to open a new window. > > Does the index.htm page have to reside on a web server and be > delivered by a http request e.g. > > "http://localhost/project/index.htm" > > or should it work correctly if in Opera I use Page / Open and select > index.htm from the file picker? > > I have attached the project so that you can see for yourself what is, > or rather is not, happening. > > Sorry to be a nuisance with this but If I can reach a point where I > have a working example I can turn it into a Page Wizard and make it > available so that Deborah (see recent posts regarding actionscript 3) > can use her learning module. > > Kind regards > > Johnathan > > On 5 July 2011 15:24, Julian Tenney > wrote: > > Get the latest files from the svn. Yes, you will need to preview in > browser, > > *From:* xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk > ] *On Behalf Of *Kemp > Johnathan > *Sent:* 05 July 2011 07:32 > *To:* Xerte discussion list > > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > Last night I downloaded Xerte 2.16 from the website to see if anything > had changed. I also updated my svn copy. > > The website version of Xerte has not changed since I started working > with the New Page page, it still has the line > > if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ > > The svn update showed no changes either, since my last update. > > Would someone mind emailing me a zipped up working page templates > based project that contains a working New Page page, so that I can be > sure everything is in order so that I can test it and compare the > files to the ones I am using. I tried the model Tom attached and still > could not get a window to open. > > One last question, just to cover all bases. Is this one of those > things that only works when the project's htm file is opened as a url > call to a web server, rather than using file / open in a web browser? > I don't have a localhost server set up so I have been testing thus far > by opening the index.htm file using open with / Internet Explorer. The > project runs fine it is just the New Page page does not open a window, > whilst a test.htm file that just contains a bit of html and javascript > opens a window with no problem. > > Kind regards > > Johnathan > > On 4 July 2011 19:58, Tom Reijnders > wrote: > > What I see here, but, I am not using the latest code... If I close the > Window, I cannor reopen it, unless I navigate to another page and back.... > > > > Op 4-7-2011 16:51, Julian Tenney schreef: > > I can launch the new window as many times as I want to: you will > only get one window though, which is desired. There is no need to > navigate back to the page to reset the launching code... > > *From:* xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Tom > Reijnders > *Sent:* 02 July 2011 21:11 > *To:* xerte at lists.nottingham.ac.uk > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time once > the page is open. You have to navigate to another page and > re-enter this page if you want to open the window again. > > As this is implemented using javascropt openWindow, you will have > to allow pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > Thanks for the info. > > I tried publishing the new page project and opening the page in > both Opera and Internet Explorer. > > The good news is that in the browser I could not get the page to > crash to the loading xml display. > > However I still could not get it to open a new window. > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > or do I have to enter something else? > > Kind regards > > Johnathan > > On 2 July 2011 07:15, Tom Reijnders > wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to > open a new Window, i.e. to the est of my knowledge, that is NOT > working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I > reported to this list, but subsequently have not looked at the > Page, being busy with looking at languaging issues for the Page > Wizards. > > Following a recent post regarding whether there was a Page Wizard > for the New Window page I have updated my Xerte svn and then tried > both the > > /templates/pageTemplates folder contents > > and the > > /runtime/wizards/Page Templates.xtp file > > to create a Page Templates sourced project with a New Window page. > > I have experienced the following after creating a New Window page, > adding an image and a valid url for the page to open a window on. > > a) Depending on the size of picture the panel can become displaced > as shown in the attached picture panel.jpg > > b) I cannot open a new window, clicking on the picture does not > open a new window > > c) The project navigation can become frozen so it is impossible to > exit the page without closing down the preview, I think this > occurs after several attempts to open a window by clicking on the > picture. > > d) After the navigation becomes frozen and the preview closed, > when I re-preview the project the page load stalls with a loading > xml message as shown in loading.jpg. The only way to get the page > to load again is to completely exit Xerte and then restart Xerte. > > Is anyone using this page template successfully? > > Are my experiences unique? > > If so what am I doing wrong? > > 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 mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > > > > _______________________________________________ > > Xerte mailing list > > > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your computer > system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your computer > system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 6 09:34:50 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Wed, 6 Jul 2011 09:34:50 +0100 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: <001901cc3bad$3ed8fa50$bc8aeef0$@co.uk> References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> <001901cc3bad$3ed8fa50$bc8aeef0$@co.uk> Message-ID: Hello and thank you to everyone who has helped me with this issue, I have now found the cause of why the page would not work. The problem became clearer when I tried the project out on a different computer - it still wouldn't work but it did trigger a security message from the Flash Player. The new window was being prevented from opening because of a lack of trust on the part of the Flash Player. As soon as I opened the Global security settings (either right click on the project, or for Flash Player 10.3 access the Flash Player settings in Control Panel) went to the advanced tab and added the project folder in the trusted folders list the New Page window worked correctly. Cue big sigh of relief and impending Page Wizard :-) Kind regards Johnathan On 6 July 2011 08:20, Ron Mitchell wrote: > Hi Jonathan > > Works fine here so must be something local preventing it from working for > you. e.g. downloaded and extracted your zip, opened index.htm, clicked the > image on page 2, got the BBC window. > > HTH > > Ron > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* 06 July 2011 07:27 > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > > > "Get the latest files from the svn. Yes, you will need to preview in > browser," > > > > I updated my SVN after reading your email. > > > > I have created a new project using the Xerte.exe in the runtime folder of > the svn and hence the pageTemplates.xtp file in the svn's runtime/wizards > folder. This file shows a Date modified date of 21/06/2011 > > > > I have published the project and then opened the index.htm file in both > Internet Explorer and Opera and still clicking on the image fails to open a > new window. > > > > Does the index.htm page have to reside on a web server and be delivered by > a http request e.g. > > "http://localhost/project/index.htm" > > > > or should it work correctly if in Opera I use Page / Open and select > index.htm from the file picker? > > > > I have attached the project so that you can see for yourself what is, or > rather is not, happening. > > > > Sorry to be a nuisance with this but If I can reach a point where I have a > working example I can turn it into a Page Wizard and make it available so > that Deborah (see recent posts regarding actionscript 3) can use her > learning module. > > > > Kind regards > > > > Johnathan > > > > > > > > On 5 July 2011 15:24, Julian Tenney > wrote: > > Get the latest files from the svn. Yes, you will need to preview in > browser, > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* 05 July 2011 07:32 > *To:* Xerte discussion list > > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > > > Last night I downloaded Xerte 2.16 from the website to see if anything had > changed. I also updated my svn copy. > > > > The website version of Xerte has not changed since I started working with > the New Page page, it still has the line > > > > if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ > > > > The svn update showed no changes either, since my last update. > > > > Would someone mind emailing me a zipped up working page templates based > project that contains a working New Page page, so that I can be sure > everything is in order so that I can test it and compare the files to the > ones I am using. I tried the model Tom attached and still could not get a > window to open. > > > > One last question, just to cover all bases. Is this one of those things > that only works when the project's htm file is opened as a url call to a web > server, rather than using file / open in a web browser? I don't have a > localhost server set up so I have been testing thus far by opening the > index.htm file using open with / Internet Explorer. The project runs fine it > is just the New Page page does not open a window, whilst a test.htm file > that just contains a bit of html and javascript opens a window with no > problem. > > > > Kind regards > > > > Johnathan > > > > On 4 July 2011 19:58, Tom Reijnders wrote: > > What I see here, but, I am not using the latest code... If I close the > Window, I cannor reopen it, unless I navigate to another page and back.... > > > > Op 4-7-2011 16:51, Julian Tenney schreef: > > I can launch the new window as many times as I want to: you will only get > one window though, which is desired. There is no need to navigate back to > the page to reset the launching code? > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Tom Reijnders > *Sent:* 02 July 2011 21:11 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time once the page is > open. You have to navigate to another page and re-enter this page if you > want to open the window again. > > As this is implemented using javascropt openWindow, you will have to allow > pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > > > Thanks for the info. > > > > I tried publishing the new page project and opening the page in both Opera > and Internet Explorer. > > > > The good news is that in the browser I could not get the page to crash to > the loading xml display. > > > > However I still could not get it to open a new window. > > > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > > > or do I have to enter something else? > > > > Kind regards > > > > Johnathan > > > > On 2 July 2011 07:15, Tom Reijnders wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript to open a new > Window, i.e. to the est of my knowledge, that is NOT working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I reported to > this list, but subsequently have not looked at the Page, being busy with > looking at languaging issues for the Page Wizards. > > > > Following a recent post regarding whether there was a Page Wizard for the > New Window page I have updated my Xerte svn and then tried both the > > > > /templates/pageTemplates folder contents > > > > and the > > > > /runtime/wizards/Page Templates.xtp file > > > > to create a Page Templates sourced project with a New Window page. > > > > I have experienced the following after creating a New Window page, adding > an image and a valid url for the page to open a window on. > > a) Depending on the size of picture the panel can become displaced as shown > in the attached picture panel.jpg > > b) I cannot open a new window, clicking on the picture does not open a new > window > > c) The project navigation can become frozen so it is impossible to exit the > page without closing down the preview, I think this occurs after several > attempts to open a window by clicking on the picture. > > d) After the navigation becomes frozen and the preview closed, when I > re-preview the project the page load stalls with a loading xml message as > shown in loading.jpg. The only way to get the page to load again is to > completely exit Xerte and then restart Xerte. > > > > Is anyone using this page template successfully? > > Are my experiences unique? > > If so what am I doing wrong? > > > > 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 mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > > > _______________________________________________ > > Xerte mailing list > > > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 i.donkervoort at tor.nl Wed Jul 6 10:20:25 2011 From: i.donkervoort at tor.nl (Inge Donkervoort) Date: Wed, 06 Jul 2011 11:20:25 +0200 Subject: [Xerte] Re: Xerte 2.n - Page Templates New Window Page In-Reply-To: References: <4E0EB783.4000801@tor.nl> <4E0F7B47.2030004@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B258@EXCHANGE1.ad.nottingham.ac.uk> <4E120D5A.3040203@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F058A75B781@EXCHANGE1.ad.nottingham.ac.uk> <001901cc3bad$3ed8fa50$bc8aeef0$@co.uk> Message-ID: <4E1428D9.2040108@tor.nl> Hi, The teachers from the Globalskolen in Norway are very enthusiastic about Xerte to and made a tutorial in Norsk. See this example in the Norsk Xerte http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ Bye, Inge Op 06-07-2011 10:34, Kemp Johnathan schreef: > Hello and thank you to everyone who has helped me with this issue, I > have now found the cause of why the page would not work. The problem > became clearer when I tried the project out on a different computer - > it still wouldn't work but it did trigger a security message from the > Flash Player. > > The new window was being prevented from opening because of a lack of > trust on the part of the Flash Player. > > As soon as I opened the Global security settings (either right click > on the project, or for Flash Player 10.3 access the Flash Player > settings in Control Panel) went to the advanced tab and added the > project folder in the trusted folders list the New Page window worked > correctly. > > Cue big sigh of relief and impending Page Wizard :-) > > Kind regards > > Johnathan > > > > On 6 July 2011 08:20, Ron Mitchell > wrote: > > Hi Jonathan > > Works fine here so must be something local preventing it from > working for you. e.g. downloaded and extracted your zip, opened > index.htm, clicked the image on page 2, got the BBC window. > > HTH > > Ron > > *From:* xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk > ] *On Behalf Of *Kemp > Johnathan > *Sent:* 06 July 2011 07:27 > > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > "Get the latest files from the svn. Yes, you will need to preview > in browser," > > I updated my SVN after reading your email. > > I have created a new project using the Xerte.exe in the runtime > folder of the svn and hence the pageTemplates.xtp file in the > svn's runtime/wizards folder. This file shows a Date modified date > of 21/06/2011 > > I have published the project and then opened the index.htm file in > both Internet Explorer and Opera and still clicking on the image > fails to open a new window. > > Does the index.htm page have to reside on a web server and be > delivered by a http request e.g. > > "http://localhost/project/index.htm" > > or should it work correctly if in Opera I use Page / Open and > select index.htm from the file picker? > > I have attached the project so that you can see for yourself what > is, or rather is not, happening. > > Sorry to be a nuisance with this but If I can reach a point where > I have a working example I can turn it into a Page Wizard and make > it available so that Deborah (see recent posts regarding > actionscript 3) can use her learning module. > > Kind regards > > Johnathan > > On 5 July 2011 15:24, Julian Tenney > > wrote: > > Get the latest files from the svn. Yes, you will need to preview > in browser, > > *From:* xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk > ] *On Behalf Of *Kemp > Johnathan > *Sent:* 05 July 2011 07:32 > *To:* Xerte discussion list > > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > Last night I downloaded Xerte 2.16 from the website to see if > anything had changed. I also updated my svn copy. > > The website version of Xerte has not changed since I started > working with the New Page page, it still has the line > > if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ > > The svn update showed no changes either, since my last update. > > Would someone mind emailing me a zipped up working page templates > based project that contains a working New Page page, so that I can > be sure everything is in order so that I can test it and compare > the files to the ones I am using. I tried the model Tom attached > and still could not get a window to open. > > One last question, just to cover all bases. Is this one of those > things that only works when the project's htm file is opened as a > url call to a web server, rather than using file / open in a web > browser? I don't have a localhost server set up so I have been > testing thus far by opening the index.htm file using open with / > Internet Explorer. The project runs fine it is just the New Page > page does not open a window, whilst a test.htm file that just > contains a bit of html and javascript opens a window with no problem. > > Kind regards > > Johnathan > > On 4 July 2011 19:58, Tom Reijnders > wrote: > > What I see here, but, I am not using the latest code... If I close > the Window, I cannor reopen it, unless I navigate to another page > and back.... > > > > Op 4-7-2011 16:51, Julian Tenney schreef: > > I can launch the new window as many times as I want to: you > will only get one window though, which is desired. There is no > need to navigate back to the page to reset the launching code? > > *From:* xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Tom Reijnders > *Sent:* 02 July 2011 21:11 > *To:* xerte at lists.nottingham.ac.uk > > *Subject:* [Xerte] Re: Xerte 2.n - Page Templates New Window Page > > Tried it, and here it seems to work fine. > > Clicking the image (to open the window) will work one time > once the page is open. You have to navigate to another page > and re-enter this page if you want to open the window again. > > As this is implemented using javascropt openWindow, you will > have to allow pop-up windows. > > Regards, > > Tom > > Op 2-7-2011 17:38, Kemp Johnathan schreef: > > Hello Tom, > > Thanks for the info. > > I tried publishing the new page project and opening the page > in both Opera and Internet Explorer. > > The good news is that in the browser I could not get the page > to crash to the loading xml display. > > However I still could not get it to open a new window. > > Do I simple enter a URL into the wizard form's URL field e.g. > http://www.bbc.co.uk > > or do I have to enter something else? > > Kind regards > > Johnathan > > On 2 July 2011 07:15, Tom Reijnders > wrote: > > Jonathan, > > The new page is a bit of atrange beast as it uses javascript > to open a new Window, i.e. to the est of my knowledge, that is > NOT working in preview. > > Tom > > Op 2-7-2011 0:06, Kemp Johnathan schreef: > > A while ago I tried to use the page and hit some issues that I > reported to this list, but subsequently have not looked at the > Page, being busy with looking at languaging issues for the > Page Wizards. > > Following a recent post regarding whether there was a Page > Wizard for the New Window page I have updated my Xerte svn and > then tried both the > > /templates/pageTemplates folder contents > > and the > > /runtime/wizards/Page Templates.xtp file > > to create a Page Templates sourced project with a New Window page. > > I have experienced the following after creating a New Window > page, adding an image and a valid url for the page to open a > window on. > > a) Depending on the size of picture the panel can become > displaced as shown in the attached picture panel.jpg > > b) I cannot open a new window, clicking on the picture does > not open a new window > > c) The project navigation can become frozen so it is > impossible to exit the page without closing down the preview, > I think this occurs after several attempts to open a window by > clicking on the picture. > > d) After the navigation becomes frozen and the preview closed, > when I re-preview the project the page load stalls with a > loading xml message as shown in loading.jpg. The only way to > get the page to load again is to completely exit Xerte and > then restart Xerte. > > Is anyone using this page template successfully? > > Are my experiences unique? > > If so what am I doing wrong? > > 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 mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you > have received this message in error, please send it back to > me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of > this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of > an attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email > communications with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > > > > _______________________________________________ > > Xerte mailing list > > > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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 > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer system: > you are advised to perform your own checks. Email communications > with the > University of Nottingham may be monitored as permitted by UK > legislation. > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 i.donkervoort at tor.nl Wed Jul 6 10:31:45 2011 From: i.donkervoort at tor.nl (Inge Donkervoort) Date: Wed, 06 Jul 2011 11:31:45 +0200 Subject: [Xerte] Xerte in Norway Message-ID: <4E142B81.9090200@tor.nl> Hi, The teachers from the Globalskolen in Norway are very enthusiastic about Xerte to and made a tutorial in Norsk. See this example in the Norsk Xerte http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ Bye, Inge PS Sorry I used the wrong thread From Julian.Tenney at nottingham.ac.uk Wed Jul 6 10:33:14 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 6 Jul 2011 10:33:14 +0100 Subject: [Xerte] Re: Xerte in Norway In-Reply-To: <4E142B81.9090200@tor.nl> References: <4E142B81.9090200@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D2AF157A@EXCHANGE1.ad.nottingham.ac.uk> Cool. That's using the new languages functionality? -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort Sent: 06 July 2011 10:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte in Norway Hi, The teachers from the Globalskolen in Norway are very enthusiastic about Xerte to and made a tutorial in Norsk. See this example in the Norsk Xerte http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ Bye, Inge PS Sorry I used the wrong thread _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From i.donkervoort at tor.nl Wed Jul 6 10:40:39 2011 From: i.donkervoort at tor.nl (Inge Donkervoort) Date: Wed, 06 Jul 2011 11:40:39 +0200 Subject: [Xerte] Re: Xerte in Norway In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D2AF157A@EXCHANGE1.ad.nottingham.ac.uk> References: <4E142B81.9090200@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F05D2AF157A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4E142D97.5030803@tor.nl> Not yet, we did it by hand ;) Created a special engine and translated the models from the Page Template. Op 06-07-2011 11:33, Julian Tenney schreef: > Cool. That's using the new languages functionality? > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort > Sent: 06 July 2011 10:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Xerte in Norway > > Hi, > > The teachers from the Globalskolen in Norway are very enthusiastic about > Xerte to and made a tutorial in Norsk. See this example in the Norsk > Xerte http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ > > Bye, > Inge > > PS Sorry I used the wrong thread > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 6 11:09:03 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 6 Jul 2011 11:09:03 +0100 Subject: [Xerte] Re: Xerte in Norway In-Reply-To: <4E142D97.5030803@tor.nl> References: <4E142B81.9090200@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F05D2AF157A@EXCHANGE1.ad.nottingham.ac.uk> <4E142D97.5030803@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D2AF15D2@EXCHANGE1.ad.nottingham.ac.uk> Well, you can make a norsk.xml file now and add it to the languages folder... -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort Sent: 06 July 2011 10:41 To: Xerte discussion list Subject: [Xerte] Re: Xerte in Norway Not yet, we did it by hand ;) Created a special engine and translated the models from the Page Template. Op 06-07-2011 11:33, Julian Tenney schreef: > Cool. That's using the new languages functionality? > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort > Sent: 06 July 2011 10:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Xerte in Norway > > Hi, > > The teachers from the Globalskolen in Norway are very enthusiastic about > Xerte to and made a tutorial in Norsk. See this example in the Norsk > Xerte http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ > > Bye, > Inge > > PS Sorry I used the wrong thread > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From i.donkervoort at tor.nl Wed Jul 6 11:48:41 2011 From: i.donkervoort at tor.nl (Inge Donkervoort) Date: Wed, 06 Jul 2011 12:48:41 +0200 Subject: [Xerte] Re: Xerte in Norway In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D2AF15D2@EXCHANGE1.ad.nottingham.ac.uk> References: <4E142B81.9090200@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F05D2AF157A@EXCHANGE1.ad.nottingham.ac.uk> <4E142D97.5030803@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F05D2AF15D2@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4E143D89.7070702@tor.nl> We are busy with that, thanks. Op 06-07-2011 12:09, Julian Tenney schreef: > Well, you can make a norsk.xml file now and add it to the languages folder... > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort > Sent: 06 July 2011 10:41 > To: Xerte discussion list > Subject: [Xerte] Re: Xerte in Norway > > Not yet, we did it by hand ;) > Created a special engine and translated the models from the Page Template. > > Op 06-07-2011 11:33, Julian Tenney schreef: > >> Cool. That's using the new languages functionality? >> >> -----Original Message----- >> From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort >> Sent: 06 July 2011 10:32 >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Xerte in Norway >> >> Hi, >> >> The teachers from the Globalskolen in Norway are very enthusiastic about >> Xerte to and made a tutorial in Norsk. See this example in the Norsk >> Xerte http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ >> >> Bye, >> Inge >> >> PS Sorry I used the wrong thread >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > From stepiko14 at inbox.lv Wed Jul 6 13:55:19 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Wed, 06 Jul 2011 15:55:19 +0300 Subject: [Xerte] Customizing Xerte's learning object Message-ID: <1309956919.4e145b3764140@mail.inbox.lv> Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Wed Jul 6 14:49:14 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Wed, 6 Jul 2011 14:49:14 +0100 Subject: [Xerte] Xerte 2.n : Three new interim Page Wizards Message-ID: It is an exiting and volatile time at present for Page Wizards. Developments are taking place to enable Page Wizards and Page Templates to share a common set of model files and work is also progressing to support the use of Xerte in different languages. I do not intend to release an updated version of the Page Wizards until this work is completed. However so that Page Wizard users need not feel disadvantaged I have produced 3 new Page Wizards that you can add to your collection until the next full release takes place. These add the pages that were recently added to Page Templates New Window QR Code Perspectives The form that opens when you use a Page Wizard has changed slightly, full details are in the readMe.txt file. Please post back to let me know what you think of the new format. Kind regards Johnathan PS some of the new Page Wizards will need the latest version of Xerte available from the SVN, which has updated versions of some key flash files that are included when a project is published. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 3 Interim Page Wizards.zip Type: application/zip Size: 15994 bytes Desc: not available URL: From johnathan.kemp at ntlworld.com Wed Jul 6 14:52:15 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Wed, 6 Jul 2011 14:52:15 +0100 Subject: [Xerte] Re: Xerte in Norway In-Reply-To: <4E142B81.9090200@tor.nl> References: <4E142B81.9090200@tor.nl> Message-ID: Hello Inge, That is really impressive. May I ask what program you used to perform the audio and screen capture? Kind regards Johnathan On 6 July 2011 10:31, Inge Donkervoort wrote: > Hi, > > The teachers from the Globalskolen in Norway are very enthusiastic about > Xerte to and made a tutorial in Norsk. See this example in the Norsk Xerte > http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ > > Bye, > Inge > > PS Sorry I used the wrong thread > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 6 14:56:18 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Wed, 6 Jul 2011 14:56:18 +0100 Subject: [Xerte] Re: Is there a New Window Page in Wizards? In-Reply-To: References: Message-ID: Hello Deborah, Sorry for the delay, It took me a while to resolve some issues I was having with the New Page template. The good news is there is now a "New Page" Page Wizard, which I have posted to this list, so you may like to check out the posting about "3 new interim Page Wizards". Kind regards Johnathan On 1 July 2011 17:48, Deborah Delin wrote: > I am using the latest version of Wizards - April 2011 - and I don't see a > page called New Window, > > Tom, I definitely don't think I'm up to Xerte 3 so I'll just have to make > the SWF external to Xerte and link to it unless there's any good news about > New Window. > > Thanks. > > Deborah > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 i.donkervoort at tor.nl Wed Jul 6 15:40:33 2011 From: i.donkervoort at tor.nl (Inge Donkervoort) Date: Wed, 06 Jul 2011 16:40:33 +0200 Subject: [Xerte] Re: Xerte in Norway In-Reply-To: References: <4E142B81.9090200@tor.nl> Message-ID: <4E1473E1.3040004@tor.nl> Hi, I didn't create this but a Norwegian teacher did. The program she used is Jing. Jing is a really nice free tool to make screen captures and print screens. There's also a commercial version of Jing. Op 06-07-2011 15:52, Kemp Johnathan schreef: > Hello Inge, > > That is really impressive. > > May I ask what program you used to perform the audio and screen capture? > > Kind regards > > Johnathan > > On 6 July 2011 10:31, Inge Donkervoort > wrote: > > Hi, > > The teachers from the Globalskolen in Norway are very enthusiastic > about Xerte to and made a tutorial in Norsk. See this example in > the Norsk Xerte > http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ > > Bye, > Inge > > PS Sorry I used the wrong thread > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your > computer 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 mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Andrew.Davidson at warwick.ac.uk Wed Jul 6 16:14:51 2011 From: Andrew.Davidson at warwick.ac.uk (Davidson, Andrew) Date: Wed, 6 Jul 2011 16:14:51 +0100 Subject: [Xerte] Re: Xerte in Norway In-Reply-To: References: <4E142B81.9090200@tor.nl> Message-ID: I wonder if Jing could be used for some tutorials in English for budding content developers who want to level up their Xerte skills? Or maybe there is some training stuff out there which I have not yet accessed? Best Andy From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 06 July 2011 14:52 To: Xerte discussion list Subject: [Xerte] Re: Xerte in Norway Hello Inge, That is really impressive. May I ask what program you used to perform the audio and screen capture? Kind regards Johnathan On 6 July 2011 10:31, Inge Donkervoort wrote: Hi, The teachers from the Globalskolen in Norway are very enthusiastic about Xerte to and made a tutorial in Norsk. See this example in the Norsk Xerte http://norsknettskole.no/globalskolen/jpg/arnes/0607/video/xerte/ Bye, Inge PS Sorry I used the wrong thread _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From joanne.shirley at snc.ac.uk Wed Jul 6 16:10:29 2011 From: joanne.shirley at snc.ac.uk (Joanne Shirley) Date: Wed, 6 Jul 2011 16:10:29 +0100 Subject: [Xerte] Xerte work - consultation In-Reply-To: <003401cc2f4d$84d65cd0$8e831670$@co.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0588C2D57D@EXCHANGE1.ad.nottingham.ac.uk> <003401cc2f4d$84d65cd0$8e831670$@co.uk> Message-ID: <311ED7080A145C47A11D45765F1505F379A0150AC5@wbmail-01.snc.ac.uk> FAO Ron Mitchell - Hi we are in the process of producing a Xerte learning object in order to deliver Equality and Diversity to staff and learners - I am aware that you can work on this with us in order to create a different look and feel - can you tell me how I go about this and what are your rates please? Kind Regards Jo Shirley E-Trainer South Nottingham College West Bridgford Centre Greythorn Drive West Bridgford Nottingham NG2 7GA Tel: 0115 914 6419 Mob: 07816 225476 Email: joanne.shirley at snc.ac.uk [cid:image003.jpg at 01CC3BF7.3999BF80] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 20 June 2011 14:25 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte 2: New Window page I like the new window page and added a 'new page types' page linking to this updated copy of the 560 example http://itq.jisctechdis.ac.uk/xerte/play_23 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 20 June 2011 12:51 To: Xerte discussion list Subject: [Xerte] Re: Xerte 2: New Window page Get the files from the svn: I did some work on NewWindow last week - those issues might remain, but check the latest version of the files. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 20 June 2011 12:19 To: Xerte discussion list Subject: [Xerte] Xerte 2: New Window page This morning I down loaded the latest version of Xerte 2.16 to obtain the missing New Window and Bleeding Image model files. I have been trying to get the new window to work but there are a few issues. Line 8 reads if (pageIcon.templateData.textGraphics[0].url.indexOf('http') == 0){ So I changed that to reference pageIcon.templateData.newWindow[0].url.indexOf('http') Then the next few lines confused me. if (pageIcon.templateData.newWindow[0].url.indexOf('http') == 0){ previewImage = "'" + pageIcon.templateData.newWindow[0].previewImage + "'"; } else { previewImage = pageIcon.templateData.newWindow[0].previewImage; } If I add a url to the xwd form then the if condition is true and previewImage is set to have ' wrapped around it, in which case no image is displayed, so nothing to click on. If I remove the url from the xwd form then the image is displayed but after a few exiting the preview and returning to the preview, the preview stalls with a loading xml message. It seems that you need the ' wrapping to stop the page breaking but then the image value is not recognised as a valid url by the image icon. Any ideas? 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. Castle College Nottingham and South Nottingham College will merge on Friday 1 July 2011. Please note our new Telephone Enquiry Centre number which is now in operation 01159 14 64 14 This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the originator of the message. Any views expressed in this message are those of the individual sender. This message has been scanned for viruses and spam by SurfControl RiskFilter - E-mail. Castle College Nottingham and South Nottingham College merged on Friday 1 July 2011. Please note our new Telephone Enquiry Centre number which is now in operation 0115 914 6414 This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the originator of the message. Any views expressed in this message are those of the individual sender. This message has been scanned for viruses and spam by SurfControl RiskFilter - E-mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 2652 bytes Desc: image003.jpg URL: From d_b_burnett at hotmail.com Wed Jul 6 16:50:42 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 6 Jul 2011 11:50:42 -0400 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: <1309956919.4e145b3764140@mail.inbox.lv> References: <1309956919.4e145b3764140@mail.inbox.lv> Message-ID: Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis -- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Phil at environmental-academy.co.uk Wed Jul 6 17:01:49 2011 From: Phil at environmental-academy.co.uk (Phil Clothier) Date: Wed, 6 Jul 2011 17:01:49 +0100 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: References: <1309956919.4e145b3764140@mail.inbox.lv> Message-ID: <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local> For future reference, what would be the scripts to remove the other options from the bottom? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 16:51 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; ________________________________ Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis -- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 eugen.leibundgut at rmrisk.ch Wed Jul 6 17:37:27 2011 From: eugen.leibundgut at rmrisk.ch (Eugen Leibundgut) Date: Wed, 6 Jul 2011 18:37:27 +0200 Subject: [Xerte] how to change color scheme in xerte toolkit Message-ID: hello how can we change the color scheme into xerte toolkit. in my opinion a layout with white background is missing. can somebody help me? thanks for an answer. eugene -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 6 17:44:32 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 6 Jul 2011 12:44:32 -0400 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local> References: <1309956919.4e145b3764140@mail.inbox.lv>, , <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local> Message-ID: In the same script icon put: inspect(_level0.engine.IFC); That will show you all the accessible objects in the debug window. Date: Wed, 6 Jul 2011 17:01:49 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object For future reference, what would be the scripts to remove the other options from the bottom? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 16:51 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis-- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 6 17:58:46 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 6 Jul 2011 17:58:46 +0100 Subject: [Xerte] Re: how to change color scheme in xerte toolkit In-Reply-To: References: Message-ID: The learning objects or the site itself? On Wed, Jul 6, 2011 at 5:37 PM, Eugen Leibundgut wrote: > hello > > how can we change the color scheme into xerte toolkit. in my opinion a > layout with white background is missing. > > can somebody help me? > > thanks for an answer. > > eugene > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Phil at environmental-academy.co.uk Wed Jul 6 18:24:50 2011 From: Phil at environmental-academy.co.uk (Phil Clothier) Date: Wed, 6 Jul 2011 18:24:50 +0100 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: References: <1309956919.4e145b3764140@mail.inbox.lv>, , <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local> Message-ID: <15D9977AFE9E1D4FA7B2EE6225FD790F533624@SERVER.theenvironmentpractice.local> Thanks Dave, been trying to figure that out for weeks! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 17:45 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object In the same script icon put: inspect(_level0.engine.IFC); That will show you all the accessible objects in the debug window. ________________________________ Date: Wed, 6 Jul 2011 17:01:49 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object For future reference, what would be the scripts to remove the other options from the bottom? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 16:51 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; ________________________________ Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis -- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 6 18:34:16 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 6 Jul 2011 13:34:16 -0400 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: <15D9977AFE9E1D4FA7B2EE6225FD790F533624@SERVER.theenvironmentpractice.local> References: <1309956919.4e145b3764140@mail.inbox.lv>, , , , <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local>, , <15D9977AFE9E1D4FA7B2EE6225FD790F533624@SERVER.theenvironmentpractice.local> Message-ID: Now the sky's the limit. ;-) Date: Wed, 6 Jul 2011 18:24:50 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object Thanks Dave, been trying to figure that out for weeks! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 17:45 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object In the same script icon put: inspect(_level0.engine.IFC); That will show you all the accessible objects in the debug window. Date: Wed, 6 Jul 2011 17:01:49 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning objectFor future reference, what would be the scripts to remove the other options from the bottom? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 16:51 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis-- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Wed Jul 6 18:44:00 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 6 Jul 2011 20:44:00 +0300 Subject: [Xerte] Re: Is there a New Window Page in Wizards? Message-ID: Great news Jonathan! I saw how much hassle it was getting the Window to work and I really appreciate all your efforts. I will try out the new interim templates and report back shortly. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 6 18:50:13 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 6 Jul 2011 20:50:13 +0300 Subject: [Xerte] Baffling Behaviour in Xerte - SWF Display Message-ID: Hi, Sometimes Xerte behaves very strangely when displaying SWF's that I have created. I have two SWF's, exactly the same size. I set the same panel and graphic sizes on the RLO for both, and one displays perfectly and the other is skewed over to the right, a third of the stage is hidden, and whatever changes I make to the panel and graphic sizes and postions Xerte stubbornly refuses to acknowledge and still displays the same undersized panel and skewed SWF. This has happened to me several times now with various projects and I cannot figure for the life of me why it might be. Has anyone else had similar problems? Any tips or hints gratefully appreciated. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Wed Jul 6 20:55:35 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 6 Jul 2011 20:55:35 +0100 Subject: [Xerte] Re: Baffling Behaviour in Xerte - SWF Display In-Reply-To: References: Message-ID: <001201cc3c16$ae06a580$0a13f080$@co.uk> I think this generally happens when the swf doesn't have a movie size Xerte can identify. If they are swf's you're creating yourself create a background layer the size of the stage and fill it with a shape or movie clip with the colour of your choice or make it transparent. I think you'll then find xerte can identify its size and resize it properly. Worth a try anyway. HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 06 July 2011 18:50 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Baffling Behaviour in Xerte - SWF Display Hi, Sometimes Xerte behaves very strangely when displaying SWF's that I have created. I have two SWF's, exactly the same size. I set the same panel and graphic sizes on the RLO for both, and one displays perfectly and the other is skewed over to the right, a third of the stage is hidden, and whatever changes I make to the panel and graphic sizes and postions Xerte stubbornly refuses to acknowledge and still displays the same undersized panel and skewed SWF. This has happened to me several times now with various projects and I cannot figure for the life of me why it might be. Has anyone else had similar problems? Any tips or hints gratefully appreciated. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 6 21:22:19 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 6 Jul 2011 16:22:19 -0400 Subject: [Xerte] Re: Baffling Behaviour in Xerte - SWF Display In-Reply-To: <001201cc3c16$ae06a580$0a13f080$@co.uk> References: , <001201cc3c16$ae06a580$0a13f080$@co.uk> Message-ID: I agree. I asked Deborah to load a "working" swf into the problem location and see if that takes Xerte out of the equation. I was awaiting a reply to that test to suggest the frame 1 object issue. Dave From: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 6 Jul 2011 20:55:35 +0100 Subject: [Xerte] Re: Baffling Behaviour in Xerte - SWF Display I think this generally happens when the swf doesn't have a movie size Xerte can identify. If they are swf's you're creating yourself create a background layer the size of the stage and fill it with a shape or movie clip with the colour of your choice or make it transparent. I think you'll then find xerte can identify its size and resize it properly. Worth a try anyway.HTHRon From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 06 July 2011 18:50 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Baffling Behaviour in Xerte - SWF Display Hi,Sometimes Xerte behaves very strangely when displaying SWF's that I have created. I have two SWF's, exactly the same size. I set the same panel and graphic sizes on the RLO for both, and one displays perfectly and the other is skewed over to the right, a third of the stage is hidden, and whatever changes I make to the panel and graphic sizes and postions Xerte stubbornly refuses to acknowledge and still displays the same undersized panel and skewed SWF. This has happened to me several times now with various projects and I cannot figure for the life of me why it might be. Has anyone else had similar problems? Any tips or hints gratefully appreciated. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 6 22:49:56 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Wed, 6 Jul 2011 22:49:56 +0100 Subject: [Xerte] Re: Baffling Behaviour in Xerte - SWF Display In-Reply-To: References: Message-ID: Are you creating your own page or using a Page Wizard? If you are using the Text Flash SWF Page Wizard then there is an optional property "Movie Size". If you add this property and set it to the correct width and height for your SWF then I would expect the SWF to display correctly, e.g. a value of 600,400 would set the width to 600 and the height to 400. I have used this in projects to display swf files created with Wink which otherwise would display as a small image on the page. If you are creating your own page then it may be that the answer to your problem can be found by adding a Text Flash SWF page to your project temporarily. You could use this to see if setting the Movie Size parameter solved the display problem and then examine how that page is constructed and how it applies the height and width parameters, so that you could employ the same technique on your own page . I hope this helps Kind regards Johnathan On 6 July 2011 18:50, Deborah Delin wrote: > Hi, > Sometimes Xerte behaves very strangely when displaying SWF's that I have > created. I have two SWF's, exactly the same size. I set the same panel and > graphic sizes on the RLO for both, and one displays perfectly and the other > is skewed over to the right, a third of the stage is hidden, and whatever > changes I make to the panel and graphic sizes and postions Xerte stubbornly > refuses to acknowledge and still displays the same undersized panel and > skewed SWF. This has happened to me several times now with various projects > and I cannot figure for the life of me why it might be. > > Has anyone else had similar problems? Any tips or hints gratefully > appreciated. > > Deborah > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 admin at strivney.com Thu Jul 7 07:13:27 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 7 Jul 2011 09:13:27 +0300 Subject: [Xerte] Baffling Behaviour in Xerte - SWF Display Message-ID: Hi Dave, good suggestion. The key to the problem is usually in the correct testing. After a lot of frustrating testing I finally realised the root of the problem: somewhere along the line I had messed up the file location in the Wizard so that it was repeated twice. No wonder poor Xerte was struggling to display it! Ron, thanks for the tip about the background shape. I have had problems with sizing in the past so it's a good one to know. Thank you both! Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Thu Jul 7 08:08:03 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 7 Jul 2011 10:08:03 +0300 Subject: [Xerte] New Interim Wizards Message-ID: Hi Jonathan, I tried to open the New Window Page I created in Xerte in my browser but I get a blank page. When I right click Global Settings "Allow sites to save information on this computer." is already selected and I can't see any other privacy settings that might need changing. However, I am not sure that the Flash settings are the problem here as I also don't see any other information from the Wizard, like the text I inserted, in the browser window. Maybe I should go back and explain step by step how I reached this as what I did doesn't match with your instructions in the help file: I opened Xerte, clicked on Templates while the interface is selected and then select New Window. Until now everything the same as usual. In the help file you say: * Click on the Insert button and a single menu will be offered to you, point at that new menu to be offered the Page type for this wizard and click on this Page Type to add a new Page.* * * *Once the new page displays in the tree menu in the form, click on it to access the page's wizard form. Usage is identical to earlier Page Wizards from then on.* * * >From the above I understand that the Insert button is on the main Xerte interface but in fact it is in the Wizard itself. By the time I get to the Insert button I have already added my new page. Then I select the insert button and get the regular wizard page form. I hope I am explaining myself properly? My apologies if I have this all upside down.... Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jul 7 08:45:19 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 7 Jul 2011 08:45:19 +0100 Subject: [Xerte] Re: how to change color scheme in xerte toolkit In-Reply-To: <2119f98ce79d3902fb1ca6c63eacda8e@www.rmrisk.ch> References: <2119f98ce79d3902fb1ca6c63eacda8e@www.rmrisk.ch> Message-ID: Hi Eugene, That's not really what I know how to do - any one know how to add colour schemes to the drop down? Pat On Thu, Jul 7, 2011 at 8:18 AM, Eugen Leibundgut wrote: > hello patrick > > I mean the color scheme of the site itself, which the user can change left > down on the site. > > there are some color scheme there already. > > eugene > > > ________________________________ > Am 06.07.2011, 18:58, Pat Lockley (patrick.lockley at googlemail.com) schrieb: > The learning objects or the site itself? > > > > On Wed, Jul 6, 2011 at 5:37 PM, Eugen Leibundgut > > wrote: > >> hello > >> > >> how can we change the color scheme into xerte toolkit. in my opinion a > >> layout with white background is missing. > >> > >> can somebody help me? > >> > >> thanks for an answer. > >> > >> eugene > >> > >> This message and any attachment are intended solely for the addressee and > >> may contain confidential information. If you have received this message in > >> error, please send it back to me, and immediately delete it. Please do not > >> use, copy or disclose the information contained in this message or in any > >> attachment. Any views or opinions expressed by the author of this email do > >> not necessarily reflect the views of the University of Nottingham. > >> > >> This message has been checked for viruses but the contents of an >> attachment > >> may still contain software viruses which could damage your computer >> system: > >> you are advised to perform your own checks. Email communications with the > >> University of Nottingham may be monitored as permitted by UK legislation. > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> > >> This message and any attachment are intended solely for the addressee and > >> may contain confidential information. If you have received this message in > >> error, please send it back to me, and immediately delete it. ? Please do >> not > >> use, copy or disclose the information contained in this message or in any > >> attachment. ?Any views or opinions expressed by the author of this email >> do > >> not necessarily reflect the views of the University of Nottingham. > >> > >> This message has been checked for viruses but the contents of an >> attachment > >> may still contain software viruses which could damage your computer >> 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 Jul 7 10:03:45 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 7 Jul 2011 10:03:45 +0100 Subject: [Xerte] Re: Xerte 2.n : Three new interim Page Wizards In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1AC6@EXCHANGE1.ad.nottingham.ac.uk> I'm still adding some stuff to New Window: I thought it would be neat if it had an optional 'html' parameter, so you could write html into the wizard for the new window. It just makes it really easy to add embed / iframe stuff for all sorts of things, or even in fact to write your own html from scratch. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 06 July 2011 14:49 To: Xerte discussion list Subject: [Xerte] Xerte 2.n : Three new interim Page Wizards It is an exiting and volatile time at present for Page Wizards. Developments are taking place to enable Page Wizards and Page Templates to share a common set of model files and work is also progressing to support the use of Xerte in different languages. I do not intend to release an updated version of the Page Wizards until this work is completed. However so that Page Wizard users need not feel disadvantaged I have produced 3 new Page Wizards that you can add to your collection until the next full release takes place. These add the pages that were recently added to Page Templates New Window QR Code Perspectives The form that opens when you use a Page Wizard has changed slightly, full details are in the readMe.txt file. Please post back to let me know what you think of the new format. Kind regards Johnathan PS some of the new Page Wizards will need the latest version of Xerte available from the SVN, which has updated versions of some key flash files that are included when a project is published. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jul 7 10:10:50 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 7 Jul 2011 10:10:50 +0100 Subject: [Xerte] Re: how to change color scheme in xerte toolkit In-Reply-To: References: <2119f98ce79d3902fb1ca6c63eacda8e@www.rmrisk.ch> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1ADD@EXCHANGE1.ad.nottingham.ac.uk> The thing to do is to use a stylesheet to change the default scheme. Ron's got an example I'm sure. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 07 July 2011 08:45 To: Xerte discussion list Subject: [Xerte] Re: how to change color scheme in xerte toolkit Hi Eugene, That's not really what I know how to do - any one know how to add colour schemes to the drop down? Pat On Thu, Jul 7, 2011 at 8:18 AM, Eugen Leibundgut wrote: > hello patrick > > I mean the color scheme of the site itself, which the user can change left > down on the site. > > there are some color scheme there already. > > eugene > > > ________________________________ > Am 06.07.2011, 18:58, Pat Lockley (patrick.lockley at googlemail.com) schrieb: > The learning objects or the site itself? > > > > On Wed, Jul 6, 2011 at 5:37 PM, Eugen Leibundgut > > wrote: > >> hello > >> > >> how can we change the color scheme into xerte toolkit. in my opinion a > >> layout with white background is missing. > >> > >> can somebody help me? > >> > >> thanks for an answer. > >> > >> eugene > >> > >> This message and any attachment are intended solely for the addressee and > >> may contain confidential information. If you have received this message in > >> error, please send it back to me, and immediately delete it. Please do not > >> use, copy or disclose the information contained in this message or in any > >> attachment. Any views or opinions expressed by the author of this email do > >> not necessarily reflect the views of the University of Nottingham. > >> > >> This message has been checked for viruses but the contents of an >> attachment > >> may still contain software viruses which could damage your computer >> system: > >> you are advised to perform your own checks. Email communications with the > >> University of Nottingham may be monitored as permitted by UK legislation. > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> > >> This message and any attachment are intended solely for the addressee and > >> may contain confidential information. If you have received this message in > >> error, please send it back to me, and immediately delete it. ? Please do >> not > >> use, copy or disclose the information contained in this message or in any > >> attachment. ?Any views or opinions expressed by the author of this email >> do > >> not necessarily reflect the views of the University of Nottingham. > >> > >> This message has been checked for viruses but the contents of an >> attachment > >> may still contain software viruses which could damage your computer >> system: > >> you are advised to perform your own checks. Email communications with the > >> University of Nottingham may be monitored as permitted by UK legislation. > >> > >> > >> > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Phil at environmental-academy.co.uk Thu Jul 7 11:05:27 2011 From: Phil at environmental-academy.co.uk (Phil Clothier) Date: Thu, 7 Jul 2011 11:05:27 +0100 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: References: <1309956919.4e145b3764140@mail.inbox.lv>, , , , <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local>, , <15D9977AFE9E1D4FA7B2EE6225FD790F533624@SERVER.theenvironmentpractice.local> Message-ID: <15D9977AFE9E1D4FA7B2EE6225FD790F53363A@SERVER.theenvironmentpractice.local> I've added the following to the .rlo: However when I launch the scorm package it comes up with "undefined" content as shown below: Anyone got any idea what's gone wrong? Thanks to anyone that can offer advice! Phil From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 18:34 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Now the sky's the limit. ;-) Date: Wed, 6 Jul 2011 18:24:50 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object Thanks Dave, been trying to figure that out for weeks! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 17:45 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object In the same script icon put: inspect(_level0.engine.IFC); That will show you all the accessible objects in the debug window. ________________________________ Date: Wed, 6 Jul 2011 17:01:49 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object For future reference, what would be the scripts to remove the other options from the bottom? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 16:51 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; ________________________________ Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis -- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 20080 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 11722 bytes Desc: image002.jpg URL: From Julian.Tenney at nottingham.ac.uk Thu Jul 7 11:21:35 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 7 Jul 2011 11:21:35 +0100 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: <15D9977AFE9E1D4FA7B2EE6225FD790F53363A@SERVER.theenvironmentpractice.local> References: <1309956919.4e145b3764140@mail.inbox.lv>, , , , <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local>, , <15D9977AFE9E1D4FA7B2EE6225FD790F533624@SERVER.theenvironmentpractice.local> <15D9977AFE9E1D4FA7B2EE6225FD790F53363A@SERVER.theenvironmentpractice.local> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1B85@EXCHANGE1.ad.nottingham.ac.uk> You've got two entry frames on that interface: you can only have one. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Phil Clothier Sent: 07 July 2011 11:05 To: Xerte discussion list Subject: [Xerte] Re: Customizing Xerte's learning object I've added the following to the .rlo: [cid:image001.jpg at 01CC3C98.0814FAF0] However when I launch the scorm package it comes up with "undefined" content as shown below: [cid:image002.jpg at 01CC3C98.0814FAF0] Anyone got any idea what's gone wrong? Thanks to anyone that can offer advice! Phil From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 18:34 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Now the sky's the limit. ;-) Date: Wed, 6 Jul 2011 18:24:50 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object Thanks Dave, been trying to figure that out for weeks! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 17:45 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object In the same script icon put: inspect(_level0.engine.IFC); That will show you all the accessible objects in the debug window. ________________________________ Date: Wed, 6 Jul 2011 17:01:49 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object For future reference, what would be the scripts to remove the other options from the bottom? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 16:51 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; ________________________________ Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis -- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 20080 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 11722 bytes Desc: image002.jpg URL: From admin at strivney.com Thu Jul 7 11:35:30 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 7 Jul 2011 13:35:30 +0300 Subject: [Xerte] Baffling Behaviour in Xerte Message-ID: Hi Jonathan Yes I am using the Text Flash SWF Page Wizard and I hadn't noticed the option for movie size in Wizards. Thanks for pointing that out. I will use it in future. I think that Ron's tip about a shape the size of the stage worked for my most recent problem. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Phil at environmental-academy.co.uk Thu Jul 7 11:56:26 2011 From: Phil at environmental-academy.co.uk (Phil Clothier) Date: Thu, 7 Jul 2011 11:56:26 +0100 Subject: [Xerte] Re: Customizing Xerte's learning object In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1B85@EXCHANGE1.ad.nottingham.ac.uk> References: <1309956919.4e145b3764140@mail.inbox.lv>, , , , <15D9977AFE9E1D4FA7B2EE6225FD790F533622@SERVER.theenvironmentpractice.local>, , <15D9977AFE9E1D4FA7B2EE6225FD790F533624@SERVER.theenvironmentpractice.local><15D9977AFE9E1D4FA7B2EE6225FD790F53363A@SERVER.theenvironmentpractice.local> <12C67A1EEC419342AF5E59DA31562C3F05D2AF1B85@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <15D9977AFE9E1D4FA7B2EE6225FD790F533644@SERVER.theenvironmentpractice.local> Euurgh, that's embarrassing :-) cheers Julian, that sorted it From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 07 July 2011 11:22 To: Xerte discussion list Subject: [Xerte] Re: Customizing Xerte's learning object You've got two entry frames on that interface: you can only have one. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Phil Clothier Sent: 07 July 2011 11:05 To: Xerte discussion list Subject: [Xerte] Re: Customizing Xerte's learning object I've added the following to the .rlo: However when I launch the scorm package it comes up with "undefined" content as shown below: Anyone got any idea what's gone wrong? Thanks to anyone that can offer advice! Phil From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 18:34 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Now the sky's the limit. ;-) Date: Wed, 6 Jul 2011 18:24:50 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object Thanks Dave, been trying to figure that out for weeks! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 17:45 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object In the same script icon put: inspect(_level0.engine.IFC); That will show you all the accessible objects in the debug window. ________________________________ Date: Wed, 6 Jul 2011 17:01:49 +0100 From: Phil at environmental-academy.co.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Customizing Xerte's learning object For future reference, what would be the scripts to remove the other options from the bottom? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 06 July 2011 16:51 To: Xerte list Subject: [Xerte] Re: Customizing Xerte's learning object Add an entry frame icon to the Interface icon. Add an script icon to the entry frame icon. In the script icon put: _level0.engine.IFC.txtSize._visible = 0; _level0.engine.IFC.fonts._visible = 0; ________________________________ Date: Wed, 6 Jul 2011 15:55:19 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Customizing Xerte's learning object Dear all, I am just wondering if it is possible to customize Xerte's learning object, using a desktop version to remove Text Font and Text Size menus, from rlo's interface? Kindest regards Janis -- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 20080 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 11722 bytes Desc: image002.jpg URL: From eugen.leibundgut at rmrisk.ch Thu Jul 7 13:57:56 2011 From: eugen.leibundgut at rmrisk.ch (Eugen Leibundgut) Date: Thu, 7 Jul 2011 14:57:56 +0200 Subject: [Xerte] stylesheet to change the default color scheme in xerte toolkit Message-ID: Hello Ron Do you have a stylesheet to change the default color scheme in xerte toolkit? Where do i have to place this stylesheet (directory)? thanks for an answer. Eugene -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Thu Jul 7 14:40:57 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 7 Jul 2011 16:40:57 +0300 Subject: [Xerte] Baffling Problem with SWF's and Xerte - Solved! Message-ID: For anyone else who might have this problem I have understood what is going on, thanks to Ron. The swf's I had a problem with had graphics on a white stage with no background. This evidently confuses Xerte and it tries to shrink the screen into the nearest peripheral graphic, but it seems to close in further and so the display is spoilt. Ron's tip of adding a background layer the size of the desired screen sorts out the problem. Incidentally Jonathan, setting a movie size also didn't bring the desired result in these cases. Thanks to everyone for your help with this. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Thu Jul 7 15:38:55 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Thu, 7 Jul 2011 15:38:55 +0100 Subject: [Xerte] Re: New Interim Wizards In-Reply-To: References: Message-ID: Hello Deborah, There are three page wizards in the interim release. Please try the perspectives Page Wizard and see if that displays correctly. I believe the QRCode and the New Page wizards require the latest version of Xerte which is available from the Xerte svn. I was only able to get the New Page Window working once I edited it and published it from the version of Xerte in the svn. The version that can be down loaded from the Xerte home page is not as up-to-date and lacks modifications required by the New Window Page Wizard. You should be able to download a copy of the xerte 2 svn by installing Tortoise svn and then checking out from location http://xerte.googlecode.com/svn/trunk/ Kind regards Johnathan On 7 July 2011 08:08, Deborah Delin wrote: > Hi Jonathan, > > I tried to open the New Window Page I created in Xerte in my browser but I > get a blank page. When I right click Global Settings "Allow sites to save > information on this computer." is already selected and I can't see any other > privacy settings that might need changing. > > However, I am not sure that the Flash settings are the problem here as I > also don't see any other information from the Wizard, like the text I > inserted, in the browser window. > > Maybe I should go back and explain step by step how I reached this as what > I did doesn't match with your instructions in the help file: > > I opened Xerte, clicked on Templates while the interface is selected and > then select New Window. Until now everything the same as usual. > > In the help file you say: > > * Click on the Insert button and a single menu will be offered to you, > point at that new menu to be offered the Page type for this wizard and click > on this Page Type to add a new Page.* > * > * > *Once the new page displays in the tree menu in the form, click on it to > access the page's wizard form. Usage is identical to earlier Page Wizards > from then on.* > * > * > From the above I understand that the Insert button is on the main Xerte > interface but in fact it is in the Wizard itself. By the time I get to the > Insert button I have already added my new page. Then I select the insert > button and get the regular wizard page form. I hope I am explaining myself > properly? > > My apologies if I have this all upside down.... > > Deborah > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 7 16:42:38 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 7 Jul 2011 16:42:38 +0100 Subject: [Xerte] Re: New Interim Wizards In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk> If you are suing these new templates in anger, for real live end users, I would highly recommend waiting for a stable release (i.e. a new zip), or use at your own risk. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 07 July 2011 15:39 To: Xerte discussion list Subject: [Xerte] Re: New Interim Wizards Hello Deborah, There are three page wizards in the interim release. Please try the perspectives Page Wizard and see if that displays correctly. I believe the QRCode and the New Page wizards require the latest version of Xerte which is available from the Xerte svn. I was only able to get the New Page Window working once I edited it and published it from the version of Xerte in the svn. The version that can be down loaded from the Xerte home page is not as up-to-date and lacks modifications required by the New Window Page Wizard. You should be able to download a copy of the xerte 2 svn by installing Tortoise svn and then checking out from location http://xerte.googlecode.com/svn/trunk/ Kind regards Johnathan On 7 July 2011 08:08, Deborah Delin > wrote: Hi Jonathan, I tried to open the New Window Page I created in Xerte in my browser but I get a blank page. When I right click Global Settings "Allow sites to save information on this computer." is already selected and I can't see any other privacy settings that might need changing. However, I am not sure that the Flash settings are the problem here as I also don't see any other information from the Wizard, like the text I inserted, in the browser window. Maybe I should go back and explain step by step how I reached this as what I did doesn't match with your instructions in the help file: I opened Xerte, clicked on Templates while the interface is selected and then select New Window. Until now everything the same as usual. In the help file you say: Click on the Insert button and a single menu will be offered to you, point at that new menu to be offered the Page type for this wizard and click on this Page Type to add a new Page. Once the new page displays in the tree menu in the form, click on it to access the page's wizard form. Usage is identical to earlier Page Wizards from then on. >From the above I understand that the Insert button is on the main Xerte interface but in fact it is in the Wizard itself. By the time I get to the Insert button I have already added my new page. Then I select the insert button and get the regular wizard page form. I hope I am explaining myself properly? My apologies if I have this all upside down.... Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Thu Jul 7 18:02:40 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 7 Jul 2011 13:02:40 -0400 Subject: [Xerte] Moodle 2 server file structure? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk> References: , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Thu Jul 7 20:37:56 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 7 Jul 2011 20:37:56 +0100 Subject: [Xerte] Re: stylesheet to change the default color scheme in xerte toolkit In-Reply-To: References: Message-ID: <000d01cc3cdd$60fca1f0$22f5e5d0$@co.uk> Example attached. In XOT it goes in \modules\xerte\parent_templates\Nottingham\common\ Within an exported LO or one created with Xerte it just goes in the \common\ folder. HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Eugen Leibundgut Sent: 07 July 2011 13:58 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] stylesheet to change the default color scheme in xerte toolkit Hello Ron Do you have a stylesheet to change the default color scheme in xerte toolkit? Where do i have to place this stylesheet (directory)? thanks for an answer. Eugene This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: styles.css Type: text/css Size: 428 bytes Desc: not available URL: From ronm at mitchellmedia.co.uk Thu Jul 7 21:32:29 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 7 Jul 2011 21:32:29 +0100 Subject: [Xerte] Re: Moodle 2 server file structure? In-Reply-To: References: , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <001901cc3ce5$0037b550$00a71ff0$@co.uk> Hi Dave did you find your answer? Moodle 2 does have a files area but not in the same was as previously and you may not like the 1st answer/solution as it's nowhere near as straightforward as previously! 1. So if you really want to go the same route as before see http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded- on-moodle/ but if you can set it up the following might be a better option: 2. http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-ont o-moodle-2-0/ HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 07 July 2011 18:03 To: Xerte list Subject: [Xerte] Moodle 2 server file structure? In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 8 06:23:17 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 8 Jul 2011 08:23:17 +0300 Subject: [Xerte] Re: New Interim Wizards Message-ID: Hi Jonathan Yes, I can confirm that the new Perspectives wizard displays correctly using the older version of Xerte. I downloaded Tortoise and went to http://xerte.googlecode.com/svn/trunk/ but I am afraid that from here I didn't have a clue what to do. There didn't seem to be anything I could download. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Fri Jul 8 10:56:37 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Fri, 8 Jul 2011 10:56:37 +0100 Subject: [Xerte] Re: New Interim Wizards In-Reply-To: References: Message-ID: Deborah, I'm sorry I had hoped to be able to provide you with something you can use in the interim, but Julian is right. There are a lot of changes taking place at the moment both in Xerte itself and in the New Window template. Once there is an official release of Xerte that offers the support I need to make the New Window Page Wizard work, and the New Window template is finalised, I will release a New Window Page Wizard as part of a new release of Page Wizards. Until then you may wish to continue preparing material to open in a New Window page, whilst waiting for the New Window Page Wizard to become available. If you checked out the xerte files from the svn you would be getting all the latest files, but this would include work in progress, making it less than ideal for use in a live environment. Kind regards Johnathan On 8 July 2011 06:23, Deborah Delin wrote: > Hi Jonathan > > Yes, I can confirm that the new Perspectives wizard displays correctly > using the older version of Xerte. > > I downloaded Tortoise and went to http://xerte.googlecode.com/svn/trunk/ but > I am afraid that from here I didn't have a clue what to do. There didn't > seem to be anything I could download. > > Deborah > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 8 12:39:39 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 8 Jul 2011 14:39:39 +0300 Subject: [Xerte] Re: New Interim Wizards Message-ID: I really appreciate your efforts Jonathan and will wait patiently until it is stable. Let me know if you need any testing done. Deboarh -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Fri Jul 8 13:46:40 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 8 Jul 2011 13:46:40 +0100 Subject: [Xerte] Re: stylesheet to change the default color scheme in xerte toolkit In-Reply-To: References: Message-ID: <007901cc3d6d$1c6a9b60$553fd220$@co.uk> Hi copying this back to the list because others might follows the thread. The location of where you have put the styles.css is correct but you may need to clear local and/or server cache before it shows. Just to clarify this won't add any additional options to the styles menu it just customises the default style. HTH Ron From: Eugen Leibundgut [mailto:eugen.leibundgut at rmrisk.ch] Sent: 08 July 2011 12:43 To: Ron Mitchell Subject: RE: [Xerte] stylesheet to change the default color scheme in xerte toolkit hello ron thank you for your support and the stylesheet. I adapted the stylesheet and replaced the file in the directory (see attached images). thus however nothing changes (see attached images). I think that one must make still further adjustments. If yes, which and at which files? Is there somewhere a manual for customizing the look and feel of the user interface? thanks for yours help. eugene _____ Am 07.07.2011, 21:37, Ron Mitchell (ronm at mitchellmedia.co.uk) schrieb: Example attached. In XOT it goes in \modules\xerte\parent_templates\Nottingham\common\ Within an exported LO or one created with Xerte it just goes in the \common\ folder. HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Eugen Leibundgut Sent: 07 July 2011 13:58 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] stylesheet to change the default color scheme in xerte toolkit Hello Ron Do you have a stylesheet to change the default color scheme in xerte toolkit? Where do i have to place this stylesheet (directory)? thanks for an answer. Eugene This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Fri Jul 8 20:24:31 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Fri, 08 Jul 2011 21:24:31 +0200 Subject: [Xerte] Re: stylesheet to change the default color scheme in xerte toolkit In-Reply-To: <007901cc3d6d$1c6a9b60$553fd220$@co.uk> References: <007901cc3d6d$1c6a9b60$553fd220$@co.uk> Message-ID: <4E17596F.9050809@tor.nl> Depending on what version of the Xerte toolkits you are using, you migth consider editing the Nottingham.rlt file. This only works in the latest XOT 1.6: 1. Open the file /modules/xerte/parent_templates/Nottingham/Nottingham.rlt 2. search for visuals="1" Should look like 3. Change the "1"in a "2" This will give you a clean white interface without some of the buttons at the bottom: Op 8-7-2011 14:46, Ron Mitchell schreef: > > Hi > > copying this back to the list because others might follows the thread. > > The location of where you have put the styles.css is correct but you > may need to clear local and/or server cache before it shows. > > Just to clarify this won't add any additional options to the styles > menu it just customises the default style. > > HTH > > Ron > > *From:* Eugen Leibundgut [mailto:eugen.leibundgut at rmrisk.ch] > *Sent:* 08 July 2011 12:43 > *To:* Ron Mitchell > *Subject:* RE: [Xerte] stylesheet to change the default color scheme > in xerte toolkit > > hello ron > > thank you for your support and the stylesheet. I adapted the > stylesheet and replaced the file in the directory (see attached images). > > thus however nothing changes (see attached images). > > I think that one must make still further adjustments. If yes, which > and at which files? > > Is there somewhere a manual for customizing the look and feel of the > user interface? > > thanks for yours help. > > eugene > > ------------------------------------------------------------------------ > > > Am 07.07.2011, 21:37, Ron Mitchell (ronm at mitchellmedia.co.uk) schrieb: > > Example attached. > > In XOT it goes in \modules\xerte\parent_templates\Nottingham\common\ > > Within an exported LO or one created with Xerte it just goes in the > \common\ folder. > > HTH > > Ron > > *From:* xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Eugen > Leibundgut > *Sent:* 07 July 2011 13:58 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] stylesheet to change the default color scheme in > xerte toolkit > > Hello Ron > > Do you have a stylesheet to change the default color scheme in xerte > toolkit? > Where do i have to place this stylesheet (directory)? > > thanks for an answer. > > Eugene > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: moz-screenshot-92.png Type: image/png Size: 16852 bytes Desc: not available URL: From d_b_burnett at hotmail.com Sat Jul 9 16:13:56 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sat, 9 Jul 2011 11:13:56 -0400 Subject: [Xerte] Re: Moodle 2 server file structure? In-Reply-To: <001901cc3ce5$0037b550$00a71ff0$@co.uk> References: , , , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk>, , <001901cc3ce5$0037b550$00a71ff0$@co.uk> Message-ID: Thanks Ron. Not yet. I've also taken a peek at this: http://moodle.org/mod/forum/discuss.php?d=166999#p735868 I'm a bit hobbled at the moment because I do not have admin access to the Moodle 2 setup, so can't create repositories etc to test stuff. Even with that though, the workarounds are all pretty involved (I won't be adminning them myself). As well, they seem to be aimed at maintaining relative link integrity, etc. What I had the ability to do in 1.x was: - Upload and unzip SCORM shell structure. - Find that strucrure with file picker utility - add/overwrite files within that structure Is there any way at all within Moodle 2 (custom repository? files system folder?) to emulate that capability? Dave From: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Thu, 7 Jul 2011 21:32:29 +0100 Subject: [Xerte] Re: Moodle 2 server file structure? Hi Davedid you find your answer? Moodle 2 does have a files area but not in the same was as previously and you may not like the 1st answer/solution as it's nowhere near as straightforward as previously! 1. So if you really want to go the same route as before see http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/but if you can set it up the following might be a better option:2. http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ HTHRon From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 07 July 2011 18:03 To: Xerte list Subject: [Xerte] Moodle 2 server file structure? In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Sat Jul 9 20:52:34 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sat, 9 Jul 2011 15:52:34 -0400 Subject: [Xerte] FW: Re: Moodle 2 server file structure? In-Reply-To: References: , , , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk>, , <001901cc3ce5$0037b550$00a71ff0$@co.uk>, Message-ID: Point being of course, let's say you have a SCORM object layed out in a set of folders. One of those folders contains 500 Mb of video. It seems Moodle 2 is trying to say, each time you change 1 byte of any file within the SCORM .zip, you have to re-upload the entire thing. You can see how that will get old pretty quickly... I am seeing another complaint regarding "mini-websites" uploaded and unzipped. Apparently all relative links are broken, because the files are not being maintained on the server in the same relative structure. I can see their point about making resources reusable by databasing the paths, but not allowing access to the underlying SCORM structure files, or at least giving an option to "database ignore these files and maintain relative structure" is pretty short-sighted IMO. Dave From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: RE: [Xerte] Re: Moodle 2 server file structure? Date: Sat, 9 Jul 2011 11:13:56 -0400 Thanks Ron. Not yet. I've also taken a peek at this: http://moodle.org/mod/forum/discuss.php?d=166999#p735868 I'm a bit hobbled at the moment because I do not have admin access to the Moodle 2 setup, so can't create repositories etc to test stuff. Even with that though, the workarounds are all pretty involved (I won't be adminning them myself). As well, they seem to be aimed at maintaining relative link integrity, etc. What I had the ability to do in 1.x was: - Upload and unzip SCORM shell structure. - Find that strucrure with file picker utility - add/overwrite files within that structure Is there any way at all within Moodle 2 (custom repository? files system folder?) to emulate that capability? Dave From: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Thu, 7 Jul 2011 21:32:29 +0100 Subject: [Xerte] Re: Moodle 2 server file structure? Hi Davedid you find your answer? Moodle 2 does have a files area but not in the same was as previously and you may not like the 1st answer/solution as it's nowhere near as straightforward as previously! 1. So if you really want to go the same route as before see http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/but if you can set it up the following might be a better option:2. http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ HTHRon From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 07 July 2011 18:03 To: Xerte list Subject: [Xerte] Moodle 2 server file structure? In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Mon Jul 11 09:44:44 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Mon, 11 Jul 2011 09:44:44 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: References: , , , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk>, , <001901cc3ce5$0037b550$00a71ff0$@co.uk>, Message-ID: <002f01cc3fa6$cac54a30$604fde90$@co.uk> It does seem a short sighted and in many cases impractical solution. The only solution to your problem that I can think of is keep the larger media assets external and link via full url when developing the LO. Not ideal but would perhaps resolve the file size problem? Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 09 July 2011 20:53 To: Xerte list Subject: [Xerte] FW: Re: Moodle 2 server file structure? Point being of course, let's say you have a SCORM object layed out in a set of folders. One of those folders contains 500 Mb of video. It seems Moodle 2 is trying to say, each time you change 1 byte of any file within the SCORM .zip, you have to re-upload the entire thing. You can see how that will get old pretty quickly... I am seeing another complaint regarding "mini-websites" uploaded and unzipped. Apparently all relative links are broken, because the files are not being maintained on the server in the same relative structure. I can see their point about making resources reusable by databasing the paths, but not allowing access to the underlying SCORM structure files, or at least giving an option to "database ignore these files and maintain relative structure" is pretty short-sighted IMO. Dave _____ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: RE: [Xerte] Re: Moodle 2 server file structure? Date: Sat, 9 Jul 2011 11:13:56 -0400 Thanks Ron. Not yet. I've also taken a peek at this: http://moodle.org/mod/forum/discuss.php?d=166999#p735868 I'm a bit hobbled at the moment because I do not have admin access to the Moodle 2 setup, so can't create repositories etc to test stuff. Even with that though, the workarounds are all pretty involved (I won't be adminning them myself). As well, they seem to be aimed at maintaining relative link integrity, etc. What I had the ability to do in 1.x was: - Upload and unzip SCORM shell structure. - Find that strucrure with file picker utility - add/overwrite files within that structure Is there any way at all within Moodle 2 (custom repository? files system folder?) to emulate that capability? Dave _____ From: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Thu, 7 Jul 2011 21:32:29 +0100 Subject: [Xerte] Re: Moodle 2 server file structure? Hi Dave did you find your answer? Moodle 2 does have a files area but not in the same was as previously and you may not like the 1st answer/solution as it's nowhere near as straightforward as previously! 1. So if you really want to go the same route as before see http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded- on-moodle/ but if you can set it up the following might be a better option: 2. http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-ont o-moodle-2-0/ HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 07 July 2011 18:03 To: Xerte list Subject: [Xerte] Moodle 2 server file structure? In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Mon Jul 11 12:09:37 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 11 Jul 2011 07:09:37 -0400 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: <002f01cc3fa6$cac54a30$604fde90$@co.uk> References: , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk>, , , , <001901cc3ce5$0037b550$00a71ff0$@co.uk>, , , , <002f01cc3fa6$cac54a30$604fde90$@co.uk> Message-ID: Even more unsettling is it seems the database lookup for files forms a single point of failure/slowness. The same piece that runs fine on 1.9 runs painfully slowly under 2.0. And I do not believe you can simply overwrite a file anyway. The database uses the individual file sizes as part of the was to identify them, so you need to actually alter the database entry to match the new file. I think Moodle has really shot itself in the foot with this one. I would like to see a list of the supposed benefits that justified such a radical structure change. Dave From: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Mon, 11 Jul 2011 09:44:44 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? It does seem a short sighted and in many cases impractical solution.The only solution to your problem that I can think of is keep the larger media assets external and link via full url when developing the LO. Not ideal but would perhaps resolve the file size problem?Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 09 July 2011 20:53 To: Xerte list Subject: [Xerte] FW: Re: Moodle 2 server file structure? Point being of course, let's say you have a SCORM object layed out in a set of folders. One of those folders contains 500 Mb of video. It seems Moodle 2 is trying to say, each time you change 1 byte of any file within the SCORM .zip, you have to re-upload the entire thing. You can see how that will get old pretty quickly... I am seeing another complaint regarding "mini-websites" uploaded and unzipped. Apparently all relative links are broken, because the files are not being maintained on the server in the same relative structure. I can see their point about making resources reusable by databasing the paths, but not allowing access to the underlying SCORM structure files, or at least giving an option to "database ignore these files and maintain relative structure" is pretty short-sighted IMO. Dave From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: RE: [Xerte] Re: Moodle 2 server file structure? Date: Sat, 9 Jul 2011 11:13:56 -0400 Thanks Ron. Not yet. I've also taken a peek at this: http://moodle.org/mod/forum/discuss.php?d=166999#p735868 I'm a bit hobbled at the moment because I do not have admin access to the Moodle 2 setup, so can't create repositories etc to test stuff. Even with that though, the workarounds are all pretty involved (I won't be adminning them myself). As well, they seem to be aimed at maintaining relative link integrity, etc. What I had the ability to do in 1.x was: - Upload and unzip SCORM shell structure. - Find that strucrure with file picker utility - add/overwrite files within that structure Is there any way at all within Moodle 2 (custom repository? files system folder?) to emulate that capability? DaveFrom: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Thu, 7 Jul 2011 21:32:29 +0100 Subject: [Xerte] Re: Moodle 2 server file structure?Hi Davedid you find your answer? Moodle 2 does have a files area but not in the same was as previously and you may not like the 1st answer/solution as it's nowhere near as straightforward as previously! 1. So if you really want to go the same route as before see http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/but if you can set it up the following might be a better option:2. http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ HTHRon From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 07 July 2011 18:03 To: Xerte list Subject: [Xerte] Moodle 2 server file structure? In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 stepiko14 at inbox.lv Mon Jul 11 12:14:05 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Mon, 11 Jul 2011 14:14:05 +0300 Subject: [Xerte] toolTip for text Message-ID: <1310382845.4e1adafdbacfe@mail.inbox.lv> Dear all, I am just wondering if it is possible to add ToolTip for text same as you can do for swf buttonsfor example. Sort of when you move your mouse pointer to the selected word in a text it displays some extra information about this word... Using xerte desktop application. Kindest Regards, Janis -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Jul 11 12:33:37 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 11 Jul 2011 12:33:37 +0100 Subject: [Xerte] Re: toolTip for text In-Reply-To: <1310382845.4e1adafdbacfe@mail.inbox.lv> References: <1310382845.4e1adafdbacfe@mail.inbox.lv> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93326@EXCHANGE1.ad.nottingham.ac.uk> You can. Do you write code? You will need to break the text into movieclips using breakApart(), and then attach events handlers to each clip. Use those to show the tooltip. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Janis Ozols Sent: 11 July 2011 12:14 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] toolTip for text Dear all, I am just wondering if it is possible to add ToolTip for text same as you can do for swf buttonsfor example. Sort of when you move your mouse pointer to the selected word in a text it displays some extra information about this word... Using xerte desktop application. Kindest Regards, Janis -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Jul 11 12:47:00 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 11 Jul 2011 12:47:00 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: References: , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk>, , , , <001901cc3ce5$0037b550$00a71ff0$@co.uk>, , , , <002f01cc3fa6$cac54a30$604fde90$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93342@EXCHANGE1.ad.nottingham.ac.uk> Doesn't sound great. Is there any discussion in the moodle forums on the subject? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 11 July 2011 12:10 To: Xerte list Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? Even more unsettling is it seems the database lookup for files forms a single point of failure/slowness. The same piece that runs fine on 1.9 runs painfully slowly under 2.0. And I do not believe you can simply overwrite a file anyway. The database uses the individual file sizes as part of the was to identify them, so you need to actually alter the database entry to match the new file. I think Moodle has really shot itself in the foot with this one. I would like to see a list of the supposed benefits that justified such a radical structure change. Dave ________________________________ From: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Mon, 11 Jul 2011 09:44:44 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? It does seem a short sighted and in many cases impractical solution. The only solution to your problem that I can think of is keep the larger media assets external and link via full url when developing the LO. Not ideal but would perhaps resolve the file size problem? Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 09 July 2011 20:53 To: Xerte list Subject: [Xerte] FW: Re: Moodle 2 server file structure? Point being of course, let's say you have a SCORM object layed out in a set of folders. One of those folders contains 500 Mb of video. It seems Moodle 2 is trying to say, each time you change 1 byte of any file within the SCORM .zip, you have to re-upload the entire thing. You can see how that will get old pretty quickly... I am seeing another complaint regarding "mini-websites" uploaded and unzipped. Apparently all relative links are broken, because the files are not being maintained on the server in the same relative structure. I can see their point about making resources reusable by databasing the paths, but not allowing access to the underlying SCORM structure files, or at least giving an option to "database ignore these files and maintain relative structure" is pretty short-sighted IMO. Dave ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: RE: [Xerte] Re: Moodle 2 server file structure? Date: Sat, 9 Jul 2011 11:13:56 -0400 Thanks Ron. Not yet. I've also taken a peek at this: http://moodle.org/mod/forum/discuss.php?d=166999#p735868 I'm a bit hobbled at the moment because I do not have admin access to the Moodle 2 setup, so can't create repositories etc to test stuff. Even with that though, the workarounds are all pretty involved (I won't be adminning them myself). As well, they seem to be aimed at maintaining relative link integrity, etc. What I had the ability to do in 1.x was: - Upload and unzip SCORM shell structure. - Find that strucrure with file picker utility - add/overwrite files within that structure Is there any way at all within Moodle 2 (custom repository? files system folder?) to emulate that capability? Dave ________________________________ From: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Thu, 7 Jul 2011 21:32:29 +0100 Subject: [Xerte] Re: Moodle 2 server file structure? Hi Dave did you find your answer? Moodle 2 does have a files area but not in the same was as previously and you may not like the 1st answer/solution as it's nowhere near as straightforward as previously! 1. So if you really want to go the same route as before see http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/ but if you can set it up the following might be a better option: 2. http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 07 July 2011 18:03 To: Xerte list Subject: [Xerte] Moodle 2 server file structure? In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Mon Jul 11 13:10:16 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 11 Jul 2011 08:10:16 -0400 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D3D93342@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk>, , , , ,,<001901cc3ce5$0037b550$00a71ff0$@co.uk>, , , , , , , <002f01cc3fa6$cac54a30$604fde90$@co.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D3D93342@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Lot's of complaining from "advanced" users, or at least the folks who are doing something more than uploading a Word doc and linking to it. I'm late to the discussion, but it appears it's a dispute about LMS vs LCMS philosophy. So they are severely restricting the content manipulation side of things. Ron: If I was administrating the thing, I would take your advice and host the heavy media elsewhere. But the architecture is engine based, and really counts on a known structure to run multiple courses. root //engine course folder section1folder audiofolder videofolder xmldriverfile course folder section1folder audiofolder videofolder xmldriverfile etc Rejigging to have external media is of course possible, but this sort of radical structure change for a large base app is kind of stupid IMO. Sure, AS2 to AS3, but the advantages there are obvious. What does this Moodle change accomplish? Save some server space by reusing files? I thought storage costs were almost a non-factor these days... Why they would interfere with OS based pathing and interpolate a databased one is bizarre to me. Peeved. Dave From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Mon, 11 Jul 2011 12:47:00 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? Doesn?t sound great. Is there any discussion in the moodle forums on the subject? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 11 July 2011 12:10 To: Xerte list Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? Even more unsettling is it seems the database lookup for files forms a single point of failure/slowness. The same piece that runs fine on 1.9 runs painfully slowly under 2.0. And I do not believe you can simply overwrite a file anyway. The database uses the individual file sizes as part of the was to identify them, so you need to actually alter the database entry to match the new file. I think Moodle has really shot itself in the foot with this one. I would like to see a list of the supposed benefits that justified such a radical structure change. DaveFrom: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Mon, 11 Jul 2011 09:44:44 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure?It does seem a short sighted and in many cases impractical solution.The only solution to your problem that I can think of is keep the larger media assets external and link via full url when developing the LO. Not ideal but would perhaps resolve the file size problem?Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 09 July 2011 20:53 To: Xerte list Subject: [Xerte] FW: Re: Moodle 2 server file structure? Point being of course, let's say you have a SCORM object layed out in a set of folders. One of those folders contains 500 Mb of video. It seems Moodle 2 is trying to say, each time you change 1 byte of any file within the SCORM .zip, you have to re-upload the entire thing. You can see how that will get old pretty quickly... I am seeing another complaint regarding "mini-websites" uploaded and unzipped. Apparently all relative links are broken, because the files are not being maintained on the server in the same relative structure. I can see their point about making resources reusable by databasing the paths, but not allowing access to the underlying SCORM structure files, or at least giving an option to "database ignore these files and maintain relative structure" is pretty short-sighted IMO. DaveFrom: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: RE: [Xerte] Re: Moodle 2 server file structure? Date: Sat, 9 Jul 2011 11:13:56 -0400 Thanks Ron. Not yet. I've also taken a peek at this: http://moodle.org/mod/forum/discuss.php?d=166999#p735868 I'm a bit hobbled at the moment because I do not have admin access to the Moodle 2 setup, so can't create repositories etc to test stuff. Even with that though, the workarounds are all pretty involved (I won't be adminning them myself). As well, they seem to be aimed at maintaining relative link integrity, etc. What I had the ability to do in 1.x was: - Upload and unzip SCORM shell structure. - Find that strucrure with file picker utility - add/overwrite files within that structure Is there any way at all within Moodle 2 (custom repository? files system folder?) to emulate that capability? DaveFrom: ronm at mitchellmedia.co.uk To: xerte at lists.nottingham.ac.uk Date: Thu, 7 Jul 2011 21:32:29 +0100 Subject: [Xerte] Re: Moodle 2 server file structure?Hi Davedid you find your answer? Moodle 2 does have a files area but not in the same was as previously and you may not like the 1st answer/solution as it's nowhere near as straightforward as previously! 1. So if you really want to go the same route as before see http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/but if you can set it up the following might be a better option:2. http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ HTHRon From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 07 July 2011 18:03 To: Xerte list Subject: [Xerte] Moodle 2 server file structure? In Moodle 1.x I had this process to evade the php.ini upload max size. Upload SCORM package containing shell structure of LO, complete with folders for audio/video media. Go to the left hand menu Files area, dig down to numbered folder representing root of unzipped SCORM package. Upload audio/video files to appropriate folder. Moodle 2 has no "Files" area, now has something called "Repositiories". I have my shell uploaded, but I'll be darned if I can find that file structure anywhere. Hints? Dave This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Mon Jul 11 13:22:44 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 11 Jul 2011 13:22:44 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk> <001901cc3ce5$0037b550$00a71ff0$@co.uk> <002f01cc3fa6$cac54a30$604fde90$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D3D93342@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I'm not fussed about moodle - but i believe the change for the community hub idea, possibly due to moodle needing to scale so it can blah blah blah blah On Mon, Jul 11, 2011 at 1:10 PM, Dave Burnett wrote: > > Lot's of complaining from "advanced" users, or at least the folks who are > doing something more than uploading a Word doc and linking to it. > > I'm late to the discussion, but it appears it's a dispute about LMS vs LCMS > philosophy. > So they are severely restricting the content manipulation side of things. > > Ron: If I was administrating the thing, I would take your advice and host > the heavy media elsewhere. > But the architecture is engine based, and really counts on a known structure > to run multiple courses. > > root //engine > ? course folder > ??? section1folder > ? ? ? audiofolder > ? ? ? videofolder > ? ? ? xmldriverfile > ? course folder > ??? section1folder > ? ? ? audiofolder > ? ? ? videofolder > ? ? ? xmldriverfile > > etc > > Rejigging to have external media is of course possible, but this sort of > radical structure change for a large base app is kind of stupid IMO. > > Sure, AS2 to AS3, but the advantages there are obvious. > What does this Moodle change accomplish? Save some server space by reusing > files? > I thought storage costs were almost a non-factor these days... > Why they would interfere with OS based pathing and interpolate a databased > one is bizarre to me. > > Peeved. > > Dave > > > > > > > > > > > > ________________________________ > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Mon, 11 Jul 2011 12:47:00 +0100 > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? > > Doesn?t sound great. Is there any discussion in the moodle forums on the > subject? > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett > Sent: 11 July 2011 12:10 > To: Xerte list > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? > > > > Even more unsettling is it seems the database lookup for files forms a > single point of failure/slowness. > The same piece that runs fine on 1.9 runs painfully slowly under 2.0. > And I do not believe you can simply overwrite a file anyway. The database > uses the individual file sizes as part of the was to identify them, so you > need to actually alter the database entry to match the new file. > > I think Moodle has really shot itself in the foot with this one. > I would like to see a list of the supposed benefits that justified such a > radical structure change. > > Dave > > ________________________________ > > From: ronm at mitchellmedia.co.uk > To: xerte at lists.nottingham.ac.uk > Date: Mon, 11 Jul 2011 09:44:44 +0100 > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? > > It does seem a short sighted and in many cases impractical solution. > > The only solution to your problem that I can think of is keep the larger > media assets external and link via full url when developing the LO. Not > ideal but would perhaps resolve the file size problem? > > Ron > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett > Sent: 09 July 2011 20:53 > To: Xerte list > Subject: [Xerte] FW: Re: Moodle 2 server file structure? > > > > Point being of course, let's say you have a SCORM object layed out in a set > of folders. > One of those folders contains 500 Mb of video. > > It seems Moodle 2 is trying to say, each time you change 1 byte of any file > within the SCORM .zip, you have to re-upload the entire thing. > You can see how that will get old pretty quickly... > > I am seeing another complaint regarding "mini-websites" uploaded and > unzipped. > Apparently all relative links are broken, because the files are not being > maintained on the server in the same relative structure. > > I can see their point about making resources reusable by databasing the > paths, but not allowing access to the underlying SCORM structure files, or > at least giving an option to "database ignore these files and maintain > relative structure" is pretty short-sighted IMO. > > Dave > > ________________________________ > > From: d_b_burnett at hotmail.com > To: xerte at lists.nottingham.ac.uk > Subject: RE: [Xerte] Re: Moodle 2 server file structure? > Date: Sat, 9 Jul 2011 11:13:56 -0400 > > Thanks Ron. > > Not yet. I've also taken a peek at this: > http://moodle.org/mod/forum/discuss.php?d=166999#p735868 > > I'm a bit hobbled at the moment because I do not have admin access to the > Moodle 2 setup, so can't create repositories etc to test stuff. > > Even with that though, the workarounds are all pretty involved (I won't be > adminning them myself). > As well, they seem to be aimed at maintaining relative link integrity, etc. > > What I had the ability to do in 1.x was: > > - Upload and unzip SCORM shell structure. > - Find that strucrure with file picker utility > - add/overwrite files within that structure > > > Is there any way at all within Moodle 2 (custom repository? files system > folder?) to emulate that capability? > > Dave > > ________________________________ > > From: ronm at mitchellmedia.co.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 7 Jul 2011 21:32:29 +0100 > Subject: [Xerte] Re: Moodle 2 server file structure? > > Hi Dave > > did you find your answer? > > > > Moodle 2 does have a files area but not in the same was as previously and > you may not like the 1st answer/solution as it's nowhere near as > straightforward as previously! > > > > 1. So if you really want to go the same route as before see > http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/ > > but if you can set it up the following might be a better option: > > 2. > http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ > > > > HTH > > Ron > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett > Sent: 07 July 2011 18:03 > To: Xerte list > Subject: [Xerte] Moodle 2 server file structure? > > > > In Moodle 1.x I had this process to evade the php.ini upload max size. > > Upload SCORM package containing shell structure of LO, complete with folders > for audio/video media. > Go to the left hand menu Files area, dig down to numbered folder > representing root of unzipped SCORM package. > Upload audio/video files to appropriate folder. > > Moodle 2 has no "Files" area, now has something called "Repositiories". > > I have my shell uploaded, but I'll be darned if I can find that file > structure anywhere. > Hints? > > Dave > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Mon Jul 11 13:42:49 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 11 Jul 2011 08:42:49 -0400 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: References: , , <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk>, , <001901cc3ce5$0037b550$00a71ff0$@co.uk>, , , <002f01cc3fa6$cac54a30$604fde90$@co.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D3D93342@EXCHANGE1.ad.nottingham.ac.uk>, , Message-ID: OK. This is anecdotal, but my impression is LMS's are used far less for the ability "to share my brilliant work" than their ability to score and generate pretty reports/graphs/attendance figures. I don't think most LMS using folks could tell you what the S in SCORM stands for. ;-) > Date: Mon, 11 Jul 2011 13:22:44 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? > > I'm not fussed about moodle - but i believe the change for the > community hub idea, possibly due to moodle needing to scale so it can > blah blah blah blah > > On Mon, Jul 11, 2011 at 1:10 PM, Dave Burnett wrote: > > > > Lot's of complaining from "advanced" users, or at least the folks who are > > doing something more than uploading a Word doc and linking to it. > > > > I'm late to the discussion, but it appears it's a dispute about LMS vs LCMS > > philosophy. > > So they are severely restricting the content manipulation side of things. > > > > Ron: If I was administrating the thing, I would take your advice and host > > the heavy media elsewhere. > > But the architecture is engine based, and really counts on a known structure > > to run multiple courses. > > > > root //engine > > course folder > > section1folder > > audiofolder > > videofolder > > xmldriverfile > > course folder > > section1folder > > audiofolder > > videofolder > > xmldriverfile > > > > etc > > > > Rejigging to have external media is of course possible, but this sort of > > radical structure change for a large base app is kind of stupid IMO. > > > > Sure, AS2 to AS3, but the advantages there are obvious. > > What does this Moodle change accomplish? Save some server space by reusing > > files? > > I thought storage costs were almost a non-factor these days... > > Why they would interfere with OS based pathing and interpolate a databased > > one is bizarre to me. > > > > Peeved. > > > > Dave > > > > > > > > > > > > > > > > > > > > > > > > ________________________________ > > From: Julian.Tenney at nottingham.ac.uk > > To: xerte at lists.nottingham.ac.uk > > Date: Mon, 11 Jul 2011 12:47:00 +0100 > > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? > > > > Doesn?t sound great. Is there any discussion in the moodle forums on the > > subject? > > > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett > > Sent: 11 July 2011 12:10 > > To: Xerte list > > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? > > > > > > > > Even more unsettling is it seems the database lookup for files forms a > > single point of failure/slowness. > > The same piece that runs fine on 1.9 runs painfully slowly under 2.0. > > And I do not believe you can simply overwrite a file anyway. The database > > uses the individual file sizes as part of the was to identify them, so you > > need to actually alter the database entry to match the new file. > > > > I think Moodle has really shot itself in the foot with this one. > > I would like to see a list of the supposed benefits that justified such a > > radical structure change. > > > > Dave > > > > ________________________________ > > > > From: ronm at mitchellmedia.co.uk > > To: xerte at lists.nottingham.ac.uk > > Date: Mon, 11 Jul 2011 09:44:44 +0100 > > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? > > > > It does seem a short sighted and in many cases impractical solution. > > > > The only solution to your problem that I can think of is keep the larger > > media assets external and link via full url when developing the LO. Not > > ideal but would perhaps resolve the file size problem? > > > > Ron > > > > > > > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett > > Sent: 09 July 2011 20:53 > > To: Xerte list > > Subject: [Xerte] FW: Re: Moodle 2 server file structure? > > > > > > > > Point being of course, let's say you have a SCORM object layed out in a set > > of folders. > > One of those folders contains 500 Mb of video. > > > > It seems Moodle 2 is trying to say, each time you change 1 byte of any file > > within the SCORM .zip, you have to re-upload the entire thing. > > You can see how that will get old pretty quickly... > > > > I am seeing another complaint regarding "mini-websites" uploaded and > > unzipped. > > Apparently all relative links are broken, because the files are not being > > maintained on the server in the same relative structure. > > > > I can see their point about making resources reusable by databasing the > > paths, but not allowing access to the underlying SCORM structure files, or > > at least giving an option to "database ignore these files and maintain > > relative structure" is pretty short-sighted IMO. > > > > Dave > > > > ________________________________ > > > > From: d_b_burnett at hotmail.com > > To: xerte at lists.nottingham.ac.uk > > Subject: RE: [Xerte] Re: Moodle 2 server file structure? > > Date: Sat, 9 Jul 2011 11:13:56 -0400 > > > > Thanks Ron. > > > > Not yet. I've also taken a peek at this: > > http://moodle.org/mod/forum/discuss.php?d=166999#p735868 > > > > I'm a bit hobbled at the moment because I do not have admin access to the > > Moodle 2 setup, so can't create repositories etc to test stuff. > > > > Even with that though, the workarounds are all pretty involved (I won't be > > adminning them myself). > > As well, they seem to be aimed at maintaining relative link integrity, etc. > > > > What I had the ability to do in 1.x was: > > > > - Upload and unzip SCORM shell structure. > > - Find that strucrure with file picker utility > > - add/overwrite files within that structure > > > > > > Is there any way at all within Moodle 2 (custom repository? files system > > folder?) to emulate that capability? > > > > Dave > > > > ________________________________ > > > > From: ronm at mitchellmedia.co.uk > > To: xerte at lists.nottingham.ac.uk > > Date: Thu, 7 Jul 2011 21:32:29 +0100 > > Subject: [Xerte] Re: Moodle 2 server file structure? > > > > Hi Dave > > > > did you find your answer? > > > > > > > > Moodle 2 does have a files area but not in the same was as previously and > > you may not like the 1st answer/solution as it's nowhere near as > > straightforward as previously! > > > > > > > > 1. So if you really want to go the same route as before see > > http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/ > > > > but if you can set it up the following might be a better option: > > > > 2. > > http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ > > > > > > > > HTH > > > > Ron > > > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett > > Sent: 07 July 2011 18:03 > > To: Xerte list > > Subject: [Xerte] Moodle 2 server file structure? > > > > > > > > In Moodle 1.x I had this process to evade the php.ini upload max size. > > > > Upload SCORM package containing shell structure of LO, complete with folders > > for audio/video media. > > Go to the left hand menu Files area, dig down to numbered folder > > representing root of unzipped SCORM package. > > Upload audio/video files to appropriate folder. > > > > Moodle 2 has no "Files" area, now has something called "Repositiories". > > > > I have my shell uploaded, but I'll be darned if I can find that file > > structure anywhere. > > Hints? > > > > Dave > > > > > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > > attachment are intended solely for the addressee and may contain > > confidential information. If you have received this message in error, please > > send it back to me, and immediately delete it. Please do not use, copy or > > disclose the information contained in this message or in any attachment. Any > > views or opinions expressed by the author of this email do not necessarily > > reflect the views of the University of Nottingham. This message has been > > checked for viruses but the contents of an attachment may still contain > > software viruses which could damage your computer system: you are advised to > > perform your own checks. Email communications with the University of > > Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > > attachment are intended solely for the addressee and may contain > > confidential information. If you have received this message in error, please > > send it back to me, and immediately delete it. Please do not use, copy or > > disclose the information contained in this message or in any attachment. Any > > views or opinions expressed by the author of this email do not necessarily > > reflect the views of the University of Nottingham. This message has been > > checked for viruses but the contents of an attachment may still contain > > software viruses which could damage your computer system: you are advised to > > perform your own checks. Email communications with the University of > > Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > > attachment are intended solely for the addressee and may contain > > confidential information. If you have received this message in error, please > > send it back to me, and immediately delete it. Please do not use, copy or > > disclose the information contained in this message or in any attachment. Any > > views or opinions expressed by the author of this email do not necessarily > > reflect the views of the University of Nottingham. This message has been > > checked for viruses but the contents of an attachment may still contain > > software viruses which could damage your computer system: you are advised to > > perform your own checks. Email communications with the University of > > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Mon Jul 11 13:51:20 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 11 Jul 2011 13:51:20 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk> <001901cc3ce5$0037b550$00a71ff0$@co.uk> <002f01cc3fa6$cac54a30$604fde90$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D3D93342@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: i don't think there is much brilliant work in any LMS either It's an atypical OS change really (like the google api wave of death) - here comes an UPgrade. Putting the grate in grateful. On Mon, Jul 11, 2011 at 1:42 PM, Dave Burnett wrote: > OK. > > This is anecdotal, but my impression is LMS's are used far less for the > ability "to share my brilliant work" than their ability to score and > generate pretty reports/graphs/attendance figures. > I don't think most LMS using folks could tell you what the S in SCORM stands > for. > ;-) > > > >> Date: Mon, 11 Jul 2011 13:22:44 +0100 >> From: patrick.lockley at googlemail.com >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> >> I'm not fussed about moodle - but i believe the change for the >> community hub idea, possibly due to moodle needing to scale so it can >> blah blah blah blah >> >> On Mon, Jul 11, 2011 at 1:10 PM, Dave Burnett >> wrote: >> > >> > Lot's of complaining from "advanced" users, or at least the folks who >> > are >> > doing something more than uploading a Word doc and linking to it. >> > >> > I'm late to the discussion, but it appears it's a dispute about LMS vs >> > LCMS >> > philosophy. >> > So they are severely restricting the content manipulation side of >> > things. >> > >> > Ron: If I was administrating the thing, I would take your advice and >> > host >> > the heavy media elsewhere. >> > But the architecture is engine based, and really counts on a known >> > structure >> > to run multiple courses. >> > >> > root //engine >> > ? course folder >> > ??? section1folder >> > ? ? ? audiofolder >> > ? ? ? videofolder >> > ? ? ? xmldriverfile >> > ? course folder >> > ??? section1folder >> > ? ? ? audiofolder >> > ? ? ? videofolder >> > ? ? ? xmldriverfile >> > >> > etc >> > >> > Rejigging to have external media is of course possible, but this sort of >> > radical structure change for a large base app is kind of stupid IMO. >> > >> > Sure, AS2 to AS3, but the advantages there are obvious. >> > What does this Moodle change accomplish? Save some server space by >> > reusing >> > files? >> > I thought storage costs were almost a non-factor these days... >> > Why they would interfere with OS based pathing and interpolate a >> > databased >> > one is bizarre to me. >> > >> > Peeved. >> > >> > Dave >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > ________________________________ >> > From: Julian.Tenney at nottingham.ac.uk >> > To: xerte at lists.nottingham.ac.uk >> > Date: Mon, 11 Jul 2011 12:47:00 +0100 >> > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> > >> > Doesn?t sound great. Is there any discussion in the moodle forums on the >> > subject? >> > >> > >> > >> > From: xerte-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett >> > Sent: 11 July 2011 12:10 >> > To: Xerte list >> > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> > >> > >> > >> > Even more unsettling is it seems the database lookup for files forms a >> > single point of failure/slowness. >> > The same piece that runs fine on 1.9 runs painfully slowly under 2.0. >> > And I do not believe you can simply overwrite a file anyway. The >> > database >> > uses the individual file sizes as part of the was to identify them, so >> > you >> > need to actually alter the database entry to match the new file. >> > >> > I think Moodle has really shot itself in the foot with this one. >> > I would like to see a list of the supposed benefits that justified such >> > a >> > radical structure change. >> > >> > Dave >> > >> > ________________________________ >> > >> > From: ronm at mitchellmedia.co.uk >> > To: xerte at lists.nottingham.ac.uk >> > Date: Mon, 11 Jul 2011 09:44:44 +0100 >> > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> > >> > It does seem a short sighted and in many cases impractical solution. >> > >> > The only solution to your problem that I can think of is keep the larger >> > media assets external and link via full url when developing the LO. Not >> > ideal but would perhaps resolve the file size problem? >> > >> > Ron >> > >> > >> > >> > >> > >> > From: xerte-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett >> > Sent: 09 July 2011 20:53 >> > To: Xerte list >> > Subject: [Xerte] FW: Re: Moodle 2 server file structure? >> > >> > >> > >> > Point being of course, let's say you have a SCORM object layed out in a >> > set >> > of folders. >> > One of those folders contains 500 Mb of video. >> > >> > It seems Moodle 2 is trying to say, each time you change 1 byte of any >> > file >> > within the SCORM .zip, you have to re-upload the entire thing. >> > You can see how that will get old pretty quickly... >> > >> > I am seeing another complaint regarding "mini-websites" uploaded and >> > unzipped. >> > Apparently all relative links are broken, because the files are not >> > being >> > maintained on the server in the same relative structure. >> > >> > I can see their point about making resources reusable by databasing the >> > paths, but not allowing access to the underlying SCORM structure files, >> > or >> > at least giving an option to "database ignore these files and maintain >> > relative structure" is pretty short-sighted IMO. >> > >> > Dave >> > >> > ________________________________ >> > >> > From: d_b_burnett at hotmail.com >> > To: xerte at lists.nottingham.ac.uk >> > Subject: RE: [Xerte] Re: Moodle 2 server file structure? >> > Date: Sat, 9 Jul 2011 11:13:56 -0400 >> > >> > Thanks Ron. >> > >> > Not yet. I've also taken a peek at this: >> > http://moodle.org/mod/forum/discuss.php?d=166999#p735868 >> > >> > I'm a bit hobbled at the moment because I do not have admin access to >> > the >> > Moodle 2 setup, so can't create repositories etc to test stuff. >> > >> > Even with that though, the workarounds are all pretty involved (I won't >> > be >> > adminning them myself). >> > As well, they seem to be aimed at maintaining relative link integrity, >> > etc. >> > >> > What I had the ability to do in 1.x was: >> > >> > - Upload and unzip SCORM shell structure. >> > - Find that strucrure with file picker utility >> > - add/overwrite files within that structure >> > >> > >> > Is there any way at all within Moodle 2 (custom repository? files system >> > folder?) to emulate that capability? >> > >> > Dave >> > >> > ________________________________ >> > >> > From: ronm at mitchellmedia.co.uk >> > To: xerte at lists.nottingham.ac.uk >> > Date: Thu, 7 Jul 2011 21:32:29 +0100 >> > Subject: [Xerte] Re: Moodle 2 server file structure? >> > >> > Hi Dave >> > >> > did you find your answer? >> > >> > >> > >> > Moodle 2 does have a files area but not in the same was as previously >> > and >> > you may not like the 1st answer/solution as it's nowhere near as >> > straightforward as previously! >> > >> > >> > >> > 1. So if you really want to go the same route as before see >> > >> > http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/ >> > >> > but if you can set it up the following might be a better option: >> > >> > 2. >> > >> > http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ >> > >> > >> > >> > HTH >> > >> > Ron >> > >> > >> > >> > From: xerte-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett >> > Sent: 07 July 2011 18:03 >> > To: Xerte list >> > Subject: [Xerte] Moodle 2 server file structure? >> > >> > >> > >> > In Moodle 1.x I had this process to evade the php.ini upload max size. >> > >> > Upload SCORM package containing shell structure of LO, complete with >> > folders >> > for audio/video media. >> > Go to the left hand menu Files area, dig down to numbered folder >> > representing root of unzipped SCORM package. >> > Upload audio/video files to appropriate folder. >> > >> > Moodle 2 has no "Files" area, now has something called "Repositiories". >> > >> > I have my shell uploaded, but I'll be darned if I can find that file >> > structure anywhere. >> > Hints? >> > >> > Dave >> > >> > >> > >> > This message and any attachment are intended solely for the addressee >> > and >> > may contain confidential information. If you have received this message >> > in >> > error, please send it back to me, and immediately delete it. Please do >> > not >> > use, copy or disclose the information contained in this message or in >> > any >> > attachment. Any views or opinions expressed by the author of this email >> > do >> > not necessarily reflect the views of the University of Nottingham. >> > >> > This message has been checked for viruses but the contents of an >> > attachment >> > may still contain software viruses which could damage your computer >> > system: >> > you are advised to perform your own checks. Email communications with >> > the >> > University of Nottingham may be monitored as permitted by UK >> > legislation. >> > >> > _______________________________________________ Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >> > any >> > attachment are intended solely for the addressee and may contain >> > confidential information. If you have received this message in error, >> > please >> > send it back to me, and immediately delete it. Please do not use, copy >> > or >> > disclose the information contained in this message or in any attachment. >> > Any >> > views or opinions expressed by the author of this email do not >> > necessarily >> > reflect the views of the University of Nottingham. This message has been >> > checked for viruses but the contents of an attachment may still contain >> > software viruses which could damage your computer system: you are >> > advised to >> > perform your own checks. Email communications with the University of >> > Nottingham may be monitored as permitted by UK legislation. >> > >> > _______________________________________________ Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >> > any >> > attachment are intended solely for the addressee and may contain >> > confidential information. If you have received this message in error, >> > please >> > send it back to me, and immediately delete it. Please do not use, copy >> > or >> > disclose the information contained in this message or in any attachment. >> > Any >> > views or opinions expressed by the author of this email do not >> > necessarily >> > reflect the views of the University of Nottingham. This message has been >> > checked for viruses but the contents of an attachment may still contain >> > software viruses which could damage your computer system: you are >> > advised to >> > perform your own checks. Email communications with the University of >> > Nottingham may be monitored as permitted by UK legislation. >> > >> > _______________________________________________ Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >> > any >> > attachment are intended solely for the addressee and may contain >> > confidential information. If you have received this message in error, >> > please >> > send it back to me, and immediately delete it. Please do not use, copy >> > or >> > disclose the information contained in this message or in any attachment. >> > Any >> > views or opinions expressed by the author of this email do not >> > necessarily >> > reflect the views of the University of Nottingham. This message has been >> > checked for viruses but the contents of an attachment may still contain >> > software viruses which could damage your computer system: you are >> > advised to >> > perform your own checks. Email communications with the University of >> > Nottingham may be monitored as permitted by UK legislation. >> > _______________________________________________ >> > Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> > >> > This message and any attachment are intended solely for the addressee >> > and >> > may contain confidential information. If you have received this message >> > in >> > error, please send it back to me, and immediately delete it. ? Please do >> > not >> > use, copy or disclose the information contained in this message or in >> > any >> > attachment. ?Any views or opinions expressed by the author of this email >> > do >> > not necessarily reflect the views of the University of Nottingham. >> > >> > This message has been checked for viruses but the contents of an >> > attachment >> > may still contain software viruses which could damage your computer >> > system: >> > you are advised to perform your own checks. Email communications with >> > the >> > University of Nottingham may be monitored as permitted by UK >> > legislation. >> > >> > >> > >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 stepiko14 at inbox.lv Mon Jul 11 14:01:48 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Mon, 11 Jul 2011 16:01:48 +0300 Subject: [Xerte] Re: toolTip for text Message Message-ID: <1310389308.4e1af43c53e37@mail.inbox.lv> Thank you, Julian. Sounds a bit complicated for me. But I ll try to figure it out. Maybe there are any project examples or models with breakApart() used or even with tooltip for text you have or know? Date: Mon, 11 Jul 2011 12:33:37 +0100 From: Julian Tenney To: Xerte discussion list Subject: [Xerte] Re: toolTip for text Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93326 at EXCHANGE1.ad.nottingham.ac.uk> Content-Type: text/plain; charset="utf-8" You can. Do you write code? You will need to break the text into movieclips using breakApart(), and then attach events handlers to each clip. Use those to show the tooltip. -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Jul 11 14:25:52 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 11 Jul 2011 14:25:52 +0100 Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D2AF1DE0@EXCHANGE1.ad.nottingham.ac.uk> <001901cc3ce5$0037b550$00a71ff0$@co.uk> <002f01cc3fa6$cac54a30$604fde90$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D3D93342@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D933F1@EXCHANGE1.ad.nottingham.ac.uk> Tend to agree. The LMS implementations of SCORM I've worked with have all been poor. It's a bit like 'there's no point making this work well, because no one ever uses it and but no one makes much use of it because it doesn't work well.'. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 11 July 2011 13:51 To: Xerte discussion list Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? i don't think there is much brilliant work in any LMS either It's an atypical OS change really (like the google api wave of death) - here comes an UPgrade. Putting the grate in grateful. On Mon, Jul 11, 2011 at 1:42 PM, Dave Burnett wrote: > OK. > > This is anecdotal, but my impression is LMS's are used far less for the > ability "to share my brilliant work" than their ability to score and > generate pretty reports/graphs/attendance figures. > I don't think most LMS using folks could tell you what the S in SCORM stands > for. > ;-) > > > >> Date: Mon, 11 Jul 2011 13:22:44 +0100 >> From: patrick.lockley at googlemail.com >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> >> I'm not fussed about moodle - but i believe the change for the >> community hub idea, possibly due to moodle needing to scale so it can >> blah blah blah blah >> >> On Mon, Jul 11, 2011 at 1:10 PM, Dave Burnett >> wrote: >> > >> > Lot's of complaining from "advanced" users, or at least the folks who >> > are >> > doing something more than uploading a Word doc and linking to it. >> > >> > I'm late to the discussion, but it appears it's a dispute about LMS vs >> > LCMS >> > philosophy. >> > So they are severely restricting the content manipulation side of >> > things. >> > >> > Ron: If I was administrating the thing, I would take your advice and >> > host >> > the heavy media elsewhere. >> > But the architecture is engine based, and really counts on a known >> > structure >> > to run multiple courses. >> > >> > root //engine >> > course folder >> > section1folder >> > audiofolder >> > videofolder >> > xmldriverfile >> > course folder >> > section1folder >> > audiofolder >> > videofolder >> > xmldriverfile >> > >> > etc >> > >> > Rejigging to have external media is of course possible, but this sort of >> > radical structure change for a large base app is kind of stupid IMO. >> > >> > Sure, AS2 to AS3, but the advantages there are obvious. >> > What does this Moodle change accomplish? Save some server space by >> > reusing >> > files? >> > I thought storage costs were almost a non-factor these days... >> > Why they would interfere with OS based pathing and interpolate a >> > databased >> > one is bizarre to me. >> > >> > Peeved. >> > >> > Dave >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > ________________________________ >> > From: Julian.Tenney at nottingham.ac.uk >> > To: xerte at lists.nottingham.ac.uk >> > Date: Mon, 11 Jul 2011 12:47:00 +0100 >> > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> > >> > Doesn't sound great. Is there any discussion in the moodle forums on the >> > subject? >> > >> > >> > >> > From: xerte-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett >> > Sent: 11 July 2011 12:10 >> > To: Xerte list >> > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> > >> > >> > >> > Even more unsettling is it seems the database lookup for files forms a >> > single point of failure/slowness. >> > The same piece that runs fine on 1.9 runs painfully slowly under 2.0. >> > And I do not believe you can simply overwrite a file anyway. The >> > database >> > uses the individual file sizes as part of the was to identify them, so >> > you >> > need to actually alter the database entry to match the new file. >> > >> > I think Moodle has really shot itself in the foot with this one. >> > I would like to see a list of the supposed benefits that justified such >> > a >> > radical structure change. >> > >> > Dave >> > >> > ________________________________ >> > >> > From: ronm at mitchellmedia.co.uk >> > To: xerte at lists.nottingham.ac.uk >> > Date: Mon, 11 Jul 2011 09:44:44 +0100 >> > Subject: [Xerte] Re: FW: Re: Moodle 2 server file structure? >> > >> > It does seem a short sighted and in many cases impractical solution. >> > >> > The only solution to your problem that I can think of is keep the larger >> > media assets external and link via full url when developing the LO. Not >> > ideal but would perhaps resolve the file size problem? >> > >> > Ron >> > >> > >> > >> > >> > >> > From: xerte-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett >> > Sent: 09 July 2011 20:53 >> > To: Xerte list >> > Subject: [Xerte] FW: Re: Moodle 2 server file structure? >> > >> > >> > >> > Point being of course, let's say you have a SCORM object layed out in a >> > set >> > of folders. >> > One of those folders contains 500 Mb of video. >> > >> > It seems Moodle 2 is trying to say, each time you change 1 byte of any >> > file >> > within the SCORM .zip, you have to re-upload the entire thing. >> > You can see how that will get old pretty quickly... >> > >> > I am seeing another complaint regarding "mini-websites" uploaded and >> > unzipped. >> > Apparently all relative links are broken, because the files are not >> > being >> > maintained on the server in the same relative structure. >> > >> > I can see their point about making resources reusable by databasing the >> > paths, but not allowing access to the underlying SCORM structure files, >> > or >> > at least giving an option to "database ignore these files and maintain >> > relative structure" is pretty short-sighted IMO. >> > >> > Dave >> > >> > ________________________________ >> > >> > From: d_b_burnett at hotmail.com >> > To: xerte at lists.nottingham.ac.uk >> > Subject: RE: [Xerte] Re: Moodle 2 server file structure? >> > Date: Sat, 9 Jul 2011 11:13:56 -0400 >> > >> > Thanks Ron. >> > >> > Not yet. I've also taken a peek at this: >> > http://moodle.org/mod/forum/discuss.php?d=166999#p735868 >> > >> > I'm a bit hobbled at the moment because I do not have admin access to >> > the >> > Moodle 2 setup, so can't create repositories etc to test stuff. >> > >> > Even with that though, the workarounds are all pretty involved (I won't >> > be >> > adminning them myself). >> > As well, they seem to be aimed at maintaining relative link integrity, >> > etc. >> > >> > What I had the ability to do in 1.x was: >> > >> > - Upload and unzip SCORM shell structure. >> > - Find that strucrure with file picker utility >> > - add/overwrite files within that structure >> > >> > >> > Is there any way at all within Moodle 2 (custom repository? files system >> > folder?) to emulate that capability? >> > >> > Dave >> > >> > ________________________________ >> > >> > From: ronm at mitchellmedia.co.uk >> > To: xerte at lists.nottingham.ac.uk >> > Date: Thu, 7 Jul 2011 21:32:29 +0100 >> > Subject: [Xerte] Re: Moodle 2 server file structure? >> > >> > Hi Dave >> > >> > did you find your answer? >> > >> > >> > >> > Moodle 2 does have a files area but not in the same was as previously >> > and >> > you may not like the 1st answer/solution as it's nowhere near as >> > straightforward as previously! >> > >> > >> > >> > 1. So if you really want to go the same route as before see >> > >> > http://www.pengzhang.ca/blog/2011/01/10/updating-large-scorm-courses-loaded-on-moodle/ >> > >> > but if you can set it up the following might be a better option: >> > >> > 2. >> > >> > http://www.pengzhang.ca/blog/2011/01/08/loading-large-scorm-pif-packages-onto-moodle-2-0/ >> > >> > >> > >> > HTH >> > >> > Ron >> > >> > >> > >> > From: xerte-bounces at lists.nottingham.ac.uk >> > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett >> > Sent: 07 July 2011 18:03 >> > To: Xerte list >> > Subject: [Xerte] Moodle 2 server file structure? >> > >> > >> > >> > In Moodle 1.x I had this process to evade the php.ini upload max size. >> > >> > Upload SCORM package containing shell structure of LO, complete with >> > folders >> > for audio/video media. >> > Go to the left hand menu Files area, dig down to numbered folder >> > representing root of unzipped SCORM package. >> > Upload audio/video files to appropriate folder. >> > >> > Moodle 2 has no "Files" area, now has something called "Repositiories". >> > >> > I have my shell uploaded, but I'll be darned if I can find that file >> > structure anywhere. >> > Hints? >> > >> > Dave >> > >> > >> > >> > This message and any attachment are intended solely for the addressee >> > and >> > may contain confidential information. If you have received this message >> > in >> > error, please send it back to me, and immediately delete it. Please do >> > not >> > use, copy or disclose the information contained in this message or in >> > any >> > attachment. Any views or opinions expressed by the author of this email >> > do >> > not necessarily reflect the views of the University of Nottingham. >> > >> > This message has been checked for viruses but the contents of an >> > attachment >> > may still contain software viruses which could damage your computer >> > system: >> > you are advised to perform your own checks. Email communications with >> > the >> > University of Nottingham may be monitored as permitted by UK >> > legislation. >> > >> > _______________________________________________ Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >> > any >> > attachment are intended solely for the addressee and may contain >> > confidential information. If you have received this message in error, >> > please >> > send it back to me, and immediately delete it. Please do not use, copy >> > or >> > disclose the information contained in this message or in any attachment. >> > Any >> > views or opinions expressed by the author of this email do not >> > necessarily >> > reflect the views of the University of Nottingham. This message has been >> > checked for viruses but the contents of an attachment may still contain >> > software viruses which could damage your computer system: you are >> > advised to >> > perform your own checks. Email communications with the University of >> > Nottingham may be monitored as permitted by UK legislation. >> > >> > _______________________________________________ Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >> > any >> > attachment are intended solely for the addressee and may contain >> > confidential information. If you have received this message in error, >> > please >> > send it back to me, and immediately delete it. Please do not use, copy >> > or >> > disclose the information contained in this message or in any attachment. >> > Any >> > views or opinions expressed by the author of this email do not >> > necessarily >> > reflect the views of the University of Nottingham. This message has been >> > checked for viruses but the contents of an attachment may still contain >> > software viruses which could damage your computer system: you are >> > advised to >> > perform your own checks. Email communications with the University of >> > Nottingham may be monitored as permitted by UK legislation. >> > >> > _______________________________________________ Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >> > any >> > attachment are intended solely for the addressee and may contain >> > confidential information. If you have received this message in error, >> > please >> > send it back to me, and immediately delete it. Please do not use, copy >> > or >> > disclose the information contained in this message or in any attachment. >> > Any >> > views or opinions expressed by the author of this email do not >> > necessarily >> > reflect the views of the University of Nottingham. This message has been >> > checked for viruses but the contents of an attachment may still contain >> > software viruses which could damage your computer system: you are >> > advised to >> > perform your own checks. Email communications with the University of >> > Nottingham may be monitored as permitted by UK legislation. >> > _______________________________________________ >> > Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> > >> > This message and any attachment are intended solely for the addressee >> > and >> > may contain confidential information. If you have received this message >> > in >> > error, please send it back to me, and immediately delete it. Please do >> > not >> > use, copy or disclose the information contained in this message or in >> > any >> > attachment. Any views or opinions expressed by the author of this email >> > do >> > not necessarily reflect the views of the University of Nottingham. >> > >> > This message has been checked for viruses but the contents of an >> > attachment >> > may still contain software viruses which could damage your computer >> > system: >> > you are advised to perform your own checks. Email communications with >> > the >> > University of Nottingham may be monitored as permitted by UK >> > legislation. >> > >> > >> > >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From eouzora at gmail.com Tue Jul 12 05:38:22 2011 From: eouzora at gmail.com (zulfadli rusman) Date: Tue, 12 Jul 2011 12:38:22 +0800 Subject: [Xerte] anybody could help me on xerte? Message-ID: i would like to use xerte on my school LMS. i had tried the xerte on moodle i got problem on viewing the image that imported on firefox. is there any solution on that problem? please help me..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 12 09:46:38 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 12 Jul 2011 09:46:38 +0100 Subject: [Xerte] Re: anybody could help me on xerte? In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D936AB@EXCHANGE1.ad.nottingham.ac.uk> You have it installed and working correctly otherwise? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of zulfadli rusman Sent: 12 July 2011 05:38 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] anybody could help me on xerte? i would like to use xerte on my school LMS. i had tried the xerte on moodle i got problem on viewing the image that imported on firefox. is there any solution on that problem? please help me..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From stepiko14 at inbox.lv Tue Jul 12 13:11:03 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Tue, 12 Jul 2011 15:11:03 +0300 Subject: [Xerte] Xerte 2.16 Buttons Message-ID: <1310472663.4e1c39d742171@mail.inbox.lv> Sorry for bein a bit annoying. But I am just wondering if anyone else has problems with toolTip using buttons and swf buttons? It was ok in previous versions of Xerte... But now, when I add a button (even a standart one, not using swf parameter) and add toolTip parameter to it. It doesn't work, it doesn't appear in preview and published project as well. Can I do something worng? -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 12 13:18:01 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 12 Jul 2011 13:18:01 +0100 Subject: [Xerte] Re: Xerte 2.16 Buttons In-Reply-To: <1310472663.4e1c39d742171@mail.inbox.lv> References: <1310472663.4e1c39d742171@mail.inbox.lv> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93873@EXCHANGE1.ad.nottingham.ac.uk> It?s working here OK. It only works on SWF buttons. [cid:image001.png at 01CC4096.1FE38BE0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Janis Ozols Sent: 12 July 2011 13:11 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte 2.16 Buttons Sorry for bein a bit annoying. But I am just wondering if anyone else has problems with toolTip using buttons and swf buttons? It was ok in previous versions of Xerte... But now, when I add a button (even a standart one, not using swf parameter) and add toolTip parameter to it. It doesn't work, it doesn't appear in preview and published project as well. Can I do something worng? -- -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 21342 bytes Desc: image001.png URL: From stepiko14 at inbox.lv Tue Jul 12 13:26:21 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Tue, 12 Jul 2011 15:26:21 +0300 Subject: [Xerte] Re: Xerte 2.16 Buttons - solved Message-ID: <1310473581.4e1c3d6d058b7@mail.inbox.lv> -- Dear Julian, Sorry. Solved it. Changed SWF file settings - Flash player 9 instead of fp 10, AS 2.0, no compression and it worked. Sorry for troubles. -------------- next part -------------- An HTML attachment was scrubbed... URL: From eouzora at gmail.com Tue Jul 12 16:33:31 2011 From: eouzora at gmail.com (zulfadli rusman) Date: Tue, 12 Jul 2011 23:33:31 +0800 Subject: [Xerte] Re: Xerte Digest, Vol 33, Issue 7 In-Reply-To: References: Message-ID: i am using xerte toolkit. The Scorm exported to the moodle using activity module that built in moodle. On Tue, Jul 12, 2011 at 7:00 PM, wrote: > Send Xerte mailing list submissions to > xerte at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > or, via email, send a message with subject or body 'help' to > xerte-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte digest..." > > > Today's Topics: > > 1. anybody could help me on xerte? (zulfadli rusman) > 2. Re: anybody could help me on xerte? (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 12 Jul 2011 12:38:22 +0800 > From: zulfadli rusman > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] anybody could help me on xerte? > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > i would like to use xerte on my school LMS. > i had tried the xerte on moodle i got problem on viewing the image that > imported on firefox. > is there any solution on that problem? > please help me..... > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110712/48b8c369/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Tue, 12 Jul 2011 09:46:38 +0100 > From: Julian Tenney > To: Xerte discussion list > Subject: [Xerte] Re: anybody could help me on xerte? > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F05D3D936AB at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="us-ascii" > > You have it installed and working correctly otherwise? > > From: xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] On Behalf Of zulfadli rusman > Sent: 12 July 2011 05:38 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] anybody could help me on xerte? > > i would like to use xerte on my school LMS. > i had tried the xerte on moodle i got problem on viewing the image that > imported on firefox. > is there any solution on that problem? > please help me..... > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110712/2d9c6c03/attachment-0001.html > > > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 33, Issue 7 > ************************************ > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 admin at strivney.com Tue Jul 12 19:33:09 2011 From: admin at strivney.com (Deborah Delin) Date: Tue, 12 Jul 2011 21:33:09 +0300 Subject: [Xerte] SWF Sound Problem Message-ID: Hi, I have put sound on some movie clips in a drag and drop exercise. They play fine in the SWF but not in Xerte. The sound code, which is in the main timeline is as follows: var Sound1:Sound = new Sound() Sound1.attachSound("Sound1") And in the movie clip's onPress code (also in main timeline): movie_clip.onPress = function(){ Sound1.start() this.startDrag(); I also have this._lockroot = true; in the first frame of the movie. In case it's relevant, I have had no problems in Xerte with adding sound dynamically to buttons with the following: on (press) { yellow = new Sound(this); yellow.attachSound("yellow"); yellow.start(0, 1); } But this time I need the sound on movie clips for the drag and drop. Any suggestions gratefully appreciated! Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Tue Jul 12 20:15:21 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 12 Jul 2011 15:15:21 -0400 Subject: [Xerte] Re: SWF Sound Problem In-Reply-To: References: Message-ID: var Sound1:Sound = new Sound() AS3 declarations, no? AS2 only, and in the case of Xerte I don't think you can set var either. my_sound = new Sound(); Date: Tue, 12 Jul 2011 21:33:09 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] SWF Sound Problem Hi, I have put sound on some movie clips in a drag and drop exercise. They play fine in the SWF but not in Xerte. The sound code, which is in the main timeline is as follows: var Sound1:Sound = new Sound() Sound1.attachSound("Sound1") And in the movie clip's onPress code (also in main timeline): movie_clip.onPress = function(){ Sound1.start() this.startDrag(); I also have this._lockroot = true; in the first frame of the movie. In case it's relevant, I have had no problems in Xerte with adding sound dynamically to buttons with the following: on (press) { yellow = new Sound(this); yellow.attachSound("yellow"); yellow.start(0, 1);} But this time I need the sound on movie clips for the drag and drop. Any suggestions gratefully appreciated! Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Wed Jul 13 08:26:23 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 13 Jul 2011 10:26:23 +0300 Subject: [Xerte] SWF Sound Problem Message-ID: AS3 really? Yikes! Thank you so much Dave! I got it working like this: mc.onPress = function(){ Sound1 = new Sound(this); Sound1.attachSound("my_sound"); Sound1.start(0, 1); Does that seem to be OK practice? Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From mlorentesan at gmail.com Wed Jul 13 11:56:55 2011 From: mlorentesan at gmail.com (Manuel Lorente) Date: Wed, 13 Jul 2011 12:56:55 +0200 Subject: [Xerte] Export to Offlin Message-ID: HI: Is there any possiblity to export xerte files to an offline verision so they can be stored in a cd or pendrive? Thanks in advance for the response. Manuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From claire.jeffrey at quarriers.org.uk Wed Jul 13 12:07:27 2011 From: claire.jeffrey at quarriers.org.uk (Jeffrey, Claire) Date: Wed, 13 Jul 2011 12:07:27 +0100 Subject: [Xerte] XOT Multiple Choice Page Message-ID: <4021FAE36D844047B76D621A301B3B2046A021@quarriersmail.quarriershq.local> Hi I am using the XOT multiple choice page and some (not all) of my answers are splitting over 2 lines, e.g. E. coli is appearing as E. Coli Claire Claire Jeffrey IT Trainer | http://www.quarriers.org.uk/ Training Department Phone 01505 616035 | claire.jeffrey at quarriers.org.uk Quarriers, Quarriers Village, Bridge of Weir, PA11 3SX http://www.quarriers.org.uk/OurWork/AdultDisability.aspx| http://www.quarriers.org.uk/OurWork/ChildrenAndFamilies.aspx | http://www.quarriers.org.uk/OurWork/Epilepsy.aspx| http://www.quarriers.org.uk/OurWork/YoungAdults.aspx http://www.facebook.com/quarriersfanshttp://twitter.com/quarriershttp://www.youtube.com/quarrierscharityhttp://quarrierscharity.blogspot.com/ Quarriers is a registered Scottish Charity No. SC001960 and a company registered in Scotland No 14361 VAT Registration No 263 5009 75. CONFIDENTIALITY NOTICE: The information in this e-mail and any attachments to it are confidential and may be legally privileged or prohibited from disclosure and unauthorised use. If you are not the intended recipient please destroy this e-mail and notify the sender. Please consider the environment before printing this e-mail -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: webcoloursmall.JPG Type: image/jpeg Size: 2277 bytes Desc: webcoloursmall.JPG URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: facebook.jpg Type: image/jpeg Size: 1144 bytes Desc: facebook.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: twitter.jpg Type: image/jpeg Size: 1016 bytes Desc: twitter.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: youTube.jpg Type: image/jpeg Size: 1244 bytes Desc: youTube.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: blogger.jpg Type: image/jpeg Size: 1479 bytes Desc: blogger.jpg URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 13 12:57:59 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 13 Jul 2011 12:57:59 +0100 Subject: [Xerte] Re: Export to Offlin In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93CA7@EXCHANGE1.ad.nottingham.ac.uk> Properties -> export From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Manuel Lorente Sent: 13 July 2011 11:57 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Export to Offlin HI: Is there any possiblity to export xerte files to an offline verision so they can be stored in a cd or pendrive? Thanks in advance for the response. Manuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 13 13:07:50 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 13 Jul 2011 13:07:50 +0100 Subject: [Xerte] Re: XOT Multiple Choice Page In-Reply-To: <4021FAE36D844047B76D621A301B3B2046A021@quarriersmail.quarriershq.local> References: <4021FAE36D844047B76D621A301B3B2046A021@quarriersmail.quarriershq.local> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93CB9@EXCHANGE1.ad.nottingham.ac.uk> Can anyone else reproduce this? It works fine ehre? [cid:image001.jpg at 01CC415D.DE561850] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Jeffrey, Claire Sent: 13 July 2011 12:07 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] XOT Multiple Choice Page Hi I am using the XOT multiple choice page and some (not all) of my answers are splitting over 2 lines, e.g. E. coli is appearing as E. Coli Claire Claire Jeffrey IT Trainer | www.quarriers.org.uk Training Department Phone 01505 616035 | claire.jeffrey at quarriers.org.uk Quarriers, Quarriers Village, Bridge of Weir, PA11 3SX [cid:image002.jpg at 01CC415D.DE561850] Quarriers Adult Disability| Quarriers Children and Families | Quarriers Epilepsy| Quarriers Young Adults [cid:image003.jpg at 01CC415D.DE561850][cid:image004.jpg at 01CC415D.DE561850][cid:image005.jpg at 01CC415D.DE561850][cid:image006.jpg at 01CC415D.DE561850] Quarriers is a registered Scottish Charity No. SC001960 and a company registered in Scotland No 14361 VAT Registration No 263 5009 75. CONFIDENTIALITY NOTICE: The information in this e-mail and any attachments to it are confidential and may be legally privileged or prohibited from disclosure and unauthorised use. If you are not the intended recipient please destroy this e-mail and notify the sender. Please consider the environment before printing this e-mail -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 9200 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 2277 bytes Desc: image002.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 1144 bytes Desc: image003.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 1016 bytes Desc: image004.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 1244 bytes Desc: image005.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 1479 bytes Desc: image006.jpg URL: From Alistair.McNaught at HEAcademy.ac.uk Wed Jul 13 13:38:12 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Wed, 13 Jul 2011 13:38:12 +0100 Subject: [Xerte] Re: XOT Multiple Choice Page In-Reply-To: <4021FAE36D844047B76D621A301B3B2046A021@quarriersmail.quarriershq.local> References: <4021FAE36D844047B76D621A301B3B2046A021@quarriersmail.quarriershq.local> Message-ID: E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" wrote: > E. coli is appearing as > > E. > > Coli > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 13 13:39:18 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 13 Jul 2011 13:39:18 +0100 Subject: [Xerte] Re: XOT Multiple Choice Page In-Reply-To: References: <4021FAE36D844047B76D621A301B3B2046A021@quarriersmail.quarriershq.local> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93CF7@EXCHANGE1.ad.nottingham.ac.uk> I can?t reproduce it in my local files, in the svn files, in our toolkits, in my standalone xerte? so it?s hopefully been fixed. Try updating the model. Just to be sure: this is the MCQ page type? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 13 July 2011 13:38 To: Xerte discussion list Cc: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: XOT Multiple Choice Page E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" > wrote: E. coli is appearing as E. Coli -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jul 13 13:45:54 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 13 Jul 2011 13:45:54 +0100 Subject: [Xerte] Re: XOT Multiple Choice Page In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D3D93CB9@EXCHANGE1.ad.nottingham.ac.uk> References: <4021FAE36D844047B76D621A301B3B2046A021@quarriersmail.quarriershq.local> <12C67A1EEC419342AF5E59DA31562C3F05D3D93CB9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I'd be tempted to wonder if the text was pasted in and a stray char has gotten involved. On Wed, Jul 13, 2011 at 1:07 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > Can anyone else reproduce this? It works fine ehre?**** > > ** ** > > **** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Jeffrey, Claire > *Sent:* 13 July 2011 12:07 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] XOT Multiple Choice Page**** > > ** ** > > Hi**** > > ** ** > > I am using the XOT multiple choice page and some (not all) of my answers > are splitting over 2 lines, e.g. E. coli is appearing as**** > > E.**** > > Coli**** > > ** ** > > Claire**** > > *Claire Jeffrey* > IT Trainer | www.quarriers.org.uk **** > > Training Department**** > > Phone 01505 616035 | claire.jeffrey at quarriers.org.uk > Quarriers, Quarriers Village, Bridge of Weir, PA11 3SX > **** > > *Quarriers Adult Disability > **| Quarriers Children and Families > ** | Quarriers Epilepsy > **| Quarriers Young Adults > * > Quarriers is a registered Scottish Charity No. SC001960 and a company > registered in Scotland No 14361 VAT Registration No 263 5009 75. > > CONFIDENTIALITY NOTICE: The information in this e-mail and any attachments > to it are confidential and may be legally privileged or prohibited from > disclosure and unauthorised use. If you are not the intended recipient > please destroy this e-mail and notify the sender. > Please consider the environment before printing this e-mail **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: 1479 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 1244 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 9200 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 1016 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 2277 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 1144 bytes Desc: not available URL: From claire.jeffrey at quarriers.org.uk Wed Jul 13 14:07:44 2011 From: claire.jeffrey at quarriers.org.uk (Jeffrey, Claire) Date: Wed, 13 Jul 2011 14:07:44 +0100 Subject: [Xerte] Re: XOT Multiple Choice Page (Claire Jeffrey) In-Reply-To: Message-ID: <4021FAE36D844047B76D621A301B3B2046A052@quarriersmail.quarriershq.local> Hi Yes, it is the Interactivity > MCQ page type. The answer options are typed in, not pasted. What is odd is that some options are displayed fine and others break onto a new line, for no apparent reason... Claire -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of xerte-request at lists.nottingham.ac.uk Sent: 13 July 2011 14:01 To: xerte at lists.nottingham.ac.uk Subject: Xerte Digest, Vol 33, Issue 13 Send Xerte mailing list submissions to xerte at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte or, via email, send a message with subject or body 'help' to xerte-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte digest..." Today's Topics: 1. Re: XOT Multiple Choice Page (Alistair McNaught) 2. Re: XOT Multiple Choice Page (Julian Tenney) 3. Re: XOT Multiple Choice Page (Pat Lockley) ---------------------------------------------------------------------- Message: 1 Date: Wed, 13 Jul 2011 13:38:12 +0100 From: "Alistair McNaught" To: "Xerte discussion list" Cc: Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: Content-Type: text/plain; charset="us-ascii" E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" wrote: > E. coli is appearing as > > E. > > Coli > -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Wed, 13 Jul 2011 13:39:18 +0100 From: Julian Tenney To: Xerte discussion list Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93CF7 at EXCHANGE1.ad.nottingham.ac.u k> Content-Type: text/plain; charset="utf-8" I can?t reproduce it in my local files, in the svn files, in our toolkits, in my standalone xerte? so it?s hopefully been fixed. Try updating the model. Just to be sure: this is the MCQ page type? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 13 July 2011 13:38 To: Xerte discussion list Cc: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: XOT Multiple Choice Page E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" > wrote: E. coli is appearing as E. Coli -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Wed, 13 Jul 2011 13:45:54 +0100 From: Pat Lockley To: Xerte discussion list Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: Content-Type: text/plain; charset="windows-1252" I'd be tempted to wonder if the text was pasted in and a stray char has gotten involved. On Wed, Jul 13, 2011 at 1:07 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > Can anyone else reproduce this? It works fine ehre?**** > > ** ** > > **** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Jeffrey, Claire > *Sent:* 13 July 2011 12:07 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] XOT Multiple Choice Page**** > > ** ** > > Hi**** > > ** ** > > I am using the XOT multiple choice page and some (not all) of my answers > are splitting over 2 lines, e.g. E. coli is appearing as**** > > E.**** > > Coli**** > > ** ** > > Claire**** > > *Claire Jeffrey* > IT Trainer | www.quarriers.org.uk **** > > Training Department**** > > Phone 01505 616035 | claire.jeffrey at quarriers.org.uk > Quarriers, Quarriers Village, Bridge of Weir, PA11 3SX > **** > > *Quarriers Adult Disability > **| Quarriers Children and Families > ** | Quarriers Epilepsy > **| Quarriers Young Adults > * < http://quarrierscharity.blogspot.com/> > Quarriers is a registered Scottish Charity No. SC001960 and a company > registered in Scotland No 14361 VAT Registration No 263 5009 75. > > CONFIDENTIALITY NOTICE: The information in this e-mail and any attachments > to it are confidential and may be legally privileged or prohibited from > disclosure and unauthorised use. If you are not the intended recipient > please destroy this e-mail and notify the sender. > Please consider the environment before printing this e-mail **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: 1479 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 1244 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 9200 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 1016 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 2277 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 1144 bytes Desc: not available URL: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 33, Issue 13 ************************************* From Julian.Tenney at nottingham.ac.uk Wed Jul 13 14:25:39 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 13 Jul 2011 14:25:39 +0100 Subject: [Xerte] Re: XOT Multiple Choice Page (Claire Jeffrey) In-Reply-To: <4021FAE36D844047B76D621A301B3B2046A052@quarriersmail.quarriershq.local> References: <4021FAE36D844047B76D621A301B3B2046A052@quarriersmail.quarriershq.local> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93D5A@EXCHANGE1.ad.nottingham.ac.uk> This is a toolkits server, or standalone Xerte? -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Jeffrey, Claire Sent: 13 July 2011 14:08 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: XOT Multiple Choice Page (Claire Jeffrey) Hi Yes, it is the Interactivity > MCQ page type. The answer options are typed in, not pasted. What is odd is that some options are displayed fine and others break onto a new line, for no apparent reason... Claire -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of xerte-request at lists.nottingham.ac.uk Sent: 13 July 2011 14:01 To: xerte at lists.nottingham.ac.uk Subject: Xerte Digest, Vol 33, Issue 13 Send Xerte mailing list submissions to xerte at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte or, via email, send a message with subject or body 'help' to xerte-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte digest..." Today's Topics: 1. Re: XOT Multiple Choice Page (Alistair McNaught) 2. Re: XOT Multiple Choice Page (Julian Tenney) 3. Re: XOT Multiple Choice Page (Pat Lockley) ---------------------------------------------------------------------- Message: 1 Date: Wed, 13 Jul 2011 13:38:12 +0100 From: "Alistair McNaught" To: "Xerte discussion list" Cc: Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: Content-Type: text/plain; charset="us-ascii" E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" wrote: > E. coli is appearing as > > E. > > Coli > -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Wed, 13 Jul 2011 13:39:18 +0100 From: Julian Tenney To: Xerte discussion list Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93CF7 at EXCHANGE1.ad.nottingham.ac.u k> Content-Type: text/plain; charset="utf-8" I can?t reproduce it in my local files, in the svn files, in our toolkits, in my standalone xerte? so it?s hopefully been fixed. Try updating the model. Just to be sure: this is the MCQ page type? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 13 July 2011 13:38 To: Xerte discussion list Cc: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: XOT Multiple Choice Page E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" > wrote: E. coli is appearing as E. Coli -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Wed, 13 Jul 2011 13:45:54 +0100 From: Pat Lockley To: Xerte discussion list Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: Content-Type: text/plain; charset="windows-1252" I'd be tempted to wonder if the text was pasted in and a stray char has gotten involved. On Wed, Jul 13, 2011 at 1:07 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > Can anyone else reproduce this? It works fine ehre?**** > > ** ** > > **** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Jeffrey, Claire > *Sent:* 13 July 2011 12:07 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] XOT Multiple Choice Page**** > > ** ** > > Hi**** > > ** ** > > I am using the XOT multiple choice page and some (not all) of my answers > are splitting over 2 lines, e.g. E. coli is appearing as**** > > E.**** > > Coli**** > > ** ** > > Claire**** > > *Claire Jeffrey* > IT Trainer | www.quarriers.org.uk **** > > Training Department**** > > Phone 01505 616035 | claire.jeffrey at quarriers.org.uk > Quarriers, Quarriers Village, Bridge of Weir, PA11 3SX > **** > > *Quarriers Adult Disability > **| Quarriers Children and Families > ** | Quarriers Epilepsy > **| Quarriers Young Adults > * < http://quarrierscharity.blogspot.com/> > Quarriers is a registered Scottish Charity No. SC001960 and a company > registered in Scotland No 14361 VAT Registration No 263 5009 75. > > CONFIDENTIALITY NOTICE: The information in this e-mail and any attachments > to it are confidential and may be legally privileged or prohibited from > disclosure and unauthorised use. If you are not the intended recipient > please destroy this e-mail and notify the sender. > Please consider the environment before printing this e-mail **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: 1479 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 1244 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 9200 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 1016 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 2277 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 1144 bytes Desc: not available URL: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 33, Issue 13 ************************************* _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From d_b_burnett at hotmail.com Wed Jul 13 14:27:33 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 13 Jul 2011 09:27:33 -0400 Subject: [Xerte] Re: XOT Multiple Choice Page (Claire Jeffrey) In-Reply-To: <4021FAE36D844047B76D621A301B3B2046A052@quarriersmail.quarriershq.local> References: , <4021FAE36D844047B76D621A301B3B2046A052@quarriersmail.quarriershq.local> Message-ID: Can you copy/paste from working strings to ones that are acting strangely? Does sit change anything? > Date: Wed, 13 Jul 2011 14:07:44 +0100 > From: claire.jeffrey at quarriers.org.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: XOT Multiple Choice Page (Claire Jeffrey) > > Hi > > Yes, it is the Interactivity > MCQ page type. The answer options are > typed in, not pasted. What is odd is that some options are displayed > fine and others break onto a new line, for no apparent reason... > > Claire -------------- next part -------------- An HTML attachment was scrubbed... URL: From stepiko14 at inbox.lv Thu Jul 14 11:31:27 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Thu, 14 Jul 2011 13:31:27 +0300 Subject: [Xerte] Script for a tick box to play mp3 Message-ID: <1310639487.4e1ec57fb79fb@mail.inbox.lv> Hi all, Could someone advice s simple script for a tick box in Xerte to make it play imported mp3 file with id and stop playing it, when tickbox is unticked? -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Thu Jul 14 14:42:39 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 14 Jul 2011 09:42:39 -0400 Subject: [Xerte] Re: Script for a tick box to play mp3 In-Reply-To: <1310639487.4e1ec57fb79fb@mail.inbox.lv> References: <1310639487.4e1ec57fb79fb@mail.inbox.lv> Message-ID: Give the checkbox an rs property, say tickbox. Under the checkbox add a script: if (tickbox.checked) { debug('set a path or play a sound icon') } else { debug('erase or stop the sound icon') } Then you just do what you want based on that value. Date: Thu, 14 Jul 2011 13:31:27 +0300 From: stepiko14 at inbox.lv To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Script for a tick box to play mp3 Hi all, Could someone advice s simple script for a tick box in Xerte to make it play imported mp3 file with id and stop playing it, when tickbox is unticked? -- This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Sat Jul 16 12:03:59 2011 From: admin at strivney.com (Deborah Delin) Date: Sat, 16 Jul 2011 14:03:59 +0300 Subject: [Xerte] Another SWF problem in Xerte Message-ID: Hi, You guys have been great in helping me solve my SWF/Xerte glitches. Hope you might know the answer to this one. I have a little game where a figure is activated by the keyboard arrows using the code below. In Xerte, the figure only becomes reactive after one clicks anywhere on the SWF. Outside of Xerte it reacts as it should do. File size is 150 kb. Many thanks for your help. Deborah onClipEvent(load){ speed = 7; jspeed = 0; jumping = false; startY = this._y; } onClipEvent(enterFrame){ if(jumping){ this._y += jspeed; jspeed++; if(this._y > startY){ this._y = startY; jumping=false; } }else if(Key.isDown(Key.SPACE)){ jumping = true; jspeed=-20; } if(Key.isDown(Key.RIGHT)) this._x += speed; if(Key.isDown(Key.LEFT)) this._x -= speed; } -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Sat Jul 16 12:17:19 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sat, 16 Jul 2011 07:17:19 -0400 Subject: [Xerte] Re: Another SWF problem in Xerte In-Reply-To: References: Message-ID: set the focus to the icon that loads the swf. Date: Sat, 16 Jul 2011 14:03:59 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Another SWF problem in Xerte Hi, You guys have been great in helping me solve my SWF/Xerte glitches. Hope you might know the answer to this one. I have a little game where a figure is activated by the keyboard arrows using the code below. In Xerte, the figure only becomes reactive after one clicks anywhere on the SWF. Outside of Xerte it reacts as it should do. File size is 150 kb. Many thanks for your help. Deborah onClipEvent(load){ speed = 7; jspeed = 0; jumping = false; startY = this._y;}onClipEvent(enterFrame){ if(jumping){ this._y += jspeed; jspeed++; if(this._y > startY){ this._y = startY; jumping=false; } }else if(Key.isDown(Key.SPACE)){ jumping = true; jspeed=-20; } if(Key.isDown(Key.RIGHT)) this._x += speed; if(Key.isDown(Key.LEFT)) this._x -= speed; } This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Sat Jul 16 12:13:29 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sat, 16 Jul 2011 12:13:29 +0100 Subject: [Xerte] Re: Another SWF problem in Xerte In-Reply-To: References: Message-ID: <4E217259.7030400@googlemail.com> You need to give the swf focus On 16/07/2011 12:03, Deborah Delin wrote: > Hi, > You guys have been great in helping me solve my SWF/Xerte glitches. > Hope you might know the answer to this one. > > I have a little game where a figure is activated by the keyboard > arrows using the code below. In Xerte, the figure only becomes > reactive after one clicks anywhere on the SWF. Outside of Xerte it > reacts as it should do. File size is 150 kb. > > Many thanks for your help. > > Deborah > > onClipEvent(load){ > speed = 7; > jspeed = 0; > jumping = false; > startY = this._y; > } > onClipEvent(enterFrame){ > if(jumping){ > this._y += jspeed; > jspeed++; > if(this._y > startY){ > this._y = startY; > jumping=false; > } > }else if(Key.isDown(Key.SPACE)){ > jumping = true; > jspeed=-20; > } > if(Key.isDown(Key.RIGHT)) this._x += speed; > if(Key.isDown(Key.LEFT)) this._x -= speed; > } > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 admin at strivney.com Sat Jul 16 13:34:14 2011 From: admin at strivney.com (Deborah Delin) Date: Sat, 16 Jul 2011 15:34:14 +0300 Subject: [Xerte] Another SWF problem in Xerte Message-ID: Thank you Pat and Dave - I didn't know about the focus. I'll try. -- Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From moniquee2e at gmail.com Mon Jul 18 03:34:33 2011 From: moniquee2e at gmail.com (Monique Gaudin) Date: Sun, 17 Jul 2011 19:34:33 -0700 Subject: [Xerte] XMLEngine password Message-ID: Help please I downloaded XERTE and decided to try it out. I used the template package to build a lesson and now it won't let me upload it because it says I need a XMLEngine password. I can't even move the ziped files. Is there something real obvious here or have I wasted two days? Thanks Monique -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Jul 18 07:43:00 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 18 Jul 2011 07:43:00 +0100 Subject: [Xerte] Re: XMLEngine password In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D4ACBDB5@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From reijnders at tor.nl Mon Jul 18 08:55:41 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 18 Jul 2011 09:55:41 +0200 Subject: [Xerte] Re: XMLEngine password In-Reply-To: References: Message-ID: <4E23E6FD.3070903@tor.nl> Sometimes, when Xerte is in a directory with spaces, or you try to place the zip file in a folder with spaces (like for example your Desktop in Windows), the zipfile is corrupt and created with a password. I've been truying to fix that for a long time, but I am still not sure when this problem is triggered. However, it will never ask for a 'XMLEngine' password. So not sure if this is the same. Also, you should just be able to move the file (when no other program has it opened.) Easiest workaround is to zip the project folder with an winzip or 7zip, or make sure that both the project and the zip file are in folders without any spaces in them. Tom Op 18-7-2011 4:34, Monique Gaudin schreef: > Help please > I downloaded XERTE and decided to try it out. I used the template > package to build a lesson and now it won't let me upload it because it > says I need a XMLEngine password. I can't even move the ziped files. > Is there something real obvious here or have I wasted two days? > Thanks > Monique > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 admin at strivney.com Tue Jul 19 15:02:08 2011 From: admin at strivney.com (Deborah Delin) Date: Tue, 19 Jul 2011 17:02:08 +0300 Subject: [Xerte] Setting Focus on the SWF Message-ID: Hi, Sorry, still struggling here. My game which is controlled with keystrokes doesn't work in Xerte until the screen is clicked. Pat and Dave suggested setting the focus to the icon that loads the swf. I added the line: getURL("javascript:mySWFname.focus( );void 0;"); to the SWF and this seems to have sorted the problem in Firefox but not in other browsers. Do I need to add code to the loadSWF icon in Xerte? The icon doesn't seem to have a script option. Could anyone kindly provide me with a code snippet and tell me where to put it? Many thanks. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 19 15:05:02 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 19 Jul 2011 15:05:02 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk> Have you got the swf I can try? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 19 July 2011 15:02 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Setting Focus on the SWF Hi, Sorry, still struggling here. My game which is controlled with keystrokes doesn't work in Xerte until the screen is clicked. Pat and Dave suggested setting the focus to the icon that loads the swf. I added the line: getURL("javascript:mySWFname.focus( );void 0;"); to the SWF and this seems to have sorted the problem in Firefox but not in other browsers. Do I need to add code to the loadSWF icon in Xerte? The icon doesn't seem to have a script option. Could anyone kindly provide me with a code snippet and tell me where to put it? Many thanks. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 20 11:44:22 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 20 Jul 2011 13:44:22 +0300 Subject: [Xerte] Re: Setting Focus on the SWF Message-ID: Any clues anybody? Please? How to set the focus on an SWF if Xerte? Thank you. Deborah-- -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 20 13:11:14 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 20 Jul 2011 15:11:14 +0300 Subject: [Xerte] Re: Setting Focus on the SWF Message-ID: Thank you Julian!! I attach the SWF. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: balls_game_new_score.swf Type: application/x-shockwave-flash Size: 146632 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 20 14:08:49 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 20 Jul 2011 14:08:49 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D55100A9@EXCHANGE1.ad.nottingham.ac.uk> How do I reproduce the problem? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 20 July 2011 13:11 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 20 14:15:07 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 20 Jul 2011 09:15:07 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: Need the rlo as well so we can see how the swf is loaded. Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Wed Jul 20 14:39:45 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 20 Jul 2011 16:39:45 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too? On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett wrote: > Need the rlo as well so we can see how the swf is loaded. > > ------------------------------ > Date: Wed, 20 Jul 2011 15:11:14 +0300 > From: admin at strivney.com > > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Setting Focus on the SWF > > Thank you Julian!! I attach the SWF. > > Deborah > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > -- Deborah International Site (English instructions): *Strivney English - Where Learning to Read is Fun* Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): *??????? - ????? ?????? ?? ??? * http://twitter.com/DeborahDelin -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 20 14:57:01 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 20 Jul 2011 09:57:01 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , Message-ID: No, just send me a copy. If the listers see Julian and I are looking at it, no one else will bother. Date: Wed, 20 Jul 2011 16:39:45 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too? On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett wrote: Need the rlo as well so we can see how the swf is loaded. Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 20 15:50:29 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 20 Jul 2011 15:50:29 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk> We can have a race? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 20 July 2011 14:40 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too? On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett > wrote: Need the rlo as well so we can see how the swf is loaded. ________________________________ Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah [http://www.strivney-english.com/strivney_logo.gif] International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 20 16:20:54 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 20 Jul 2011 11:20:54 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk> References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: First we need to set the rules. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 20 Jul 2011 15:50:29 +0100 Subject: [Xerte] Re: Setting Focus on the SWF We can have a race? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 20 July 2011 14:40 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too?On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett wrote:Need the rlo as well so we can see how the swf is loaded.Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWFThank you Julian!! I attach the SWF. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is FunSite for Hebrew and English/Hebrew speakers(Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 20 16:23:10 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 20 Jul 2011 16:23:10 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk> Never really that worry me too much. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 20 July 2011 16:21 To: Xerte list Subject: [Xerte] Re: Setting Focus on the SWF First we need to set the rules. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 20 Jul 2011 15:50:29 +0100 Subject: [Xerte] Re: Setting Focus on the SWF We can have a race? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 20 July 2011 14:40 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too? On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett > wrote: Need the rlo as well so we can see how the swf is loaded. ________________________________ Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah [http://www.strivney-english.com/strivney_logo.gif] International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Wed Jul 20 14:43:44 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 20 Jul 2011 16:43:44 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D55100A9@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D55100A9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: When the swf is in Xerte and uploaded to a web page the key-operated girl (right, left and spacebar) doesn't move until the swf is clicked on. This doesn't occur in my local browser. Only when uploaded to IE8 and Google Chrome. It works immediately in Firefox. In case it helps I am attaching the whole file with the rlo. SWF in question is on page 3. Thank you so much for your help!! Deborah On Wed, Jul 20, 2011 at 4:08 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > How do I reproduce the problem?**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Deborah Delin > *Sent:* 20 July 2011 13:11 > > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] Re: Setting Focus on the SWF**** > > ** ** > > Thank you Julian!! I attach the SWF.**** > > ** ** > > Deborah**** > > ** ** > > ** ** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > -- Deborah International Site (English instructions): *Strivney English - Where Learning to Read is Fun* Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): *??????? - ????? ?????? ?? ??? * http://twitter.com/DeborahDelin -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: rods_and.zip Type: application/zip Size: 1812902 bytes Desc: not available URL: From reijnders at tor.nl Wed Jul 20 19:50:42 2011 From: reijnders at tor.nl (Tom Reijnders) Date: Wed, 20 Jul 2011 20:50:42 +0200 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk> References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <4E272382.5040301@tor.nl> Sure...., ehmmm,. no rules.... ;-) Julian, if you want, I can have a look too... EU against US... yes! The only thing in this scenario that bothers me, is that Deborah would not really benefit from this.... Op 20-7-2011 17:23, Julian Tenney schreef: > > Never really that worry me too much. > > *From:* xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Dave Burnett > *Sent:* 20 July 2011 16:21 > *To:* Xerte list > *Subject:* [Xerte] Re: Setting Focus on the SWF > > > > First we need to set the rules. > > > ------------------------------------------------------------------------ > > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Wed, 20 Jul 2011 15:50:29 +0100 > Subject: [Xerte] Re: Setting Focus on the SWF > > We can have a race? > > *From:* xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Deborah Delin > *Sent:* 20 July 2011 14:40 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Setting Focus on the SWF > > Julian wrote to me directly so I am sending him the whole file with > the rlo. Shall I post it on the list too? > > On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett > wrote: > > Need the rlo as well so we can see how the swf is loaded. > > ------------------------------------------------------------------------ > > Date: Wed, 20 Jul 2011 15:11:14 +0300 > From: admin at strivney.com > > > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Setting Focus on the SWF > > Thank you Julian!! I attach the SWF. > > Deborah > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system: you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and > any attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, > please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of > Nottingham. This message has been checked for viruses but the contents > of an attachment may still contain software viruses which could damage > your computer system: you are advised to perform your own checks. > Email communications with the University of Nottingham may be > monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment > may still contain software viruses which could damage your computer > system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > -- > > Deborah > > International Site (English instructions): *Strivney English - Where > Learning to Read is Fun* > > Site for Hebrew and English/Hebrew speakers > > (Hebrew and English Instructions): *???????** - **?????** **??????** > **??** **???** * > > http://twitter.com/DeborahDelin > > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and > any attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, > please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of > Nottingham. This message has been checked for viruses but the contents > of an attachment may still contain software viruses which could damage > your computer system: you are advised to perform your own checks. > Email communications with the University of Nottingham may be > monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 d_b_burnett at hotmail.com Wed Jul 20 20:24:16 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 20 Jul 2011 15:24:16 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <4E272382.5040301@tor.nl> References: , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk> , <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk>, <4E272382.5040301@tor.nl> Message-ID: I asked Deborah to try using a component to load the swf instead of an icon. Probably won't help, but stranger things... Date: Wed, 20 Jul 2011 20:50:42 +0200 From: reijnders at tor.nl To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Sure...., ehmmm,. no rules.... ;-) Julian, if you want, I can have a look too... EU against US... yes! The only thing in this scenario that bothers me, is that Deborah would not really benefit from this.... Op 20-7-2011 17:23, Julian Tenney schreef: Never really that worry me too much. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 20 July 2011 16:21 To: Xerte list Subject: [Xerte] Re: Setting Focus on the SWF First we need to set the rules. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 20 Jul 2011 15:50:29 +0100 Subject: [Xerte] Re: Setting Focus on the SWF We can have a race? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 20 July 2011 14:40 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too? On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett wrote: Need the rlo as well so we can see how the swf is loaded. Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 20 20:42:46 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 20 Jul 2011 20:42:46 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk> <4E272382.5040301@tor.nl> Message-ID: why not just put some text under the swf to say "please click on it before starting" 2011/7/20 Dave Burnett > > > I asked Deborah to try using a component to load the swf instead of an > icon. > > > Probably won't help, but stranger things... > > > > ------------------------------ > Date: Wed, 20 Jul 2011 20:50:42 +0200 > From: reijnders at tor.nl > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Setting Focus on the SWF > > Sure...., ehmmm,. no rules.... ;-) > Julian, if you want, I can have a look too... EU against US... yes! > > The only thing in this scenario that bothers me, is that Deborah would not > really benefit from this.... > > Op 20-7-2011 17:23, Julian Tenney schreef: > > Never really that worry me too much. > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Dave Burnett > *Sent:* 20 July 2011 16:21 > *To:* Xerte list > *Subject:* [Xerte] Re: Setting Focus on the SWF > > > > > > First we need to set the rules. > > > ------------------------------ > > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Wed, 20 Jul 2011 15:50:29 +0100 > Subject: [Xerte] Re: Setting Focus on the SWF > > We can have a race? > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Deborah Delin > *Sent:* 20 July 2011 14:40 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Setting Focus on the SWF > > > > Julian wrote to me directly so I am sending him the whole file with the > rlo. Shall I post it on the list too? > > On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett > wrote: > > Need the rlo as well so we can see how the swf is loaded. > ------------------------------ > > Date: Wed, 20 Jul 2011 15:11:14 +0300 > From: admin at strivney.com > > > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Setting Focus on the SWF > > Thank you Julian!! I attach the SWF. > > > > Deborah > > > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > -- > > Deborah > > > > > International Site (English instructions): *Strivney English - Where > Learning to Read is Fun* > > Site for Hebrew and English/Hebrew speakers > > (Hebrew and English Instructions): *???????** - **?????** **??????** ** > ??** **???** * > > > > http://twitter.com/DeborahDelin > > > > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 > > > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 20 21:05:20 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 20 Jul 2011 16:05:20 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk>, <4E272382.5040301@tor.nl>, , Message-ID: Suggested it. Last resort option. Date: Wed, 20 Jul 2011 20:42:46 +0100 From: patrick.lockley at googlemail.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF why not just put some text under the swf to say "please click on it before starting" 2011/7/20 Dave Burnett I asked Deborah to try using a component to load the swf instead of an icon. Probably won't help, but stranger things... Date: Wed, 20 Jul 2011 20:50:42 +0200 From: reijnders at tor.nl To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Sure...., ehmmm,. no rules.... ;-) Julian, if you want, I can have a look too... EU against US... yes! The only thing in this scenario that bothers me, is that Deborah would not really benefit from this.... Op 20-7-2011 17:23, Julian Tenney schreef: Never really that worry me too much. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 20 July 2011 16:21 To: Xerte list Subject: [Xerte] Re: Setting Focus on the SWF First we need to set the rules. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 20 Jul 2011 15:50:29 +0100 Subject: [Xerte] Re: Setting Focus on the SWF We can have a race? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 20 July 2011 14:40 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too? On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett wrote: Need the rlo as well so we can see how the swf is loaded. Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 20 21:17:22 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 20 Jul 2011 21:17:22 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk>, <4E272382.5040301@tor.nl>, , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D57356E9@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From Paul.Swanson at harlandfs.com Wed Jul 20 21:47:10 2011 From: Paul.Swanson at harlandfs.com (Paul Swanson) Date: Wed, 20 Jul 2011 13:47:10 -0700 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D57356E9@EXCHANGE1.ad.nottingham.ac.uk> References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5510189@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D55101D7@EXCHANGE1.ad.nottingham.ac.uk>, <4E272382.5040301@tor.nl>, , , <12C67A1EEC419342AF5E59DA31562C3F05D57356E9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Adobe Forums has a thread on this issue: http://forums.adobe.com/message/3147882 So does stackoverflow.com: http://stackoverflow.com/questions/548833/setting-focus-to-an-swf-using- js And more hits on Google: http://www.google.com/#hl=en&sugexp=esqb%2Cratio%3D0%2Cdepth%3D0&cp=14&g s_id=1i&xhr=t&q=swf+file+focus&pf=p&sclient=psy&source=hp&pbx=1&oq=swf+f ile+focus&aq=f&aqi=&aql=&gs_sm=&gs_upl=&bav=on.2,or.r_gc.r_pw.&fp=97eede 9ed711c932&biw=1029&bih=867 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: Wednesday, July 20, 2011 1:17 PM To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF I'll try some stuff, but ultimately it might be better to say 'click here to begin' and get focus that way, if browsers are being funny about focus for whatever reason. I'm out of the office now till Monday, so will be on the email, but not with my code. Next week is busy, also with a couple of days out, then I'm on holiday for a fortnight (hurrah). I'll see if I can at least reproduce the issue though, but it will be next week. J ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett [d_b_burnett at hotmail.com] Sent: 20 July 2011 21:05 To: Xerte list Subject: [Xerte] Re: Setting Focus on the SWF Suggested it. Last resort option. ________________________________ Date: Wed, 20 Jul 2011 20:42:46 +0100 From: patrick.lockley at googlemail.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF why not just put some text under the swf to say "please click on it before starting" 2011/7/20 Dave Burnett I asked Deborah to try using a component to load the swf instead of an icon. Probably won't help, but stranger things... ________________________________ Date: Wed, 20 Jul 2011 20:50:42 +0200 From: reijnders at tor.nl To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Sure...., ehmmm,. no rules.... ;-) Julian, if you want, I can have a look too... EU against US... yes! The only thing in this scenario that bothers me, is that Deborah would not really benefit from this.... Op 20-7-2011 17:23, Julian Tenney schreef: Never really that worry me too much. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 20 July 2011 16:21 To: Xerte list Subject: [Xerte] Re: Setting Focus on the SWF First we need to set the rules. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 20 Jul 2011 15:50:29 +0100 Subject: [Xerte] Re: Setting Focus on the SWF We can have a race... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 20 July 2011 14:40 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Julian wrote to me directly so I am sending him the whole file with the rlo. Shall I post it on the list too? On Wed, Jul 20, 2011 at 4:15 PM, Dave Burnett wrote: Need the rlo as well so we can see how the swf is loaded. ________________________________ Date: Wed, 20 Jul 2011 15:11:14 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thank you Julian!! I attach the SWF. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Thu Jul 21 06:45:07 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 21 Jul 2011 08:45:07 +0300 Subject: [Xerte] Re: Setting Focus on the SWF Message-ID: Well thanks to everyone for trying to help! The reason I am trying to avoid the "Click here to start" workaround is that my viewers are English language learners who can't read yet so they won't understand the instruction. Dave, I tried adding the SWF in a component but Xerte didn't like that at all. (Maybe I didn't do it right - I put the file location of the SWF in the component directly in the RLO?). Paul, thanks for those links. There is a lot about it on the internet but most of the fixes were beyond my ability/understanding. This one that you sent seems quite simple: import flash.external.ExternalInterface; ExternalInterface.call("s = function() { document.getElementById('mymovie').focus(); }"); where 'mymovie' is ID of embedded swf object in html script. I added the script to the SWF but I'm not sure about the ID. Do I put the name of the swf, without the .swf extension in place of mymovie? If that is correct then I tried it and it didn't work. Another suggests putting the following script in the containing HTML page. I am displaying the Xerte in Moodle. I tried adding the code to the page via the Moodle interface and the Moodle editor just deleted it. I haven't got a clue how to locate that page via FTP. Also this script is Actionscript in a Java tag - can I put that in an HTML page? I hoped to make variations of this game, which is rather cute for the level I am aiming at, so I would love to resolve this. Thanks again, Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Andrew.Davidson at warwick.ac.uk Thu Jul 21 08:02:50 2011 From: Andrew.Davidson at warwick.ac.uk (Davidson, Andrew) Date: Thu, 21 Jul 2011 08:02:50 +0100 Subject: [Xerte] video size in video pagetype problem References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Dear all, I have been trying to find ways to get a larger video size and higher quality video image in the video pagetype in the templates version of XOT. So far have not succeeded. Whenever I convert to .flv the video size is quite small on the display page and when the magnifier is used, the quality of the image makes the enlargement an unusable option for the user. Is there a way to import video which will result in a larger screen display video size and a high quality video image? cheers Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: From Andrew.Davidson at warwick.ac.uk Thu Jul 21 07:57:36 2011 From: Andrew.Davidson at warwick.ac.uk (Davidson, Andrew) Date: Thu, 21 Jul 2011 07:57:36 +0100 Subject: [Xerte] problem with Multiple Perspectives pagetype in XOT templates References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Hi all - I am trying to set up a page in XOT templates version using the Multiple Perspectives pagetype. I have tried loading .flv and .swf files for the video option and .mp3 for the sound file option. The files appear to upload to the editing page but do not appear on the display page. Am I using the wrong file types? Also, I wonder if it would be possible to extend the functionality of this page to include images which could be linked with sound? That would be a useful addition in my humble opinion. Cheers Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jul 21 08:42:13 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 21 Jul 2011 08:42:13 +0100 Subject: [Xerte] Re: video size in video pagetype problem In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D57356EB@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jul 21 08:44:34 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 21 Jul 2011 08:44:34 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D57356EC@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jul 21 08:47:45 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 21 Jul 2011 08:47:45 +0100 Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOT templates In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From admin at strivney.com Thu Jul 21 09:04:29 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 21 Jul 2011 11:04:29 +0300 Subject: [Xerte] Re: Setting Focus on the SWF Message-ID: Julian, you said: I've got a feeling that ExternalInterface isn't directly accessible from Xerte script, I think we've added functions to the engine to wrap it. You should be able to call it from your swf though. Sorry but this means nothing to me. Is it a possible fix? How would I call the ExertnalInterface from the swf? Yes I could go the visual route - I was just hoping for the perfect solution..... Thanks, Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From shirley.crawford at st-austell.ac.uk Thu Jul 21 09:17:22 2011 From: shirley.crawford at st-austell.ac.uk (Shirley Crawford) Date: Thu, 21 Jul 2011 09:17:22 +0100 Subject: [Xerte] zipped LOs In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <8B6D69C81759694E92E48C18738CF3AF01270510@exchange5.cornwall.ac.uk> Hi Couple of questions, first of all we Xerte on a hosted server which appears to be working fine except for the export, when clicking on the zipped file to download it, displays a webpage full of garbage, it is not saving as a zipped file - is there something our techi person needs to do with the installation to put this right? Have also tried this using Firefox, still the same problem. My second question is in relation to the Embedded Learning Materials which are now on the excellence gateway, http://rwp.excellencegateway.org.uk/Interactive%20Materials/ we also have these materials on CD which were issued to colleges, when you run some of them IE crashes, same happens when running them from the website in IE (they work fine in other browsers), as I want them in a Moodle course and do not know which browser the end user will view them on, I wondered if there is some way that I can embed the LOs in Xerte. I have attached a screen shot of the directory structure for one of the LOs which crashes. Shirley Shirley Crawford E-Learning Teaching Mentor Moodle Administrator (Room J449 Tel:external : 01726 226755 ext 2755) Cornwall College - St Austell -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: screenshot.JPG Type: image/jpeg Size: 26355 bytes Desc: screenshot.JPG URL: From Andrew.Davidson at warwick.ac.uk Thu Jul 21 09:19:42 2011 From: Andrew.Davidson at warwick.ac.uk (Davidson, Andrew) Date: Thu, 21 Jul 2011 09:19:42 +0100 Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOTtemplates References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Hi yes the flv and mp3 files work elsewhere. I'll give it another shot with different flvs and mp3s. Yes, I thought it would be useful to be able to have a series of images which when one is clicked it would enlarge and there would be a media player beneath the image which the user could click on to hear a description/explanation. Other images would still be viewable (guessing there would be a limit of maybe three images to fit across the top of the display window) but would naturally be smaller than the temporarily selected one. The media player for a sound file attached to the image would be an optional add-in. It's something I'd like to incorporate for a comparison type activity for a project I am working on. Audio slide show pagetype was considered but it moves from image to image but does not retain a view of all images for the task. Also, based on the original multiple perspectives design, I think it would work well to have an image option to go along with the video and sound file options. Andy Centre for Applied Linguistics Room 0.39 (Social Sciences building) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk on behalf of Julian Tenney Sent: Thu 21/07/2011 08:47 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOTtemplates it uses flv and mp3. Do the videos work elsewhere OK? For the images / sound, you mean have an image load up when a partiular sound is chosen? ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Davidson, Andrew [Andrew.Davidson at warwick.ac.uk] Sent: 21 July 2011 07:57 To: Xerte discussion list Subject: [Xerte] problem with Multiple Perspectives pagetype in XOT templates Hi all - I am trying to set up a page in XOT templates version using the Multiple Perspectives pagetype. I have tried loading .flv and .swf files for the video option and .mp3 for the sound file option. The files appear to upload to the editing page but do not appear on the display page. Am I using the wrong file types? Also, I wonder if it would be possible to extend the functionality of this page to include images which could be linked with sound? That would be a useful addition in my humble opinion. Cheers Andy This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Fay.Cross at nottingham.ac.uk Thu Jul 21 09:53:34 2011 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Thu, 21 Jul 2011 09:53:34 +0100 Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOTtemplates In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jul 21 10:30:51 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 21 Jul 2011 10:30:51 +0100 Subject: [Xerte] Re: zipped LOs In-Reply-To: <8B6D69C81759694E92E48C18738CF3AF01270510@exchange5.cornwall.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk> <8B6D69C81759694E92E48C18738CF3AF01270510@exchange5.cornwall.ac.uk> Message-ID: Hello, It's not a webpage full of garbage, it's just what a zipfile looks like when you open it in a text editor. There will be a server setting somewhere (mod_deflate maybe if apache) that'll allow it to serve the zipfile. I'm not server enough to know a definitive answer. Pat On Thu, Jul 21, 2011 at 9:17 AM, Shirley Crawford wrote: > Hi > > > > Couple of questions, first of all we Xerte on a hosted server which appears > to be working fine except for the export, when clicking on the zipped file > to download it, displays a webpage full of garbage, it is not saving as a > zipped file ? is there something our techi person needs to do with the > installation to put this right?? Have also tried this using Firefox, still > the same problem. > > > > My second question is in relation to the Embedded Learning Materials which > are now on the excellence gateway, > http://rwp.excellencegateway.org.uk/Interactive%20Materials/ we also have > these materials on CD which were issued to colleges, ?when you run some of > them IE crashes, same happens when running them from the website in IE (they > work fine in other browsers), as I want them in a Moodle course and do not > know which browser the end user will view them on, I wondered if there is > some way that I can embed the LOs in Xerte.? I have attached a screen shot > of the directory structure for one of the LOs which crashes. > > > > Shirley > > > > Shirley Crawford > E-Learning Teaching Mentor > Moodle Administrator > (Room J449 Tel:external: 01726 226755 ext 2755) > Cornwall College - St Austell > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Andrew.Davidson at warwick.ac.uk Thu Jul 21 11:09:00 2011 From: Andrew.Davidson at warwick.ac.uk (Davidson, Andrew) Date: Thu, 21 Jul 2011 11:09:00 +0100 Subject: [Xerte] Re: problem with Multiple Perspectives pagetypein XOTtemplates References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: Hi Fay - thanks for the email - I have entered text and have also noted that with the sound file option there is an image add in option. However, all files I upload still do not display/open. Every other page in xot templates works on my computer except this one but wonder if someone could just try it to see if its just me or whether it is a prob with the page itself. Thanks Andy Centre for Applied Linguistics Room 0.39 (Social Sciences building) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk on behalf of Fay Cross Sent: Thu 21/07/2011 09:53 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetypein XOTtemplates Hi Andy I can't check this at the moment but I have a feeling that you have to have entered some text to go with each video for them to load. Fay ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Davidson, Andrew [Andrew.Davidson at warwick.ac.uk] Sent: 21 July 2011 09:19 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOTtemplates Hi yes the flv and mp3 files work elsewhere. I'll give it another shot with different flvs and mp3s. Yes, I thought it would be useful to be able to have a series of images which when one is clicked it would enlarge and there would be a media player beneath the image which the user could click on to hear a description/explanation. Other images would still be viewable (guessing there would be a limit of maybe three images to fit across the top of the display window) but would naturally be smaller than the temporarily selected one. The media player for a sound file attached to the image would be an optional add-in. It's something I'd like to incorporate for a comparison type activity for a project I am working on. Audio slide show pagetype was considered but it moves from image to image but does not retain a view of all images for the task. Also, based on the original multiple perspectives design, I think it would work well to have an image option to go along with the video and sound file options. Andy Centre for Applied Linguistics Room 0.39 (Social Sciences building) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk on behalf of Julian Tenney Sent: Thu 21/07/2011 08:47 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOTtemplates it uses flv and mp3. Do the videos work elsewhere OK? For the images / sound, you mean have an image load up when a partiular sound is chosen? ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Davidson, Andrew [Andrew.Davidson at warwick.ac.uk] Sent: 21 July 2011 07:57 To: Xerte discussion list Subject: [Xerte] problem with Multiple Perspectives pagetype in XOT templates Hi all - I am trying to set up a page in XOT templates version using the Multiple Perspectives pagetype. I have tried loading .flv and .swf files for the video option and .mp3 for the sound file option. The files appear to upload to the editing page but do not appear on the display page. Am I using the wrong file types? Also, I wonder if it would be possible to extend the functionality of this page to include images which could be linked with sound? That would be a useful addition in my humble opinion. Cheers Andy This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Fay.Cross at nottingham.ac.uk Thu Jul 21 12:14:57 2011 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Thu, 21 Jul 2011 12:14:57 +0100 Subject: [Xerte] Re: problem with Multiple Perspectives pagetypein XOTtemplates In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk>, , Message-ID: An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: common.zip Type: application/x-zip-compressed Size: 5106 bytes Desc: common.zip URL: From Julian.Tenney at nottingham.ac.uk Thu Jul 21 12:03:40 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 21 Jul 2011 12:03:40 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D57356F7@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Thu Jul 21 13:01:08 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 21 Jul 2011 08:01:08 -0400 Subject: [Xerte] Re: zipped LOs In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk>, <8B6D69C81759694E92E48C18738CF3AF01270510@exchange5.cornwall.ac.uk>, Message-ID: Or in the interim, right click the link and choose "Save As"? > Date: Thu, 21 Jul 2011 10:30:51 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: zipped LOs > > Hello, > > It's not a webpage full of garbage, it's just what a zipfile looks > like when you open it in a text editor. > > There will be a server setting somewhere (mod_deflate maybe if apache) > that'll allow it to serve the zipfile. > > I'm not server enough to know a definitive answer. > > Pat > > On Thu, Jul 21, 2011 at 9:17 AM, Shirley Crawford > wrote: > > Hi > > > > > > > > Couple of questions, first of all we Xerte on a hosted server which appears > > to be working fine except for the export, when clicking on the zipped file > > to download it, displays a webpage full of garbage, it is not saving as a > > zipped file ? is there something our techi person needs to do with the > > installation to put this right? Have also tried this using Firefox, still > > the same problem. > > > > > > > > My second question is in relation to the Embedded Learning Materials which > > are now on the excellence gateway, > > http://rwp.excellencegateway.org.uk/Interactive%20Materials/ we also have > > these materials on CD which were issued to colleges, when you run some of > > them IE crashes, same happens when running them from the website in IE (they > > work fine in other browsers), as I want them in a Moodle course and do not > > know which browser the end user will view them on, I wondered if there is > > some way that I can embed the LOs in Xerte. I have attached a screen shot > > of the directory structure for one of the LOs which crashes. > > > > > > > > Shirley > > > > > > > > Shirley Crawford > > E-Learning Teaching Mentor > > Moodle Administrator > > (Room J449 Tel:external: 01726 226755 ext 2755) > > Cornwall College - St Austell > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Thu Jul 21 13:16:14 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 21 Jul 2011 08:16:14 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: This one that you sent seems quite simple: ? ? import flash.external.ExternalInterface; ExternalInterface.call("s = function() { document.getElementById('mymovie').focus(); }"); ?where 'mymovie' is ID of embedded swf object in html script. I added the script to the SWF but I'm not sure about the ID. ?Do I put the name of the swf, without the .swf extension in place of mymovie? ?If that is correct then I tried it and it didn't work. The code is sayingExternalInterface // talk to the DOM (Document Object Model, in this case the html page) you are embedded in document.getElementById('mymovie').focus(); // find the element in the html with id x and give it focus. So look in the html and get the id of the object holding the Xerte .swfIt varies depending on how you are deploying, e.g. I think if it is packaged for scorm the object is
From d_b_burnett at hotmail.com Thu Jul 21 14:38:53 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 21 Jul 2011 09:38:53 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: In the case of packaging for index.htm, the object is defined in rloObject.js div id='rlo' Date: Thu, 21 Jul 2011 08:45:07 +0300 From: admin at strivney.com To: Xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Well thanks to everyone for trying to help! The reason I am trying to avoid the "Click here to start" workaround is that my viewers are English language learners who can't read yet so they won't understand the instruction. Dave, I tried adding the SWF in a component but Xerte didn't like that at all. (Maybe I didn't do it right - I put the file location of the SWF in the component directly in the RLO?). Paul, thanks for those links. ?There is a lot about it on the internet but most of the fixes were beyond my ability/understanding. ? This one that you sent seems quite simple: ? ? import flash.external.ExternalInterface; ExternalInterface.call("s = function() { document.getElementById('mymovie').focus(); }"); ?where 'mymovie' is ID of embedded swf object in html script. I added the script to the SWF but I'm not sure about the ID. ?Do I put the name of the swf, without the .swf extension in place of mymovie? ?If that is correct then I tried it and it didn't work. Another suggests putting the following script in the containing HTML page. ?I am displaying the Xerte in Moodle. ?I tried adding the code to the page via the Moodle interface and the Moodle editor just deleted it. ?I haven't got a clue how to locate that page via FTP. ?Also this script is Actionscript in a Java tag - can I put that in an HTML page? ? I hoped to make variations of this game, which is rather cute for the level I am aiming at, so I would love to resolve this. Thanks again, Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Thu Jul 21 21:56:45 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 21 Jul 2011 23:56:45 +0300 Subject: [Xerte] Re: Setting Focus on the SWF Message-ID: Thanks guys! Moodle links to the index.html so I tried: import flash.external.ExternalInterface; ExternalInterface.call("s = function() { document.getElementById('rlo').focus(); }"); Alas no change. Thanks for trying everybody. I will just have to go the "click here" route :-(. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.rochford at rsc-eastern.ac.uk Thu Jul 21 22:17:48 2011 From: t.rochford at rsc-eastern.ac.uk (Rochford, Thomas) Date: Thu, 21 Jul 2011 22:17:48 +0100 Subject: [Xerte] Google Maps Issue Message-ID: <4674046E63E78C4B965382B5DFB4930902E39818@CAMEXCH.ANGLIA.LOCAL> Good evening, I know there was quite a lot of discussion on the list about Google Maps not displaying correctly on the page which is meant to show these. I've downloaded the latest map.rlm dated July 7th from the SVN and it still only shows the view of the planet although clicking on it will bring up the correct location. It used to display the correct location by default. Has this issue been fixed and if so do I need to download the .rlt and .xwd files as well? I'm using the standard XOT 1.6 download with IE 9 & Apache. I've tried searching the archives fore 'google map' but can't find anything relevant and/or recent. Kindest Regards, Thomas Thomas Rochford, e-Learning Advisor, JISC Regional Support Centre - Eastern Tel: 07500 669002, 01223 564749 e-mail: t.rochford at rsc-eastern.ac.uk , skype: cambridge.serendipity RSCs - Stimulating and Supporting Innovation in Learning RSC Eastern welcomes feedback on our services via support at rsc-eastern.ac.uk Please consider your environmental responsibility before printing this e-mail -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 843 bytes Desc: image001.jpg URL: From Andrew.Davidson at warwick.ac.uk Thu Jul 21 23:48:01 2011 From: Andrew.Davidson at warwick.ac.uk (Davidson, Andrew) Date: Thu, 21 Jul 2011 23:48:01 +0100 Subject: [Xerte] Re: problem with MultiplePerspectives pagetypein XOTtemplates References: <12C67A1EEC419342AF5E59DA31562C3F05D4D327C9@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D57356ED@EXCHANGE1.ad.nottingham.ac.uk>, , Message-ID: Thanks Fay - appreciate this and will give it a shot. cheers andy Centre for Applied Linguistics Room 0.39 (Social Sciences building) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk on behalf of Fay Cross Sent: Thu 21/07/2011 12:14 To: Xerte discussion list Subject: [Xerte] Re: problem with MultiplePerspectives pagetypein XOTtemplates It's working for me http://www.nottingham.ac.uk/toolkits/play_5429 Assuming the files you're using are working in other toolkits pages the only other thing I can think of is that some files are missing from your installation that make the page work. I've attached a zip with 3 files in it which need to be in the 'common' folder - these files are only used for this page type (the buttons that you use to scroll through the available video/sounds) so if they're missing then only this page would be having problems. ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Davidson, Andrew [Andrew.Davidson at warwick.ac.uk] Sent: 21 July 2011 11:09 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetypein XOTtemplates Hi Fay - thanks for the email - I have entered text and have also noted that with the sound file option there is an image add in option. However, all files I upload still do not display/open. Every other page in xot templates works on my computer except this one but wonder if someone could just try it to see if its just me or whether it is a prob with the page itself. Thanks Andy Centre for Applied Linguistics Room 0.39 (Social Sciences building) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk on behalf of Fay Cross Sent: Thu 21/07/2011 09:53 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetypein XOTtemplates Hi Andy I can't check this at the moment but I have a feeling that you have to have entered some text to go with each video for them to load. Fay ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Davidson, Andrew [Andrew.Davidson at warwick.ac.uk] Sent: 21 July 2011 09:19 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOTtemplates Hi yes the flv and mp3 files work elsewhere. I'll give it another shot with different flvs and mp3s. Yes, I thought it would be useful to be able to have a series of images which when one is clicked it would enlarge and there would be a media player beneath the image which the user could click on to hear a description/explanation. Other images would still be viewable (guessing there would be a limit of maybe three images to fit across the top of the display window) but would naturally be smaller than the temporarily selected one. The media player for a sound file attached to the image would be an optional add-in. It's something I'd like to incorporate for a comparison type activity for a project I am working on. Audio slide show pagetype was considered but it moves from image to image but does not retain a view of all images for the task. Also, based on the original multiple perspectives design, I think it would work well to have an image option to go along with the video and sound file options. Andy Centre for Applied Linguistics Room 0.39 (Social Sciences building) -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk on behalf of Julian Tenney Sent: Thu 21/07/2011 08:47 To: Xerte discussion list Subject: [Xerte] Re: problem with Multiple Perspectives pagetype in XOTtemplates it uses flv and mp3. Do the videos work elsewhere OK? For the images / sound, you mean have an image load up when a partiular sound is chosen? ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Davidson, Andrew [Andrew.Davidson at warwick.ac.uk] Sent: 21 July 2011 07:57 To: Xerte discussion list Subject: [Xerte] problem with Multiple Perspectives pagetype in XOT templates Hi all - I am trying to set up a page in XOT templates version using the Multiple Perspectives pagetype. I have tried loading .flv and .swf files for the video option and .mp3 for the sound file option. The files appear to upload to the editing page but do not appear on the display page. Am I using the wrong file types? Also, I wonder if it would be possible to extend the functionality of this page to include images which could be linked with sound? That would be a useful addition in my humble opinion. Cheers Andy This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Thu Jul 21 23:45:53 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 21 Jul 2011 18:45:53 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: Try this: flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); Date: Thu, 21 Jul 2011 23:56:45 +0300 From: admin at strivney.com To: Xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Thanks guys! Moodle links to the index.html so I tried: import flash.external.ExternalInterface; ExternalInterface.call("s = function() { document.getElementById('rlo').focus(); }"); Alas no change. Thanks for trying everybody. I will just have to go the "click here" route :-(. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 22 06:25:22 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 08:25:22 +0300 Subject: [Xerte] Setting Focus on the SWF Message-ID: DAVE!!!! It worked!!! You're a genius! Thank you so much! And thanks also to everyone else who tried to help with this problem. In case you missed it, the solution to setting the focus on the SWF is: flash.external.ExternalInterface.call( "document.getElementById(\"rlo\").focus"); Deborah :-)) -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Fri Jul 22 10:11:02 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 12:11:02 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: I have discovered that when trying out Xerte on my desktop, using control+F5, when Xerte reaches the SWF containing the flash.external.ExternalInterface.call( "document.getElementById(\"rlo\").focus"); it freezes and it is impossible to move forwards or backwards in the RLO. If the viewing screen is closed and I try to do another control+F5 Xerte doesn't co-operate. This isn't a critical problem because it works when uploaded, it just makes testing tricky. Any ideas why this might be? Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jul 22 10:13:25 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 10:13:25 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jul 22 10:15:36 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 10:15:36 +0100 Subject: [Xerte] Re: Google Maps Issue In-Reply-To: <4674046E63E78C4B965382B5DFB4930902E39818@CAMEXCH.ANGLIA.LOCAL> References: <4674046E63E78C4B965382B5DFB4930902E39818@CAMEXCH.ANGLIA.LOCAL> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735706@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 843 bytes Desc: image001.jpg URL: From t.rochford at rsc-eastern.ac.uk Fri Jul 22 10:27:42 2011 From: t.rochford at rsc-eastern.ac.uk (Rochford, Thomas) Date: Fri, 22 Jul 2011 10:27:42 +0100 Subject: [Xerte] Re: Google Maps Issue Message-ID: <4674046E63E78C4B965382B5DFB4930902E3982D@CAMEXCH.ANGLIA.LOCAL> I downloaded the fix you applied on July 7th, but I'm not sure if there are changes to the .rlt and .xwd files that I need to include as well. Kindest regards, Thomas From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 22 July 2011 10:16 AM To: Xerte discussion list Subject: [Xerte] Re: Google Maps Issue I thought I fixed it, and the files are all in the svn. I'm not at my desk today... ________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Rochford, Thomas [t.rochford at rsc-eastern.ac.uk] Sent: 21 July 2011 22:17 To: Xerte discussion list Subject: [Xerte] Google Maps Issue Good evening, I know there was quite a lot of discussion on the list about Google Maps not displaying correctly on the page which is meant to show these. I've downloaded the latest map.rlm dated July 7th from the SVN and it still only shows the view of the planet although clicking on it will bring up the correct location. It used to display the correct location by default. Has this issue been fixed and if so do I need to download the .rlt and .xwd files as well? I'm using the standard XOT 1.6 download with IE 9 & Apache. I've tried searching the archives fore 'google map' but can't find anything relevant and/or recent. Kindest Regards, Thomas Thomas Rochford, e-Learning Advisor, JISC Regional Support Centre - Eastern Tel: 07500 669002, 01223 564749 e-mail: t.rochford at rsc-eastern.ac.uk , skype: cambridge.serendipity RSCs - Stimulating and Supporting Innovation in Learning RSC Eastern welcomes feedback on our services via support at rsc-eastern.ac.uk Please consider your environmental responsibility before printing this e-mail This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 843 bytes Desc: image001.jpg URL: From Julian.Tenney at nottingham.ac.uk Fri Jul 22 10:36:54 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 10:36:54 +0100 Subject: [Xerte] Re: Google Maps Issue In-Reply-To: <4674046E63E78C4B965382B5DFB4930902E3982D@CAMEXCH.ANGLIA.LOCAL> References: <4674046E63E78C4B965382B5DFB4930902E3982D@CAMEXCH.ANGLIA.LOCAL> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735708@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 843 bytes Desc: image001.jpg URL: From admin at strivney.com Fri Jul 22 11:10:53 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 13:10:53 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Oh..........I see..........I think.... I'm sorry to be dim but can you be a bit more specific. Where do I put this code? And how do I try it out? if (mdm != undefined){ > //we are at author time: the mdm scripting obejcts are available > } else { > //we must be in the browser... > } > Deborah > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Fri Jul 22 11:20:11 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 13:20:11 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Another discovery for the information of this list. I previously had tried: getURL("javascript:swfName.focus( );void 0;"); Selection.setFocus(this); in the SWF but it didn't do the trick. When I added Dave's suggestion: flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); problem was fixed. I later took out the first bit of code as I thought it was superfluous and..... problem again. So, weirdly or not, a combination of the two pieces of code is what solved the problem: getURL("javascript:swfName.focus( );void 0;"); Selection.setFocus(this); flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); When I at m testing on the desktop and get to the page in the rlo which houses that SWF, two browser windows open up. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jul 22 11:23:29 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 11:23:29 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 22 12:16:15 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 07:16:15 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , Message-ID: Define which environment is exhibiting which behaviour. Authoring? local testing? server(http) testing? getURL("javascript:swfName.focus( );void 0;"); // I don't think this is actually doing anything, and is the cause of the new browser windows opening. Selection.setFocus(this); // this is for giving focus to objects internal to the swf (like a text field), not giving focus to the swf embedded within the browser, which I thought was the issue here. flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); There are a couple changes in this one from the previous attempts. Try removing the fully qualified path: ExternalInterface.call("document.getElementById(\"rlo\").focus"); Date: Fri, 22 Jul 2011 13:20:11 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Another discovery for the information of this list. I previously had tried: getURL("javascript:swfName.focus( );void 0;");Selection.setFocus(this); in the SWF but it didn't do the trick. When I added Dave's suggestion: flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); problem was fixed. I later took out the first bit of code as I thought it was superfluous and..... problem again. So, weirdly or not, a combination of the two pieces of code is what solved the problem: getURL("javascript:swfName.focus( );void 0;");Selection.setFocus(this);flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); When I at m testing on the desktop and get to the page in the rlo which houses that SWF, two browser windows open up. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 22 12:39:51 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 12:39:51 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735712@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From admin at strivney.com Fri Jul 22 12:44:04 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 14:44:04 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Yes Dave, that works on its own. And only opens one browser window when tested.:-) Thank you. Julian: if (mdm != undefined){ //WHAT DO I PUT HERE? } else { flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); } Do I put this in the SWF or rlo? Deborah On Fri, Jul 22, 2011 at 1:23 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > use it to decide whether to call the flash.external.ExternalInterface > blah. you only want to do that in the browser, > ------------------------------ > *From:* xerte-bounces at lists.nottingham.ac.uk [ > xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin [ > admin at strivney.com] > *Sent:* 22 July 2011 11:10 > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Setting Focus on the SWF > > Oh..........I see..........I think.... > > I'm sorry to be dim but can you be a bit more specific. Where do I put > this code? And how do I try it out? > > if (mdm != undefined){ >> //we are at author time: the mdm scripting obejcts are available >> } else { >> //we must be in the browser... >> } >> > > Deborah > >> >> > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > -- Deborah International Site (English instructions): *Strivney English - Where Learning to Read is Fun* Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): *??????? - ????? ?????? ?? ??? * http://twitter.com/DeborahDelin -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jul 22 12:59:37 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 12:59:37 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735715@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 22 13:21:11 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 08:21:11 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: Date: Fri, 22 Jul 2011 14:44:04 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Yes Dave, that works on its own. And only opens one browser window when tested.:-) Thank you. Julian: if (mdm != undefined){ //mdm is the Zinc/Flash interface engine that runs the editor.// the statement is saying "if the Zinc editor object exists" So you are in editing mode, so do not invoke the extinterface call //WHAT DO I PUT HERE? } else {flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); // you are not in editing mode, so you must be in runtime//invoke the call } Do I put this in the SWF or rlo? // in the rlo Deborah On Fri, Jul 22, 2011 at 1:23 PM, Julian Tenney wrote: use it to decide whether to call the flash.external.ExternalInterface blah. you only want to do that in the browser, From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin [admin at strivney.com] Sent: 22 July 2011 11:10 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Oh..........I see..........I think.... I'm sorry to be dim but can you be a bit more specific. Where do I put this code? And how do I try it out? if (mdm != undefined){ //we are at author time: the mdm scripting obejcts are available } else { //we must be in the browser... } Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Fri Jul 22 13:23:46 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 08:23:46 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: > Do I put this in the SWF or rlo? // in the .rlo Wait a sec. Where are you placing the code now? In the rlo or in the loaded swf? If that call works from the .rlo, leave it there. J, does the wrapper already exist then? Date: Fri, 22 Jul 2011 14:44:04 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Yes Dave, that works on its own. And only opens one browser window when tested.:-) Thank you. Julian: if (mdm != undefined){//WHAT DO I PUT HERE? } else {flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); } Do I put this in the SWF or rlo? Deborah On Fri, Jul 22, 2011 at 1:23 PM, Julian Tenney wrote: use it to decide whether to call the flash.external.ExternalInterface blah. you only want to do that in the browser, From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin [admin at strivney.com] Sent: 22 July 2011 11:10 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Oh..........I see..........I think.... I'm sorry to be dim but can you be a bit more specific. Where do I put this code? And how do I try it out? if (mdm != undefined){ //we are at author time: the mdm scripting obejcts are available } else { //we must be in the browser... } Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 22 13:52:24 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 13:52:24 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735716@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jul 22 13:55:04 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 13:55:04 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D5735716@EXCHANGE1.ad.nottingham.ac.uk> References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, , , <12C67A1EEC419342AF5E59DA31562C3F05D5735716@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735718@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 22 13:52:32 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 08:52:32 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: That ExtInterface call should work on it's own. If there are still issues you should back up and try first principles. Put a "hello world" javascript function in the html page. Call it from the .rlo. Does it work? Yes - change the js function to find and report the
wrote: use it to decide whether to call the flash.external.ExternalInterface blah. you only want to do that in the browser, From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin [admin at strivney.com] Sent: 22 July 2011 11:10 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Oh..........I see..........I think.... I'm sorry to be dim but can you be a bit more specific. Where do I put this code? And how do I try it out? if (mdm != undefined){ //we are at author time: the mdm scripting obejcts are available } else { //we must be in the browser... } Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 22 14:21:38 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 16:21:38 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I am putting the code in the SWF. I wouldn't know where to put it in the rlo. In any case, Julian's code below seems to have sorted out the testing problems so thanks so much to you all for your persistence in helping me solve this matter. flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); if (mdm != undefined){ //DO NOTHING } else { flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); } Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 22 14:33:40 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 09:33:40 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D5735718@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735716@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D5735718@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Cool. So it can be called from the .rlo instead of the .swf. I don't like putting code in swfs (other than compiled routines). From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Fri, 22 Jul 2011 13:55:04 +0100 Subject: [Xerte] Re: Setting Focus on the SWF The wrapper function is callJS(funcName, params); which wraps ExternalInterface.call(funcName, params); and since that's all it does the only reason or it to be there is because ExternalInterface isn't directly accessible from the Xerte script. From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney [Julian.Tenney at nottingham.ac.uk] Sent: 22 July 2011 13:52 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF try it and see: I'd place it in the swf. From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett [d_b_burnett at hotmail.com] Sent: 22 July 2011 13:23 To: Xerte list Subject: [Xerte] Re: Setting Focus on the SWF > Do I put this in the SWF or rlo? // in the .rlo Wait a sec. Where are you placing the code now? In the rlo or in the loaded swf? If that call works from the .rlo, leave it there. J, does the wrapper already exist then? Date: Fri, 22 Jul 2011 14:44:04 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Yes Dave, that works on its own. And only opens one browser window when tested.:-) Thank you. Julian: if (mdm != undefined){ //WHAT DO I PUT HERE? } else { flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); } Do I put this in the SWF or rlo? Deborah On Fri, Jul 22, 2011 at 1:23 PM, Julian Tenney wrote: use it to decide whether to call the flash.external.ExternalInterface blah. you only want to do that in the browser, From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin [admin at strivney.com] Sent: 22 July 2011 11:10 To: Xerte discussion list Subject: [Xerte] Re: Setting Focus on the SWF Oh..........I see..........I think.... I'm sorry to be dim but can you be a bit more specific. Where do I put this code? And how do I try it out? if (mdm != undefined){ //we are at author time: the mdm scripting obejcts are available } else { //we must be in the browser... } Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Deborah International Site (English instructions): Strivney English - Where Learning to Read is Fun Site for Hebrew and English/Hebrew speakers (Hebrew and English Instructions): ??????? - ????? ?????? ?? ??? http://twitter.com/DeborahDelin _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 22 15:11:03 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 22 Jul 2011 15:11:03 +0100 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735705@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D573570B@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D5735716@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D5735718@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D5735720@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 22 15:41:59 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 10:41:59 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: In case you missed it, the solution to setting the focus on the SWF is: flash.external.ExternalInterface.call("document.getElementById(\"rlo\").focus"); Or if you are not lucky enough to have control of the .fla/.swf:Within Xerte: callJS('document.getElementById("rlo").focus'); -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Fri Jul 22 17:43:07 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 19:43:07 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: Where exactly in Xerte would you put it? callJS('document.getElementById("rlo").focus'); -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 22 18:07:50 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 13:07:50 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , Message-ID: If I remember correctly, you are trapping the onLoad event for the swf. Put it under there. Should work, unfortunately we don't know why/where the thing loses focus in the first place... Date: Fri, 22 Jul 2011 19:43:07 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Where exactly in Xerte would you put it? callJS('document.getElementById("rlo").focus'); This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Fri Jul 22 18:37:13 2011 From: admin at strivney.com (Deborah Delin) Date: Fri, 22 Jul 2011 20:37:13 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: Sorry, but I'm not au fait with adding script to Xerte. Where would I find the onLoad event in the rlo? Thank you. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Fri Jul 22 23:31:55 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Fri, 22 Jul 2011 18:31:55 -0400 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: , , , , Message-ID: The icon called onLoad in the Burst the Balloons page? ;-) Date: Fri, 22 Jul 2011 20:37:13 +0300 From: admin at strivney.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Setting Focus on the SWF Sorry, but I'm not au fait with adding script to Xerte. Where would I find the onLoad event in the rlo? Thank you. Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Sat Jul 23 04:51:45 2011 From: admin at strivney.com (Deborah Delin) Date: Sat, 23 Jul 2011 06:51:45 +0300 Subject: [Xerte] Re: Setting Focus on the SWF In-Reply-To: References: Message-ID: On Sat, Jul 23, 2011 at 1:31 AM, Dave Burnett wrote: > > The icon called onLoad in the Burst the Balloons page? > ;-) > > Thank you! Yes, well it seems so obvious now you've said it! > -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.rochford at rsc-eastern.ac.uk Sun Jul 24 22:59:17 2011 From: t.rochford at rsc-eastern.ac.uk (Rochford, Thomas) Date: Sun, 24 Jul 2011 22:59:17 +0100 Subject: [Xerte] Inquiry-Based Learning Object Message-ID: <4674046E63E78C4B965382B5DFB4930902E39871@CAMEXCH.ANGLIA.LOCAL> Hi everyone, Some months ago someone posted details on one of the Xerte Discussion lists about the Inquiry-Based Learning object that was produced for the Veterinary School at Nottingham University. I was sure I had bookmarked it but I seem unable to find it now. The LO used the case of a sick dog that was brought into the vet's surgery and students had to work out what to do next and what measurements were significant etc. If someone can point me to it, I would be very grateful. I'ld like to show it at a training event on Monday for Equine Studies as an example of excellent practice. Kindest regards, Thomas -------------- next part -------------- An HTML attachment was scrubbed... URL: From ronm at mitchellmedia.co.uk Sun Jul 24 23:41:30 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Sun, 24 Jul 2011 23:41:30 +0100 Subject: [Xerte] Re: Inquiry-Based Learning Object In-Reply-To: <4674046E63E78C4B965382B5DFB4930902E39871@CAMEXCH.ANGLIA.LOCAL> References: <4674046E63E78C4B965382B5DFB4930902E39871@CAMEXCH.ANGLIA.LOCAL> Message-ID: <99D3FA5F-6BEE-42EB-9C95-2BEFA300450C@mitchellmedia.co.uk> http://www.nottingham.ac.uk/toolkits/play_3387 Sent from my iPad On 24 Jul 2011, at 22:59, "Rochford, Thomas" wrote: > Hi everyone, > > > > Some months ago someone posted details on one of the Xerte Discussion lists about the Inquiry-Based Learning object that was produced for the Veterinary School at Nottingham University. I was sure I had bookmarked it but I seem unable to find it now. The LO used the case of a sick dog that was brought into the vet?s surgery and students had to work out what to do next and what measurements were significant etc. > > > > If someone can point me to it, I would be very grateful. I?ld like to show it at a training event on Monday for Equine Studies as an example of excellent practice. > > > > Kindest regards, > > Thomas > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 t.rochford at rsc-eastern.ac.uk Sun Jul 24 23:47:22 2011 From: t.rochford at rsc-eastern.ac.uk (Rochford, Thomas) Date: Sun, 24 Jul 2011 23:47:22 +0100 Subject: [Xerte] Re: Inquiry-Based Learning Object References: <4674046E63E78C4B965382B5DFB4930902E39871@CAMEXCH.ANGLIA.LOCAL> <99D3FA5F-6BEE-42EB-9C95-2BEFA300450C@mitchellmedia.co.uk> Message-ID: <4674046E63E78C4B965382B5DFB4930902E39872@CAMEXCH.ANGLIA.LOCAL> Thank you very much. I?m also hoping to show the YouTube video of the work that Epping forest College have done following the training session you provided in London at which they were present. Kindest regards, Thomas From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 24 July 2011 11:42 PM To: Xerte discussion list Subject: [Xerte] Re: Inquiry-Based Learning Object http://www.nottingham.ac.uk/toolkits/play_3387 Sent from my iPad On 24 Jul 2011, at 22:59, "Rochford, Thomas" wrote: Hi everyone, Some months ago someone posted details on one of the Xerte Discussion lists about the Inquiry-Based Learning object that was produced for the Veterinary School at Nottingham University. I was sure I had bookmarked it but I seem unable to find it now. The LO used the case of a sick dog that was brought into the vet?s surgery and students had to work out what to do next and what measurements were significant etc. If someone can point me to it, I would be very grateful. I?ld like to show it at a training event on Monday for Equine Studies as an example of excellent practice. Kindest regards, Thomas This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 eouzora at gmail.com Mon Jul 25 09:07:36 2011 From: eouzora at gmail.com (zulfadli rusman) Date: Mon, 25 Jul 2011 16:07:36 +0800 Subject: [Xerte] Re: Xerte Digest, Vol 33, Issue 13 In-Reply-To: References: Message-ID: could i know how can i change my appearance of the SCORM?is it contained on the javascript or on the flash file and which flash file? On Wed, Jul 13, 2011 at 9:00 PM, wrote: > Send Xerte mailing list submissions to > xerte at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > or, via email, send a message with subject or body 'help' to > xerte-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte digest..." > > > Today's Topics: > > 1. Re: XOT Multiple Choice Page (Alistair McNaught) > 2. Re: XOT Multiple Choice Page (Julian Tenney) > 3. Re: XOT Multiple Choice Page (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 13 Jul 2011 13:38:12 +0100 > From: "Alistair McNaught" > To: "Xerte discussion list" > Cc: > Subject: [Xerte] Re: XOT Multiple Choice Page > Message-ID: > Content-Type: text/plain; charset="us-ascii" > > E. coli is appearing as > E. > Coli > > Sounds like a bug ..... ;-) > > Sent from my phone: > Alistair McNaught > 07870567659 > > > On 13 Jul 2011, at 12:34, "Jeffrey, Claire" < > claire.jeffrey at quarriers.org.uk> wrote: > > > E. coli is appearing as > > > > E. > > > > Coli > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/d2967e56/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Wed, 13 Jul 2011 13:39:18 +0100 > From: Julian Tenney > To: Xerte discussion list > Subject: [Xerte] Re: XOT Multiple Choice Page > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F05D3D93CF7 at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="utf-8" > > I can?t reproduce it in my local files, in the svn files, in our toolkits, > in my standalone xerte? so it?s hopefully been fixed. Try updating the > model. > > Just to be sure: this is the MCQ page type? > > From: xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught > Sent: 13 July 2011 13:38 > To: Xerte discussion list > Cc: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: XOT Multiple Choice Page > > E. coli is appearing as > E. > Coli > > Sounds like a bug ..... ;-) > > Sent from my phone: > Alistair McNaught > 07870567659 > > > On 13 Jul 2011, at 12:34, "Jeffrey, Claire" < > claire.jeffrey at quarriers.org.uk> > wrote: > E. coli is appearing as > E. > Coli > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/75718848/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Wed, 13 Jul 2011 13:45:54 +0100 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: XOT Multiple Choice Page > Message-ID: > > > Content-Type: text/plain; charset="windows-1252" > > I'd be tempted to wonder if the text was pasted in and a stray char has > gotten involved. > > On Wed, Jul 13, 2011 at 1:07 PM, Julian Tenney < > Julian.Tenney at nottingham.ac.uk> wrote: > > > Can anyone else reproduce this? It works fine ehre?**** > > > > ** ** > > > > **** > > > > ** ** > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Jeffrey, Claire > > *Sent:* 13 July 2011 12:07 > > *To:* xerte at lists.nottingham.ac.uk > > *Subject:* [Xerte] XOT Multiple Choice Page**** > > > > ** ** > > > > Hi**** > > > > ** ** > > > > I am using the XOT multiple choice page and some (not all) of my answers > > are splitting over 2 lines, e.g. E. coli is appearing as**** > > > > E.**** > > > > Coli**** > > > > ** ** > > > > Claire**** > > > > *Claire Jeffrey* > > IT Trainer | www.quarriers.org.uk **** > > > > Training Department**** > > > > Phone 01505 616035 | claire.jeffrey at quarriers.org.uk > > Quarriers, Quarriers Village, Bridge of Weir, PA11 3SX > > **** > > > > *Quarriers Adult Disability< > http://www.quarriers.org.uk/OurWork/AdultDisability.aspx> > > **| Quarriers Children and Families< > http://www.quarriers.org.uk/OurWork/ChildrenAndFamilies.aspx> > > ** | Quarriers Epilepsy< > http://www.quarriers.org.uk/OurWork/Epilepsy.aspx> > > **| Quarriers Young Adults< > http://www.quarriers.org.uk/OurWork/YoungAdults.aspx> > > * < > http://www.youtube.com/quarrierscharity>< > http://quarrierscharity.blogspot.com/> > > Quarriers is a registered Scottish Charity No. SC001960 and a company > > registered in Scotland No 14361 VAT Registration No 263 5009 75. > > > > CONFIDENTIALITY NOTICE: The information in this e-mail and any > attachments > > to it are confidential and may be legally privileged or prohibited from > > disclosure and unauthorised use. If you are not the intended recipient > > please destroy this e-mail and notify the sender. > > Please consider the environment before printing this e-mail **** > > > > This message and any attachment are intended solely for the addressee > and > > may contain confidential information. If you have received this message > in > > error, please send it back to me, and immediately delete it. Please do > not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email > do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment > > may still contain software viruses which could damage your computer > system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message > in > > error, please send it back to me, and immediately delete it. Please do > not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email > do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment > > may still contain software viruses which could damage your computer > 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: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/153ac2a8/attachment.html > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image006.jpg > Type: image/jpeg > Size: 1479 bytes > Desc: not available > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/153ac2a8/attachment.jpg > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image005.jpg > Type: image/jpeg > Size: 1244 bytes > Desc: not available > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/153ac2a8/attachment-0001.jpg > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image001.jpg > Type: image/jpeg > Size: 9200 bytes > Desc: not available > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/153ac2a8/attachment-0002.jpg > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image004.jpg > Type: image/jpeg > Size: 1016 bytes > Desc: not available > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/153ac2a8/attachment-0003.jpg > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image002.jpg > Type: image/jpeg > Size: 2277 bytes > Desc: not available > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/153ac2a8/attachment-0004.jpg > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image003.jpg > Type: image/jpeg > Size: 1144 bytes > Desc: not available > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20110713/153ac2a8/attachment-0005.jpg > > > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 33, Issue 13 > ************************************* > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Jul 25 09:52:34 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 25 Jul 2011 09:52:34 +0100 Subject: [Xerte] Re: Xerte Digest, Vol 33, Issue 13 In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6071947@EXCHANGE1.ad.nottingham.ac.uk> Replace mcq.rlm with the one from the svn: http://code.google.com/p/xerte/source/browse/#svn%2Ftrunk%2Ftemplates%2FpageTemplates%2Fmodels From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of zulfadli rusman Sent: 25 July 2011 09:08 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Xerte Digest, Vol 33, Issue 13 could i know how can i change my appearance of the SCORM?is it contained on the javascript or on the flash file and which flash file? On Wed, Jul 13, 2011 at 9:00 PM, > wrote: Send Xerte mailing list submissions to xerte at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte or, via email, send a message with subject or body 'help' to xerte-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte digest..." Today's Topics: 1. Re: XOT Multiple Choice Page (Alistair McNaught) 2. Re: XOT Multiple Choice Page (Julian Tenney) 3. Re: XOT Multiple Choice Page (Pat Lockley) ---------------------------------------------------------------------- Message: 1 Date: Wed, 13 Jul 2011 13:38:12 +0100 From: "Alistair McNaught" > To: "Xerte discussion list" > Cc: > Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: > Content-Type: text/plain; charset="us-ascii" E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" > wrote: > E. coli is appearing as > > E. > > Coli > -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Wed, 13 Jul 2011 13:39:18 +0100 From: Julian Tenney > To: Xerte discussion list > Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D3D93CF7 at EXCHANGE1.ad.nottingham.ac.uk> Content-Type: text/plain; charset="utf-8" I can?t reproduce it in my local files, in the svn files, in our toolkits, in my standalone xerte? so it?s hopefully been fixed. Try updating the model. Just to be sure: this is the MCQ page type? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 13 July 2011 13:38 To: Xerte discussion list Cc: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: XOT Multiple Choice Page E. coli is appearing as E. Coli Sounds like a bug ..... ;-) Sent from my phone: Alistair McNaught 07870567659 On 13 Jul 2011, at 12:34, "Jeffrey, Claire" >> wrote: E. coli is appearing as E. Coli -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Wed, 13 Jul 2011 13:45:54 +0100 From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: XOT Multiple Choice Page Message-ID: > Content-Type: text/plain; charset="windows-1252" I'd be tempted to wonder if the text was pasted in and a stray char has gotten involved. On Wed, Jul 13, 2011 at 1:07 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > Can anyone else reproduce this? It works fine ehre?**** > > ** ** > > **** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Jeffrey, Claire > *Sent:* 13 July 2011 12:07 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] XOT Multiple Choice Page**** > > ** ** > > Hi**** > > ** ** > > I am using the XOT multiple choice page and some (not all) of my answers > are splitting over 2 lines, e.g. E. coli is appearing as**** > > E.**** > > Coli**** > > ** ** > > Claire**** > > *Claire Jeffrey* > IT Trainer | www.quarriers.org.uk **** > > Training Department**** > > Phone 01505 616035 | claire.jeffrey at quarriers.org.uk > Quarriers, Quarriers Village, Bridge of Weir, PA11 3SX > **** > > *Quarriers Adult Disability > **| Quarriers Children and Families > ** | Quarriers Epilepsy > **| Quarriers Young Adults > * > Quarriers is a registered Scottish Charity No. SC001960 and a company > registered in Scotland No 14361 VAT Registration No 263 5009 75. > > CONFIDENTIALITY NOTICE: The information in this e-mail and any attachments > to it are confidential and may be legally privileged or prohibited from > disclosure and unauthorised use. If you are not the intended recipient > please destroy this e-mail and notify the sender. > Please consider the environment before printing this e-mail **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: 1479 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 1244 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 9200 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.jpg Type: image/jpeg Size: 1016 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 2277 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 1144 bytes Desc: not available URL: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 33, Issue 13 ************************************* -------------- next part -------------- An HTML attachment was scrubbed... URL: From eouzora at gmail.com Mon Jul 25 10:01:37 2011 From: eouzora at gmail.com (zulfadli rusman) Date: Mon, 25 Jul 2011 17:01:37 +0800 Subject: [Xerte] customize Xerte appearance Message-ID: > > could i know how can i change my appearance of the SCORM?is it contained on > the javascript or on the flash file and which flash file? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mary.Watkins at port.ac.uk Tue Jul 26 08:47:58 2011 From: Mary.Watkins at port.ac.uk (Mary Watkins) Date: Tue, 26 Jul 2011 08:47:58 +0100 Subject: [Xerte] Xerte, Flash and Hot Potatoes Message-ID: <4E2E7F4A02000068000ABDF3@gw-gwia1.iso.port.ac.uk> Hello, Could the questions below be posted on the Xerte discussion board: I have imported an interactive exercise that I designed in Flash into an Xerte Learning Object but the roll over element doesn't work. More info should appear when users hover over the text but this isn't working when imported, although the image does flicker briefly. Also has anyone used Xerte with the Hot Potatoes package? I'd like to use some of their question formats in Xerte but I'm not sure how to integrate them together Many thanks Mary Mary Watkins Online Course Developer (SECS) 5.16 St George's Ext 8533 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 26 09:39:10 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 09:39:10 +0100 Subject: [Xerte] Re: Xerte, Flash and Hot Potatoes In-Reply-To: <4E2E7F4A02000068000ABDF3@gw-gwia1.iso.port.ac.uk> References: <4E2E7F4A02000068000ABDF3@gw-gwia1.iso.port.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6071D34@EXCHANGE1.ad.nottingham.ac.uk> You need to set interactivity to 'native SWF' One way of integrating Xerte and Hot Potatoes would be o open the hot potatoes quiz in a new window from the LO, HTH, J From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Mary Watkins Sent: 26 July 2011 08:48 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte, Flash and Hot Potatoes Hello, Could the questions below be posted on the Xerte discussion board: I have imported an interactive exercise that I designed in Flash into an Xerte Learning Object but the roll over element doesn't work. More info should appear when users hover over the text but this isn't working when imported, although the image does flicker briefly. Also has anyone used Xerte with the Hot Potatoes package? I'd like to use some of their question formats in Xerte but I'm not sure how to integrate them together Many thanks Mary Mary Watkins Online Course Developer (SECS) 5.16 St George's Ext 8533 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mary.Watkins at port.ac.uk Tue Jul 26 10:33:27 2011 From: Mary.Watkins at port.ac.uk (Mary Watkins) Date: Tue, 26 Jul 2011 10:33:27 +0100 Subject: [Xerte] Re: Xerte, Flash and Hot Potatoes Message-ID: <4E2E980002000068000ABE4B@gw-gwia1.iso.port.ac.uk> thanks for you message about Flash. I was hoping to have the hot potatoes questions open in the LO as I'd like to keep it all as a contained package. Do you know if this is possible? >>> Julian Tenney 26/07/11 9:40 AM >>> You need to set interactivity to *native SWF* One way of integrating Xerte and Hot Potatoes would be o open the hot potatoes quiz in a new window from the LO, HTH, J From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Mary Watkins Sent: 26 July 2011 08:48 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte, Flash and Hot Potatoes Hello, Could the questions below be posted on the Xerte discussion board: I have imported an interactive exercise that I designed in Flash into an Xerte Learning Object but the roll over element doesn't work. More info should appear when users hover over the text but this isn't working when imported, although the image does flicker briefly. Also has anyone used Xerte with the Hot Potatoes package? I'd like to use some of their question formats in Xerte but I'm not sure how to integrate them together Many thanks Mary Mary Watkins Online Course Developer (SECS) 5.16 St George's Ext 8533 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 26 10:34:38 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 10:34:38 +0100 Subject: [Xerte] Re: Xerte, Flash and Hot Potatoes In-Reply-To: <4E2E980002000068000ABE4B@gw-gwia1.iso.port.ac.uk> References: <4E2E980002000068000ABE4B@gw-gwia1.iso.port.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6071D91@EXCHANGE1.ad.nottingham.ac.uk> No, it's not, J From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Mary Watkins Sent: 26 July 2011 10:33 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Xerte, Flash and Hot Potatoes thanks for you message about Flash. I was hoping to have the hot potatoes questions open in the LO as I'd like to keep it all as a contained package. Do you know if this is possible? >>> Julian Tenney 26/07/11 9:40 AM >>> You need to set interactivity to ?native SWF? One way of integrating Xerte and Hot Potatoes would be o open the hot potatoes quiz in a new window from the LO, HTH, J From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Mary Watkins Sent: 26 July 2011 08:48 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte, Flash and Hot Potatoes Hello, Could the questions below be posted on the Xerte discussion board: I have imported an interactive exercise that I designed in Flash into an Xerte Learning Object but the roll over element doesn't work. More info should appear when users hover over the text but this isn't working when imported, although the image does flicker briefly. Also has anyone used Xerte with the Hot Potatoes package? I'd like to use some of their question formats in Xerte but I'm not sure how to integrate them together Many thanks Mary Mary Watkins Online Course Developer (SECS) 5.16 St George's Ext 8533 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 rr5247 at bris.ac.uk Tue Jul 26 10:42:58 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Tue, 26 Jul 2011 10:42:58 +0100 Subject: [Xerte] Controlling audio in 'media interactions' template Message-ID: Hi I'm a medical student making a language learning tutorial using the media interactions template: It's been really useful, as I have no experience of writing script. Especially the keyboard feature, thanks! I have a piece of audio with a full transcript on the left, and on the right I am using the transcript in 'fill in the blank' exercises. These follow the order of the audio. I was wondering whether there was a way to stop the audio resetting itself between interactive exercises, so that you don't have to keep refinding the place in the audio? This isn't ideal as the audio feature does have a minutes and seconds indicator. Alternatively, is there a way to embed the 'fill in the blanks' exercise and a section of the audio on the same page? Thanks Ruth -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 26 12:52:24 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 12:52:24 +0100 Subject: [Xerte] Re: Controlling audio in 'media interactions' template In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6071EAA@EXCHANGE1.ad.nottingham.ac.uk> No, that functionality would have to be developed... You could use the narration property of the pages in the main template to play sounds on each page. We're sort of planning to merge the two templates because people keep complaining that they can't have the bits they want from both. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ruth Russell Sent: 26 July 2011 10:43 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Controlling audio in 'media interactions' template Hi I'm a medical student making a language learning tutorial using the media interactions template: It's been really useful, as I have no experience of writing script. Especially the keyboard feature, thanks! I have a piece of audio with a full transcript on the left, and on the right I am using the transcript in 'fill in the blank' exercises. These follow the order of the audio. I was wondering whether there was a way to stop the audio resetting itself between interactive exercises, so that you don't have to keep refinding the place in the audio? This isn't ideal as the audio feature does have a minutes and seconds indicator. Alternatively, is there a way to embed the 'fill in the blanks' exercise and a section of the audio on the same page? Thanks Ruth -------------- next part -------------- An HTML attachment was scrubbed... URL: From rr5247 at bris.ac.uk Tue Jul 26 14:46:06 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Tue, 26 Jul 2011 14:46:06 +0100 Subject: [Xerte] Re: Controlling audio in 'media interactions' template In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6071EAA@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6071EAA@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Hi Julian, Thanks for your reply. When you say the main template, do you mean something other than the 'media interactions' template? I have found these instructions for narration in the wizards guide, but there is no option for 'insert model' in the media interactions template. Would I need to use a different template? Apologies if I'm asking very stupid questions. Thanks Ruth How to use Page Wizards in a standard Xerte project Models that support the use of page wizards Narration ? The narration optional parameter is included in many of the Page Wizards. This originates in the ?Page Templates? pages from which the wizards are derived. Because ?Page Templates? is a project wide template it can include elements that are not part of any individual page, but are shared by all the pages. One aspect of this is a icon structure that supports the playing of an audio file, specified in the Narration optional property. ? If you wish to use the narration optional property then you need to download from the Xerte wiki Page Wizards page, the narrationHandler.rlm file. To use this file. 1. Add an entry frame to your project's interface icon. 2. Select the entry frame 3. Do File / Insert Model and select the narrationHandler.rlm file. 4. You can now use the optional Narration property in your page wizards. On Tue, Jul 26, 2011 at 12:52 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > No, that functionality would have to be developed?**** > > ** ** > > You could use the narration property of the pages in the main template to > play sounds on each page.**** > > ** ** > > We?re sort of planning to merge the two templates because people keep > complaining that they can?t have the bits they want from both.**** > > ** ** > > ** ** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ruth Russell > *Sent:* 26 July 2011 10:43 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] Controlling audio in 'media interactions' template**** > > ** ** > > Hi**** > > ** ** > > I'm a medical student making a language learning tutorial using the media > interactions template: It's been really useful, as I have no experience of > writing script. Especially the keyboard feature, thanks!**** > > ** ** > > I have a piece of audio with a full transcript on the left, and on the > right I am using the transcript in 'fill in the blank' exercises. These > follow the order of the audio.**** > > ** ** > > I was wondering whether there was a way to stop the audio resetting itself > between interactive exercises, so that you don't have to keep refinding the > place in the audio? This isn't ideal as the audio feature does have a > minutes and seconds indicator.**** > > ** ** > > Alternatively, is there a way to embed the 'fill in the blanks' exercise > and a section of the audio on the same page?**** > > ** ** > > Thanks**** > > Ruth**** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 26 14:50:15 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 26 Jul 2011 09:50:15 -0400 Subject: [Xerte] sum part of array? In-Reply-To: References: Message-ID: Just out of curiosity, is there any way to sum part of an array? [1,2,3,4,5] Lets say I have an index variable and I always will want to sum from 0 to that variable. pseudo my_array.sum(0,var); Or am I forced to loop + add? Or any elegant way to create a temp array of the target elements and sum on that instead? Dave -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Tue Jul 26 15:29:49 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 26 Jul 2011 15:29:49 +0100 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: Message-ID: eval(array.join("+")) ? On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett wrote: > > > Just out of curiosity, is there any way to sum part of an array? > > > [1,2,3,4,5] > > > Lets say I have an index variable and I always will want to sum from 0 to > that variable. > > > pseudo > my_array.sum(0,var); > > > Or am I forced to loop + add? > > > Or any elegant way to create a temp array of the target elements and sum on > that instead? > > > Dave > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Tue Jul 26 16:11:38 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 26 Jul 2011 11:11:38 -0400 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: , , Message-ID: Legpuller. Besides using the evil eval, how does it limit the indexes it acts on? > Date: Tue, 26 Jul 2011 15:29:49 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: sum part of array? > > eval(array.join("+")) ? > > On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett wrote: > > > > > > Just out of curiosity, is there any way to sum part of an array? > > > > > > [1,2,3,4,5] > > > > > > Lets say I have an index variable and I always will want to sum from 0 to > > that variable. > > > > > > pseudo > > my_array.sum(0,var); > > > > > > Or am I forced to loop + add? > > > > > > Or any elegant way to create a temp array of the target elements and sum on > > that instead? > > > > > > Dave > > > > > > > > > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 26 16:14:16 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 16:14:16 +0100 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D607200E@EXCHANGE1.ad.nottingham.ac.uk> The first n numbers, or the numbers between n and m? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 26 July 2011 16:12 To: Xerte list Subject: [Xerte] Re: sum part of array? Legpuller. Besides using the evil eval, how does it limit the indexes it acts on? > Date: Tue, 26 Jul 2011 15:29:49 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: sum part of array? > > eval(array.join("+")) ? > > On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett wrote: > > > > > > Just out of curiosity, is there any way to sum part of an array? > > > > > > [1,2,3,4,5] > > > > > > Lets say I have an index variable and I always will want to sum from 0 to > > that variable. > > > > > > pseudo > > my_array.sum(0,var); > > > > > > Or am I forced to loop + add? > > > > > > Or any elegant way to create a temp array of the target elements and sum on > > that instead? > > > > > > Dave > > > > > > > > > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Tue Jul 26 16:15:39 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 26 Jul 2011 16:15:39 +0100 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: Message-ID: i forgot to read that part of the requirements..... doesn't flash have a slice? http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary067.html On Tue, Jul 26, 2011 at 4:11 PM, Dave Burnett wrote: > > > Legpuller. > > > Besides using the evil eval, how does it limit the indexes it acts on? > > > > > > >> Date: Tue, 26 Jul 2011 15:29:49 +0100 >> From: patrick.lockley at googlemail.com >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: sum part of array? >> >> eval(array.join("+")) ? >> >> On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett >> wrote: >> > >> > >> > Just out of curiosity, is there any way to sum part of an array? >> > >> > >> > [1,2,3,4,5] >> > >> > >> > Lets say I have an index variable and I always will want to sum from 0 >> > to >> > that variable. >> > >> > >> > pseudo >> > my_array.sum(0,var); >> > >> > >> > Or am I forced to loop + add? >> > >> > >> > Or any elegant way to create a temp array of the target elements and sum >> > on >> > that instead? >> > >> > >> > Dave >> > >> > >> > >> > >> > >> > This message and any attachment are intended solely for the addressee >> > and >> > may contain confidential information. If you have received this message >> > in >> > error, please send it back to me, and immediately delete it. Please do >> > not >> > use, copy or disclose the information contained in this message or in >> > any >> > attachment. Any views or opinions expressed by the author of this email >> > do >> > not necessarily reflect the views of the University of Nottingham. >> > >> > This message has been checked for viruses but the contents of an >> > attachment >> > may still contain software viruses which could damage your computer >> > system: >> > you are advised to perform your own checks. Email communications with >> > the >> > University of Nottingham may be monitored as permitted by UK >> > legislation. >> > >> > _______________________________________________ >> > Xerte mailing list >> > Xerte at lists.nottingham.ac.uk >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> > >> > This message and any attachment are intended solely for the addressee >> > and >> > may contain confidential information. If you have received this message >> > in >> > error, please send it back to me, and immediately delete it. ? Please do >> > not >> > use, copy or disclose the information contained in this message or in >> > any >> > attachment. ?Any views or opinions expressed by the author of this email >> > do >> > not necessarily reflect the views of the University of Nottingham. >> > >> > This message has been checked for viruses but the contents of an >> > attachment >> > may still contain software viruses which could damage your computer >> > system: >> > you are advised to perform your own checks. Email communications with >> > the >> > University of Nottingham may be monitored as permitted by UK >> > legislation. >> > >> > >> > >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 26 16:18:01 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 16:18:01 +0100 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072013@EXCHANGE1.ad.nottingham.ac.uk> myArray.slice(n,m).sum(); //test code///////////////////////////////// Array.prototype.sum = function() { var sum = 0; for (var i = 0; i wrote: > > > Just out of curiosity, is there any way to sum part of an array? > > > [1,2,3,4,5] > > > Lets say I have an index variable and I always will want to sum from 0 to > that variable. > > > pseudo > my_array.sum(0,var); > > > Or am I forced to loop + add? > > > Or any elegant way to create a temp array of the target elements and sum on > that instead? > > > Dave > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From d_b_burnett at hotmail.com Tue Jul 26 16:24:33 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 26 Jul 2011 11:24:33 -0400 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: , , , , Message-ID: Ah, could do. But this is getting uglier than I thought. I just wondered if there was any internal way to parameter sum(). e.g. my_array.sum(0,3); That kind of thing. Looks like no. > Date: Tue, 26 Jul 2011 16:15:39 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: sum part of array? > > i forgot to read that part of the requirements..... > > doesn't flash have a slice? > > http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary067.html > > On Tue, Jul 26, 2011 at 4:11 PM, Dave Burnett wrote: > > > > > > Legpuller. > > > > > > Besides using the evil eval, how does it limit the indexes it acts on? > > > > > > > > > > > > > >> Date: Tue, 26 Jul 2011 15:29:49 +0100 > >> From: patrick.lockley at googlemail.com > >> To: xerte at lists.nottingham.ac.uk > >> Subject: [Xerte] Re: sum part of array? > >> > >> eval(array.join("+")) ? > >> > >> On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett > >> wrote: > >> > > >> > > >> > Just out of curiosity, is there any way to sum part of an array? > >> > > >> > > >> > [1,2,3,4,5] > >> > > >> > > >> > Lets say I have an index variable and I always will want to sum from 0 > >> > to > >> > that variable. > >> > > >> > > >> > pseudo > >> > my_array.sum(0,var); > >> > > >> > > >> > Or am I forced to loop + add? > >> > > >> > > >> > Or any elegant way to create a temp array of the target elements and sum > >> > on > >> > that instead? > >> > > >> > > >> > Dave > >> > > >> > > >> > > >> > > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > _______________________________________________ > >> > Xerte mailing list > >> > Xerte at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > > >> > > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Jul 26 16:26:07 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 16:26:07 +0100 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: , , , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D607202A@EXCHANGE1.ad.nottingham.ac.uk> You want an engine method, or those additional parameters adding to sum()? Easy to do... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 26 July 2011 16:25 To: Xerte list Subject: [Xerte] Re: sum part of array? Ah, could do. But this is getting uglier than I thought. I just wondered if there was any internal way to parameter sum(). e.g. my_array.sum(0,3); That kind of thing. Looks like no. > Date: Tue, 26 Jul 2011 16:15:39 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: sum part of array? > > i forgot to read that part of the requirements..... > > doesn't flash have a slice? > > http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary067.html > > On Tue, Jul 26, 2011 at 4:11 PM, Dave Burnett wrote: > > > > > > Legpuller. > > > > > > Besides using the evil eval, how does it limit the indexes it acts on? > > > > > > > > > > > > > >> Date: Tue, 26 Jul 2011 15:29:49 +0100 > >> From: patrick.lockley at googlemail.com > >> To: xerte at lists.nottingham.ac.uk > >> Subject: [Xerte] Re: sum part of array? > >> > >> eval(array.join("+")) ? > >> > >> On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett > >> wrote: > >> > > >> > > >> > Just out of curiosity, is there any way to sum part of an array? > >> > > >> > > >> > [1,2,3,4,5] > >> > > >> > > >> > Lets say I have an index variable and I always will want to sum from 0 > >> > to > >> > that variable. > >> > > >> > > >> > pseudo > >> > my_array.sum(0,var); > >> > > >> > > >> > Or am I forced to loop + add? > >> > > >> > > >> > Or any elegant way to create a temp array of the target elements and sum > >> > on > >> > that instead? > >> > > >> > > >> > Dave > >> > > >> > > >> > > >> > > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > _______________________________________________ > >> > Xerte mailing list > >> > Xerte at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > > >> > > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Tue Jul 26 16:39:01 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 26 Jul 2011 11:39:01 -0400 Subject: [Xerte] Re: sum part of array? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D607202A@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D607202A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I'll add it to my wish list. :-) It's just a small array so for now looping doesn't bug me too much. Maybe when I need an industrial strength solution. Thanks Jules. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 26 Jul 2011 16:26:07 +0100 Subject: [Xerte] Re: sum part of array? You want an engine method, or those additional parameters adding to sum()? Easy to do? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 26 July 2011 16:25 To: Xerte list Subject: [Xerte] Re: sum part of array? Ah, could do. But this is getting uglier than I thought. I just wondered if there was any internal way to parameter sum(). e.g. my_array.sum(0,3); That kind of thing. Looks like no. > Date: Tue, 26 Jul 2011 16:15:39 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: sum part of array? > > i forgot to read that part of the requirements..... > > doesn't flash have a slice? > > http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary067.html > > On Tue, Jul 26, 2011 at 4:11 PM, Dave Burnett wrote: > > > > > > Legpuller. > > > > > > Besides using the evil eval, how does it limit the indexes it acts on? > > > > > > > > > > > > > >> Date: Tue, 26 Jul 2011 15:29:49 +0100 > >> From: patrick.lockley at googlemail.com > >> To: xerte at lists.nottingham.ac.uk > >> Subject: [Xerte] Re: sum part of array? > >> > >> eval(array.join("+")) ? > >> > >> On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett > >> wrote: > >> > > >> > > >> > Just out of curiosity, is there any way to sum part of an array? > >> > > >> > > >> > [1,2,3,4,5] > >> > > >> > > >> > Lets say I have an index variable and I always will want to sum from 0 > >> > to > >> > that variable. > >> > > >> > > >> > pseudo > >> > my_array.sum(0,var); > >> > > >> > > >> > Or am I forced to loop + add? > >> > > >> > > >> > Or any elegant way to create a temp array of the target elements and sum > >> > on > >> > that instead? > >> > > >> > > >> > Dave > >> > > >> > > >> > > >> > > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > _______________________________________________ > >> > Xerte mailing list > >> > Xerte at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > > >> > > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 26 16:40:16 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 16:40:16 +0100 Subject: [Xerte] Re: sum part of array? In-Reply-To: References: , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D607202A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D607204A@EXCHANGE1.ad.nottingham.ac.uk> I'll drop it in there, we just wrote the code... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 26 July 2011 16:39 To: Xerte list Subject: [Xerte] Re: sum part of array? I'll add it to my wish list. :-) It's just a small array so for now looping doesn't bug me too much. Maybe when I need an industrial strength solution. Thanks Jules. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 26 Jul 2011 16:26:07 +0100 Subject: [Xerte] Re: sum part of array? You want an engine method, or those additional parameters adding to sum()? Easy to do... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 26 July 2011 16:25 To: Xerte list Subject: [Xerte] Re: sum part of array? Ah, could do. But this is getting uglier than I thought. I just wondered if there was any internal way to parameter sum(). e.g. my_array.sum(0,3); That kind of thing. Looks like no. > Date: Tue, 26 Jul 2011 16:15:39 +0100 > From: patrick.lockley at googlemail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: sum part of array? > > i forgot to read that part of the requirements..... > > doesn't flash have a slice? > > http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary067.html > > On Tue, Jul 26, 2011 at 4:11 PM, Dave Burnett wrote: > > > > > > Legpuller. > > > > > > Besides using the evil eval, how does it limit the indexes it acts on? > > > > > > > > > > > > > >> Date: Tue, 26 Jul 2011 15:29:49 +0100 > >> From: patrick.lockley at googlemail.com > >> To: xerte at lists.nottingham.ac.uk > >> Subject: [Xerte] Re: sum part of array? > >> > >> eval(array.join("+")) ? > >> > >> On Tue, Jul 26, 2011 at 2:50 PM, Dave Burnett > >> wrote: > >> > > >> > > >> > Just out of curiosity, is there any way to sum part of an array? > >> > > >> > > >> > [1,2,3,4,5] > >> > > >> > > >> > Lets say I have an index variable and I always will want to sum from 0 > >> > to > >> > that variable. > >> > > >> > > >> > pseudo > >> > my_array.sum(0,var); > >> > > >> > > >> > Or am I forced to loop + add? > >> > > >> > > >> > Or any elegant way to create a temp array of the target elements and sum > >> > on > >> > that instead? > >> > > >> > > >> > Dave > >> > > >> > > >> > > >> > > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > _______________________________________________ > >> > Xerte mailing list > >> > Xerte at lists.nottingham.ac.uk > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> > > >> > This message and any attachment are intended solely for the addressee > >> > and > >> > may contain confidential information. If you have received this message > >> > in > >> > error, please send it back to me, and immediately delete it. Please do > >> > not > >> > use, copy or disclose the information contained in this message or in > >> > any > >> > attachment. Any views or opinions expressed by the author of this email > >> > do > >> > not necessarily reflect the views of the University of Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> > attachment > >> > may still contain software viruses which could damage your computer > >> > system: > >> > you are advised to perform your own checks. Email communications with > >> > the > >> > University of Nottingham may be monitored as permitted by UK > >> > legislation. > >> > > >> > > >> > > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do not > > use, copy or disclose the information contained in this message or in any > > attachment. Any views or opinions expressed by the author of this email do > > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 26 16:46:33 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 26 Jul 2011 16:46:33 +0100 Subject: [Xerte] Re: Controlling audio in 'media interactions' template In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6071EAA@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072053@EXCHANGE1.ad.nottingham.ac.uk> Yes, the Xerte Online Toolkit (or Page Templates) if you are using the standalone tools, J From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ruth Russell Sent: 26 July 2011 14:46 To: Xerte discussion list Subject: [Xerte] Re: Controlling audio in 'media interactions' template Hi Julian, Thanks for your reply. When you say the main template, do you mean something other than the 'media interactions' template? I have found these instructions for narration in the wizards guide, but there is no option for 'insert model' in the media interactions template. Would I need to use a different template? Apologies if I'm asking very stupid questions. Thanks Ruth How to use Page Wizards in a standard Xerte project Models that support the use of page wizards Narration * The narration optional parameter is included in many of the Page Wizards. This originates in the "Page Templates" pages from which the wizards are derived. Because "Page Templates" is a project wide template it can include elements that are not part of any individual page, but are shared by all the pages. One aspect of this is a icon structure that supports the playing of an audio file, specified in the Narration optional property. * If you wish to use the narration optional property then you need to download from the Xerte wiki Page Wizards page, the narrationHandler.rlm file. To use this file. 1. Add an entry frame to your project's interface icon. 2. Select the entry frame 3. Do File / Insert Model and select the narrationHandler.rlm file. 4. You can now use the optional Narration property in your page wizards. On Tue, Jul 26, 2011 at 12:52 PM, Julian Tenney > wrote: No, that functionality would have to be developed... You could use the narration property of the pages in the main template to play sounds on each page. We're sort of planning to merge the two templates because people keep complaining that they can't have the bits they want from both. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ruth Russell Sent: 26 July 2011 10:43 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Controlling audio in 'media interactions' template Hi I'm a medical student making a language learning tutorial using the media interactions template: It's been really useful, as I have no experience of writing script. Especially the keyboard feature, thanks! I have a piece of audio with a full transcript on the left, and on the right I am using the transcript in 'fill in the blank' exercises. These follow the order of the audio. I was wondering whether there was a way to stop the audio resetting itself between interactive exercises, so that you don't have to keep refinding the place in the audio? This isn't ideal as the audio feature does have a minutes and seconds indicator. Alternatively, is there a way to embed the 'fill in the blanks' exercise and a section of the audio on the same page? Thanks Ruth This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Wed Jul 27 07:55:24 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 27 Jul 2011 09:55:24 +0300 Subject: [Xerte] Scoring in Xerte Message-ID: Could anyone please direct me to information about scoring in Xerte (I did search the archives....). I am primarily interested in feeding back grades from SWF exercises to Xerte for a score summary to be displayed in Xerte. Is such a thing possible? -- Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 09:30:33 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 09:30:33 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> You mean you want to load up a swf with an activity in it, and pass the score from your code to somewhere you can get at it in Xerte? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 27 July 2011 07:55 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Scoring in Xerte Could anyone please direct me to information about scoring in Xerte (I did search the archives....). I am primarily interested in feeding back grades from SWF exercises to Xerte for a score summary to be displayed in Xerte. Is such a thing possible? -- Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 27 10:37:47 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 27 Jul 2011 12:37:47 +0300 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Yes exactly. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 10:51:50 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 10:51:50 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> You swf is in the Flash Player hierarchy somewhere. If it sets values on _level0.engine, i.e. _level0.engine.debsScore = 90; Then you can access it in xerte script: debug(debsScore) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 27 July 2011 10:38 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte Yes exactly. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 27 11:11:15 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 27 Jul 2011 13:11:15 +0300 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Julian said: > You swf is in the Flash Player hierarchy somewhere. If it sets values on > _level0.engine, i.e.**** > > ** ** > > _level0.engine.debsScore = 90; **** > > ** ** > > Then you can access it in xerte script:**** > > ** ** > > debug(debsScore) > Thanks Julian. I'm happy to know that it is possible. I don't really understand most of what you said but I'll spend some time trying to. Can I come back to you if I don't succeed? Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 11:12:48 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 11:12:48 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> Better hurry up: I'm on holiday until 15th August from tomorrow... You're using Xerte standalone, right? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 27 July 2011 11:11 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte Julian said: You swf is in the Flash Player hierarchy somewhere. If it sets values on _level0.engine, i.e. _level0.engine.debsScore = 90; Then you can access it in xerte script: debug(debsScore) Thanks Julian. I'm happy to know that it is possible. I don't really understand most of what you said but I'll spend some time trying to. Can I come back to you if I don't succeed? Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From stepiko14 at inbox.lv Wed Jul 27 11:25:31 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Wed, 27 Jul 2011 13:25:31 +0300 Subject: [Xerte] Text to Speech - disable in IE Message-ID: <1311762331.4e2fe79b0ccee@mail.inbox.lv> Dear all, I am just wondering if it is possible to disable or hide text to speech option in IE in published projects using Xerte Desktop application? Thank you, Janis -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 11:27:01 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 11:27:01 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: <1311762331.4e2fe79b0ccee@mail.inbox.lv> References: <1311762331.4e2fe79b0ccee@mail.inbox.lv> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072284@EXCHANGE1.ad.nottingham.ac.uk> rootIcon.access._visible = false; check the archives, this has been discussed before, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Janis Ozols Sent: 27 July 2011 11:26 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Text to Speech - disable in IE Dear all, I am just wondering if it is possible to disable or hide text to speech option in IE in published projects using Xerte Desktop application? Thank you, Janis -- -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 27 11:53:28 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 27 Jul 2011 13:53:28 +0300 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Better hurry up: I?m on holiday until 15th August from tomorrow?**** > > ** ** > > You?re using Xerte standalone, right? > Yes - Wizards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 11:55:42 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 11:55:42 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> All wizards? I'm trying to think how you would display a variable in the text you enter in the wizard... let me think for an hour or so... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 27 July 2011 11:53 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte Better hurry up: I'm on holiday until 15th August from tomorrow... You're using Xerte standalone, right? Yes - Wizards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Dale.Davies at liv-coll.ac.uk Wed Jul 27 11:45:46 2011 From: Dale.Davies at liv-coll.ac.uk (Davies, Dale) Date: Wed, 27 Jul 2011 11:45:46 +0100 Subject: [Xerte] LDAP givenName & sn Message-ID: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 --------------------------------------------------------------------------------------- Please consider the environment before printing this email. --------------------------------------------------------------------------------------- This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. --------------------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 27 12:06:54 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 27 Jul 2011 14:06:54 +0300 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: > All wizards?**** > > ** ** > > I?m trying to think how you would display a variable in the text you enter > in the wizard? let me think for an hour or so? > Yes all wizards. Which has left me ignorant about the under the bonnet stuff but I'm willing to have a go at getting my hands dirty. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jul 27 12:17:51 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 27 Jul 2011 12:17:51 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> Message-ID: Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale wrote: > Hi,**** > > ** ** > > I?ve set Xerte up on a Linux web server, everything works perfectly apart > from one aspect. When a user logs in their name is not pulled into the > Xerte users database via LDAP. **** > > ** ** > > I have checked through the code and found login_library.php to contain > ?givenname?, so I changed this to ?givenName?. However this still does not > pull in the name. We definitely have values stores in those attributes > within the Active Directory.**** > > ** ** > > Am I missing something? I can?t find any solution unfortunately, I realise > this isn?t a huge problem as Xerte still works regardless, but users are > unable to search for each other and share/hand over projects.**** > > ** ** > > Any help/advice is much appreciated. Many thanks.**** > > ** ** > > * * > > *Dale Davies - VLE / E-Learning Developer* > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > ** ** > > ------------------------------ > > Please consider the environment before printing this email. > ------------------------------ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > > ------------------------------ > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 27 12:18:12 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 27 Jul 2011 12:18:12 +0100 Subject: [Xerte] corrupted filesystem on the JISC Techdis sandpit Message-ID: <006601cc4c4e$e290c400$a7b24c00$@co.uk> Hi all apologies for cross posting... The server which hosts the JISC Techdis sandpit had a corrupted filesystem and had to be restored from backup on 27th July, unfortunately any changes made after 5am on 26th July may have been lost. Apologies for any inconvenience. Regards Ron -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 12:28:37 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 12:28:37 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> Is there a specific place you want to display the score? Or you want a generic solution, so, say, you could write Here is text for the page. You scored {debsScore} for the quiz Into the wizard? That's bit tricky with the time I've got... You could write text into the XML that feeds the template directly from your swf. That's one way. Bit stuck otherwise - anyone else got any ideas? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 27 July 2011 12:07 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte All wizards? I'm trying to think how you would display a variable in the text you enter in the wizard... let me think for an hour or so... Yes all wizards. Which has left me ignorant about the under the bonnet stuff but I'm willing to have a go at getting my hands dirty. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 27 12:38:28 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 27 Jul 2011 14:38:28 +0300 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I have the scores displaying in the actual SWF's so I don't need the individual Xerte pages to display it too, but I would like to be able to send them to Xerte which would then display a summary of the scores at the end of the section. Am I asking too much? Anyway, please don't worry if you are going away tomorrow. I am also going away next week so it can wait till you get back. If anyone else has a bright idea I can play with meantime that would also be great. Have a great holiday. I'm coming to England to escape the sauna here in Israel. No doubt it's just as chilly as it was when I was there in June.................... Thank you. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 12:45:57 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 12:45:57 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> OK, the way to do it is to bounce your score off xerte from the swfs that set them and then display them in another swf where you retrieve them. So, in a quiz, or similar you can se the score, in a place where the other swf can read it: _level0.engine.debsData.score1 = 99; Then later on you can retrieve it and work it into a string, and then display it with other scores: myString = 'score1: ' + _level0.engine.debsData.score1 + '\rscore2: ' +_level0.engine.debsData.score2 ...etc... I am going where there are no computers and no mobile phone signals with a fishing rod and a mandolin. J From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Deborah Delin Sent: 27 July 2011 12:38 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte I have the scores displaying in the actual SWF's so I don't need the individual Xerte pages to display it too, but I would like to be able to send them to Xerte which would then display a summary of the scores at the end of the section. Am I asking too much? Anyway, please don't worry if you are going away tomorrow. I am also going away next week so it can wait till you get back. If anyone else has a bright idea I can play with meantime that would also be great. Have a great holiday. I'm coming to England to escape the sauna here in Israel. No doubt it's just as chilly as it was when I was there in June.................... Thank you. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Wed Jul 27 12:54:47 2011 From: admin at strivney.com (Deborah Delin) Date: Wed, 27 Jul 2011 14:54:47 +0300 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: > > Sounds heavenly - for a limited period of course! > Thanks so much for the code. Sounds to easy to be true. I'll try it when I pluck up the courage. :-) Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 27 13:00:13 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 08:00:13 -0400 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> References: , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: > I am going where there are no computers and no mobile phone signals with a fishing rod and a mandolin. Don't forget the plonk... -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jul 27 13:12:04 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 27 Jul 2011 13:12:04 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: >> I am going where there are no computers and no mobile phone signals with a >> fishing rod and a mandolin. I usually struggle to get a mobile phone signal using a fishing rod and a mandolin. Me, I am here all week. From Julian.Tenney at nottingham.ac.uk Wed Jul 27 13:39:39 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 13:39:39 +0100 Subject: [Xerte] Re: sum part of array? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072013@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072013@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072375@EXCHANGE1.ad.nottingham.ac.uk> I did it like this so you can pass one param for sum from 0th to nth item, or n,m for the a sum of the range between n an m, or no params for sum of it all: Array.prototype.sum = function(n,m) { if (arguments.length == 1){ return this.slice(0,n).sum() } if (arguments.length == 2){ return this.slice(n,m).sum() } var sum = 0; for (var i = 0; i wrote: > > > Just out of curiosity, is there any way to sum part of an array? > > > [1,2,3,4,5] > > > Lets say I have an index variable and I always will want to sum from 0 to > that variable. > > > pseudo > my_array.sum(0,var); > > > Or am I forced to loop + add? > > > Or any elegant way to create a temp array of the target elements and sum on > that instead? > > > Dave > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -------------- next part -------------- A non-text attachment was scrubbed... Name: XMLEngine.swf Type: application/x-shockwave-flash Size: 147423 bytes Desc: XMLEngine.swf URL: From d_b_burnett at hotmail.com Wed Jul 27 13:50:06 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 08:50:06 -0400 Subject: [Xerte] Re: sum part of array? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072375@EXCHANGE1.ad.nottingham.ac.uk> References: , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072013@EXCHANGE1.ad.nottingham.ac.uk>, <12C67A1EEC419342AF5E59DA31562C3F05D6072375@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Thanks Julian. Handy. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 13:39:39 +0100 Subject: [Xerte] Re: sum part of array? I did it like this so you can pass one param for sum from 0th to nth item, or n,m for the a sum of the range between n an m, or no params for sum of it all: Array.prototype.sum = function(n,m) { if (arguments.length == 1){ return this.slice(0,n).sum() } if (arguments.length == 2){ return this.slice(n,m).sum() } var sum = 0; for (var i = 0; i wrote: > > > Just out of curiosity, is there any way to sum part of an array? > > > [1,2,3,4,5] > > > Lets say I have an index variable and I always will want to sum from 0 to > that variable. > > > pseudo > my_array.sum(0,var); > > > Or am I forced to loop + add? > > > Or any elegant way to create a temp array of the target elements and sum on > that instead? > > > Dave > > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 27 13:52:20 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 08:52:20 -0400 Subject: [Xerte] Rotating multiple object text included In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , Message-ID: Vague memory, but can't find it in the archives. Do I have to break it apart? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 13:53:51 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 13:53:51 +0100 Subject: [Xerte] Re: Rotating multiple object text included In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D607238A@EXCHANGE1.ad.nottingham.ac.uk> Is it a coconut? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 13:52 To: Xerte list Subject: [Xerte] Rotating multiple object text included Vague memory, but can't find it in the archives. Do I have to break it apart? -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 27 13:59:41 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 08:59:41 -0400 Subject: [Xerte] Re: Rotating multiple object text included In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D607238A@EXCHANGE1.ad.nottingham.ac.uk> References: , , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D607238A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Yes, with a straw in it. Maybe that's why the vague memory. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 13:53:51 +0100 Subject: [Xerte] Re: Rotating multiple object text included Is it a coconut? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 13:52 To: Xerte list Subject: [Xerte] Rotating multiple object text included Vague memory, but can't find it in the archives. Do I have to break it apart? This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 27 14:15:32 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 14:15:32 +0100 Subject: [Xerte] FW: Accessibility Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60723AB@EXCHANGE1.ad.nottingham.ac.uk> Your message bounced: are you subscribed to the list? From: Carolyn Hunt [mailto:cmahunt at gmail.com] Sent: 27 July 2011 11:37 To: xerte at lists.nottingham.ac.uk Subject: Accessibility I have just started experimenting with Xerte and, as I only have a little programming experience, have used the templates. I have found them reasonably easy to use and I uploaded with few problems. I asked for comments from my students and friends and most comments were very positive. Unfortunately one student who responded to me was visually impaired and he could not access much of the information through any of his screen readers. Researching the Xerte site showeded that it is only accessible to screen readers using IE. He kindly swapped to IE to check it for me and said that he could still not access all of the resource. Can anyone give me a hand? My resource is currenlty at http://xerte5.techdis.palepurple.co.uk/play_9350 but I had a message yesterday that it will be wiped in 7 days. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From Dale.Davies at liv-coll.ac.uk Wed Jul 27 14:07:41 2011 From: Dale.Davies at liv-coll.ac.uk (Davies, Dale) Date: Wed, 27 Jul 2011 14:07:41 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> Message-ID: <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> Hi, I've updated "givenname" to "givenName" in the following functions (within login_library.php)... * get_ldap_array() * get_user_ldap() * authenticate_to_host() The "givenName" and "sn" attributes definitely exists in the Active Directory and I am able to access them via my own PHP applications, but for some reason Xerte seems to be ignoring them. No errors shown in the Xerte logs or the apache error log. Another thing I have tried after changing these is to remove the user account from the Xerte database and try logging in again, but to no avail. The user account can log in, but no other data is saved in the row, just the user id. Am I looking in the right place (login_library.php) or are there other places within the Xerte code base that also check LDAP? Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 12:18 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale wrote: Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. --------------------------------------------------------------------------------------- Please consider the environment before printing this email. --------------------------------------------------------------------------------------- This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. --------------------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Jul 27 14:16:10 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 14:16:10 +0100 Subject: [Xerte] FW: need help - integrating xerte with moodle 1.9 Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60723AC@EXCHANGE1.ad.nottingham.ac.uk> Your message bounced: are you subscribed to the list at that email address? From: Krishna Reddy [mailto:krishna.akkala at tarams.com] Sent: 26 July 2011 13:15 To: xerte at lists.nottingham.ac.uk Subject: need help - integrating xerte with moodle 1.9 Hi, Thanks for the providing the procedure to integrate the xerte with moodle. I followed your procedure to integrate the two. but when i am accessing the xerte its redirecting to the moodle page when i had logged in also. I am using the wamp server with moodle 1.9 . can you please let me know why this is happening?? -- Thanks & Regards Krishna Reddy A Software Engineer Tarams Software Technologies Pvt. Ltd. Tarams Tarams eLearning Ph : + 91 80 2658 7057 -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 27 14:00:49 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 09:00:49 -0400 Subject: [Xerte] Re: Rotating multiple object text included In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D607238A@EXCHANGE1.ad.nottingham.ac.uk> References: , , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D607238A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: It's a graphic with a text field overlain. I want to rotate the kit and kaboodle 90. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 13:53:51 +0100 Subject: [Xerte] Re: Rotating multiple object text included Is it a coconut? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 13:52 To: Xerte list Subject: [Xerte] Rotating multiple object text included Vague memory, but can't find it in the archives. Do I have to break it apart? This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 27 14:41:22 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 14:41:22 +0100 Subject: [Xerte] Re: Rotating multiple object text included In-Reply-To: References: , , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D607238A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60723EF@EXCHANGE1.ad.nottingham.ac.uk> I don't think you can display dynamic text at 90 degrees: could be wrong but try first with a one word icon and see if you can do what you need. Otherwise, you're looking at making an image of the text, which might be a deal-breaker, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 14:01 To: Xerte list Subject: [Xerte] Re: Rotating multiple object text included It's a graphic with a text field overlain. I want to rotate the kit and kaboodle 90. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 13:53:51 +0100 Subject: [Xerte] Re: Rotating multiple object text included Is it a coconut? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 13:52 To: Xerte list Subject: [Xerte] Rotating multiple object text included Vague memory, but can't find it in the archives. Do I have to break it apart? This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 27 14:54:51 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 27 Jul 2011 14:54:51 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> Message-ID: No, just in login_library and index.php (when it comes to account creation). Silly question - try entering the wrong password - see what happens. On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale wrote: > Hi,**** > > ** ** > > I?ve updated ?givenname? to ?givenName? in the following functions (within > login_library.php)...**** > > ** ** > > **? **get_ldap_array()**** > > **? **get_user_ldap()**** > > **? **authenticate_to_host()**** > > ** ** > > The ?givenName? and ?sn? attributes definitely exists in the Active > Directory and I am able to access them via my own PHP applications, but for > some reason Xerte seems to be ignoring them. No errors shown in the Xerte > logs or the apache error log.**** > > ** ** > > Another thing I have tried after changing these is to remove the user > account from the Xerte database and try logging in again, but to no avail. > The user account can log in, but no other data is saved in the row, just the > user id.**** > > ** ** > > Am I looking in the right place (login_library.php) or are there other > places within the Xerte code base that also check LDAP?**** > > ** ** > > Thanks again,**** > > * * > > *Dale Davies - VLE / E-Learning Developer* > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 12:18 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > ** ** > > Hello,**** > > ** ** > > From recollection the code does two LDAP checks. Maybe the second one > fails?**** > > ** ** > > I would be surprised givenname isn't in the database in sitedetails or > ldap?**** > > ** ** > > Pat**** > > On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote:**** > > Hi,**** > > **** > > I?ve set Xerte up on a Linux web server, everything works perfectly apart > from one aspect. When a user logs in their name is not pulled into the > Xerte users database via LDAP. **** > > **** > > I have checked through the code and found login_library.php to contain > ?givenname?, so I changed this to ?givenName?. However this still does not > pull in the name. We definitely have values stores in those attributes > within the Active Directory.**** > > **** > > Am I missing something? I can?t find any solution unfortunately, I realise > this isn?t a huge problem as Xerte still works regardless, but users are > unable to search for each other and share/hand over projects.**** > > **** > > Any help/advice is much appreciated. Many thanks.**** > > **** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > ** ** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > *Error! Filename not specified.***** > > ------------------------------ > > ** ** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. **** > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > **** > > ** ** > > ------------------------------ > > Please consider the environment before printing this email. > ------------------------------ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > > ------------------------------ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 27 14:58:43 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 27 Jul 2011 14:58:43 +0100 Subject: [Xerte] Re: Rotating multiple object text included In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: you can rotate if you embed fonts? On Wed, Jul 27, 2011 at 1:52 PM, Dave Burnett wrote: > > > Vague memory, but can't find it in the archives. > Do I have to break it apart? > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 27 14:47:30 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 09:47:30 -0400 Subject: [Xerte] Re: Rotating multiple object text included In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60723EF@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D607238A@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60723EF@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Found it. Font has to be embedded. Then you rotate the container page. Everything goes. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 14:41:22 +0100 Subject: [Xerte] Re: Rotating multiple object text included I don?t think you can display dynamic text at 90 degrees: could be wrong but try first with a one word icon and see if you can do what you need. Otherwise, you?re looking at making an image of the text, which might be a deal-breaker, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 14:01 To: Xerte list Subject: [Xerte] Re: Rotating multiple object text included It's a graphic with a text field overlain. I want to rotate the kit and kaboodle 90. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 13:53:51 +0100 Subject: [Xerte] Re: Rotating multiple object text includedIs it a coconut? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 13:52 To: Xerte list Subject: [Xerte] Rotating multiple object text included Vague memory, but can't find it in the archives. Do I have to break it apart? This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 27 15:08:10 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 15:08:10 +0100 Subject: [Xerte] Re: Rotating multiple object text included In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D607241B@EXCHANGE1.ad.nottingham.ac.uk> Ahh, yes you can. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 14:59 To: Xerte discussion list Subject: [Xerte] Re: Rotating multiple object text included you can rotate if you embed fonts? On Wed, Jul 27, 2011 at 1:52 PM, Dave Burnett wrote: > > > Vague memory, but can't find it in the archives. > Do I have to break it apart? > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Alistair.McNaught at HEAcademy.ac.uk Wed Jul 27 16:30:35 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Wed, 27 Jul 2011 16:30:35 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072284@EXCHANGE1.ad.nottingham.ac.uk> References: <1311762331.4e2fe79b0ccee@mail.inbox.lv> <12C67A1EEC419342AF5E59DA31562C3F05D6072284@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <58A31CD4-D879-498E-B330-A055C84605CF@techdis.ac.uk> But also consider whether users disadvantaged by the decision to disable text to speech might have a case against you for breach of Equalities Act obligations to provide resources in accessible format. If you can't put up a good justification you'd be unwise to knowingly reduce accessibility... Alistair Sent from my phone: Alistair McNaught 07870567659 On 27 Jul 2011, at 11:28, "Julian Tenney" wrote: > rootIcon.access._visible = false; > > > > check the archives, this has been discussed before, > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Janis Ozols > Sent: 27 July 2011 11:26 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Text to Speech - disable in IE > > > > Dear all, > I am just wondering if it is possible to disable or hide text to speech option in IE in published projects using Xerte Desktop application? > > Thank you, > Janis > > -- > > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 27 16:22:42 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Wed, 27 Jul 2011 16:22:42 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: If you can't get it working post back and I will try and help. I am not familiar with interacting between swfs and Xerte but once you have passed the data to Xerte it should be simple enough to display it in a wizard based page. No mobile phones - wonderful Mandolin - getting even better But no accordion ! C'est terrible Johnathan On 27 July 2011 12:54, Deborah Delin wrote: > Sounds heavenly - for a limited period of course! >> > > Thanks so much for the code. Sounds to easy to be true. I'll try it when I > pluck up the courage. :-) > > Deborah > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 27 16:50:42 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 16:50:42 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk> You accordion player? I want a Cajun one - that sound rocks. Not cheap though. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 27 July 2011 16:23 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte If you can't get it working post back and I will try and help. I am not familiar with interacting between swfs and Xerte but once you have passed the data to Xerte it should be simple enough to display it in a wizard based page. No mobile phones - wonderful Mandolin - getting even better But no accordion ! C'est terrible Johnathan On 27 July 2011 12:54, Deborah Delin > wrote: Sounds heavenly - for a limited period of course! Thanks so much for the code. Sounds to easy to be true. I'll try it when I pluck up the courage. :-) Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Dale.Davies at liv-coll.ac.uk Wed Jul 27 16:31:30 2011 From: Dale.Davies at liv-coll.ac.uk (Davies, Dale) Date: Wed, 27 Jul 2011 16:31:30 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk><8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> Message-ID: <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> I read about the password thing elsewhere on the mailing list, I seem to get the behaviour one would expect. As in, the only way anyone can log in is by using only the correct username and correct password, a blank or incorrect password will not allow a login. I've made some progress on my problem, it seems that around line 537 of login_library.php the following mysql query does not use the user defined table name prefix... $ldap_hosts = mysql_query("select * from ldap"); Adding my table name prefix almost fixes things, now the given name and sn are pulled in, doing a var_dump on $login_check shows this, but only the sn is saved in the database. I'm guessing the solution must be some other query also not using the table prefix. Anyways, I'm off home for the day. This can wait until the morning ;-) Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 14:55 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn No, just in login_library and index.php (when it comes to account creation). Silly question - try entering the wrong password - see what happens. On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale wrote: Hi, I've updated "givenname" to "givenName" in the following functions (within login_library.php)... * get_ldap_array() * get_user_ldap() * authenticate_to_host() The "givenName" and "sn" attributes definitely exists in the Active Directory and I am able to access them via my own PHP applications, but for some reason Xerte seems to be ignoring them. No errors shown in the Xerte logs or the apache error log. Another thing I have tried after changing these is to remove the user account from the Xerte database and try logging in again, but to no avail. The user account can log in, but no other data is saved in the row, just the user id. Am I looking in the right place (login_library.php) or are there other places within the Xerte code base that also check LDAP? Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 12:18 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale wrote: Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. --------------------------------------------------------------------------------------- Please consider the environment before printing this email. --------------------------------------------------------------------------------------- This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. --------------------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Jul 27 17:08:05 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 27 Jul 2011 17:08:05 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> Message-ID: Ah crap. Julian can you paste in the table prefix php into that line? On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale wrote: > I read about the password thing elsewhere on the mailing list, I seem to > get the behaviour one would expect. As in, the only way anyone can log in > is by using only the correct username and correct password, a blank or > incorrect password will not allow a login.**** > > ** ** > > I?ve made some progress on my problem, it seems that around line 537 of > login_library.php the following mysql query does not use the user defined > table name prefix...**** > > ** ** > > $ldap_hosts = mysql_query("select * from ldap");**** > > ** ** > > Adding my table name prefix almost fixes things, now the given name and sn > are pulled in, doing a var_dump on $login_check shows this, but only the sn > is saved in the database.**** > > ** ** > > I?m guessing the solution must be some other query also not using the table > prefix.**** > > ** ** > > Anyways, I?m off home for the day. This can wait until the morning ;-)*** > * > > ** ** > > ** ** > > Thanks again,**** > > * * > > *Dale Davies - VLE / E-Learning Developer* > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 14:55 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > ** ** > > No, just in login_library and index.php (when it comes to account > creation).**** > > ** ** > > Silly question - try entering the wrong password - see what happens.**** > > On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote:**** > > Hi,**** > > **** > > I?ve updated ?givenname? to ?givenName? in the following functions (within > login_library.php)...**** > > **** > > ? get_ldap_array()**** > > ? get_user_ldap()**** > > ? authenticate_to_host()**** > > **** > > The ?givenName? and ?sn? attributes definitely exists in the Active > Directory and I am able to access them via my own PHP applications, but for > some reason Xerte seems to be ignoring them. No errors shown in the Xerte > logs or the apache error log.**** > > **** > > Another thing I have tried after changing these is to remove the user > account from the Xerte database and try logging in again, but to no avail. > The user account can log in, but no other data is saved in the row, just the > user id.**** > > **** > > Am I looking in the right place (login_library.php) or are there other > places within the Xerte code base that also check LDAP?**** > > **** > > Thanks again,**** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 12:18 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > **** > > Hello,**** > > **** > > From recollection the code does two LDAP checks. Maybe the second one > fails?**** > > **** > > I would be surprised givenname isn't in the database in sitedetails or > ldap?**** > > **** > > Pat**** > > On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote:**** > > Hi,**** > > **** > > I?ve set Xerte up on a Linux web server, everything works perfectly apart > from one aspect. When a user logs in their name is not pulled into the > Xerte users database via LDAP. **** > > **** > > I have checked through the code and found login_library.php to contain > ?givenname?, so I changed this to ?givenName?. However this still does not > pull in the name. We definitely have values stores in those attributes > within the Active Directory.**** > > **** > > Am I missing something? I can?t find any solution unfortunately, I realise > this isn?t a huge problem as Xerte still works regardless, but users are > unable to search for each other and share/hand over projects.**** > > **** > > Any help/advice is much appreciated. Many thanks.**** > > **** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > **** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. **** > > *Error! Filename not specified.***** > ------------------------------ > > **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. **** > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > **** > > ** ** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > *Error! Filename not specified.***** > ------------------------------ > > ** ** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > **** > > ** ** > > ------------------------------ > > Please consider the environment before printing this email. > ------------------------------ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > > ------------------------------ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 27 17:09:32 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 12:09:32 -0400 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk> References: , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: You made a mandolin. An accordion should be a walk in the park. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 16:50:42 +0100 Subject: [Xerte] Re: Scoring in Xerte You accordion player? I want a Cajun one - that sound rocks. Not cheap though. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 27 July 2011 16:23 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte If you can't get it working post back and I will try and help. I am not familiar with interacting between swfs and Xerte but once you have passed the data to Xerte it should be simple enough to display it in a wizard based page. No mobile phones - wonderfulMandolin - getting even better But no accordion ! C'est terrible Johnathan On 27 July 2011 12:54, Deborah Delin wrote:Sounds heavenly - for a limited period of course! Thanks so much for the code. Sounds to easy to be true. I'll try it when I pluck up the courage. :-) Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Alistair.McNaught at HEAcademy.ac.uk Wed Jul 27 17:13:30 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Wed, 27 Jul 2011 17:13:30 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <231D667C-F6E2-4ABF-8969-1C787A3A68B1@techdis.ac.uk> Johnathan, bring the accordion to the Xerte Unconference.. We need a Xerte Jam Session.. Sent from my phone: Alistair McNaught 07870567659 On 27 Jul 2011, at 16:51, "Kemp Johnathan" wrote: > If you can't get it working post back and I will try and help. > > I am not familiar with interacting between swfs and Xerte but once you have passed the data to Xerte it should be simple enough to display it in a wizard based page. > > No mobile phones - wonderful > Mandolin - getting even better > > But no accordion ! > > C'est terrible > > Johnathan > > On 27 July 2011 12:54, Deborah Delin wrote: > Sounds heavenly - for a limited period of course! > > > Thanks so much for the code. Sounds to easy to be true. I'll try it when I pluck up the courage. :-) > > Deborah > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Peter.Rainger at geneticseducation.nhs.uk Wed Jul 27 17:34:58 2011 From: Peter.Rainger at geneticseducation.nhs.uk (Peter Rainger) Date: Wed, 27 Jul 2011 17:34:58 +0100 Subject: [Xerte] XMLEngine.fla - Problems generating XMLEngine.swf Message-ID: <6CDCBD388966F740A611412F8B9405AF04319D627A@Alperton.xbwh.nhs.uk> Hi, I'm attempting to modify the menu icon (which looks like a medical family history icon to us in genetics) by modifying the library item in the XMLEngine.fla however, before I even modify that I'm having problems with the basic conversion of the FLA (from the SVN) to a SWF. Just to check that all works ok before I being any basic modifications to the library images. I'm using Flash CS4 Professional with the following settings: (Flash Player 8, Actionscript 2.0, Compress Movie, Include hidden Layers, Access Local files only, Script time limit 15 sec) However, I get the following compiler errors! (BUT, I have not actually done anything to the FLA yet!) Scene=Scene 1, Layer=Actions, frame=1, Line 2881 The class or interface 'KeyDetection' could not be loaded. var keyDet = new KeyDetection(); Scene=Scene 1, Layer=Actions, frame=1, Line 6561 The class or interface 'DistortImage' could not be loaded. var d:DistortImage = new DistortImage ( this.renderer, this.clip); When attempting to use the XMLEngine.SWF on object preview the loader just hangs and doesn't work.... Any ideas what I am doing wrong? Kind Regards, Pete -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 27 17:41:13 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 12:41:13 -0400 Subject: [Xerte] Re: XMLEngine.fla - Problems generating XMLEngine.swf In-Reply-To: <6CDCBD388966F740A611412F8B9405AF04319D627A@Alperton.xbwh.nhs.uk> References: <6CDCBD388966F740A611412F8B9405AF04319D627A@Alperton.xbwh.nhs.uk> Message-ID: Do you have the .fla in the src folder? C:\Program Files\Xerte\src Those are 2 .as class files that should be in the same folder as the .fla. From: Peter.Rainger at geneticseducation.nhs.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 17:34:58 +0100 Subject: [Xerte] XMLEngine.fla - Problems generating XMLEngine.swf Hi, I?m attempting to modify the menu icon (which looks like a medical family history icon to us in genetics) by modifying the library item in the XMLEngine.fla however, before I even modify that I?m having problems with the basic conversion of the FLA (from the SVN) to a SWF. Just to check that all works ok before I being any basic modifications to the library images. I?m using Flash CS4 Professional with the following settings: (Flash Player 8, Actionscript 2.0, Compress Movie, Include hidden Layers, Access Local files only, Script time limit 15 sec) However, I get the following compiler errors! (BUT, I have not actually done anything to the FLA yet!) Scene=Scene 1, Layer=Actions, frame=1, Line 2881 The class or interface 'KeyDetection' could not be loaded. var keyDet = new KeyDetection(); Scene=Scene 1, Layer=Actions, frame=1, Line 6561 The class or interface 'DistortImage' could not be loaded. var d:DistortImage = new DistortImage ( this.renderer, this.clip); When attempting to use the XMLEngine.SWF on object preview the loader just hangs and doesn?t work?. Any ideas what I am doing wrong? Kind Regards, Pete This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Peter.Rainger at geneticseducation.nhs.uk Wed Jul 27 17:47:16 2011 From: Peter.Rainger at geneticseducation.nhs.uk (Peter Rainger) Date: Wed, 27 Jul 2011 17:47:16 +0100 Subject: [Xerte] Re: XMLEngine.fla - Problems generating XMLEngine.swf In-Reply-To: References: <6CDCBD388966F740A611412F8B9405AF04319D627A@Alperton.xbwh.nhs.uk> Message-ID: <6CDCBD388966F740A611412F8B9405AF04319D627B@Alperton.xbwh.nhs.uk> Ah got ya.... That's I'd missed its dependences (those two files) when running the complication! Thanks.. Pete From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 27 July 2011 17:41 To: Xerte list Subject: [Xerte] Re: XMLEngine.fla - Problems generating XMLEngine.swf Do you have the .fla in the src folder? C:\Program Files\Xerte\src Those are 2 .as class files that should be in the same folder as the .fla. ________________________________ From: Peter.Rainger at geneticseducation.nhs.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 17:34:58 +0100 Subject: [Xerte] XMLEngine.fla - Problems generating XMLEngine.swf Hi, I'm attempting to modify the menu icon (which looks like a medical family history icon to us in genetics) by modifying the library item in the XMLEngine.fla however, before I even modify that I'm having problems with the basic conversion of the FLA (from the SVN) to a SWF. Just to check that all works ok before I being any basic modifications to the library images. I'm using Flash CS4 Professional with the following settings: (Flash Player 8, Actionscript 2.0, Compress Movie, Include hidden Layers, Access Local files only, Script time limit 15 sec) However, I get the following compiler errors! (BUT, I have not actually done anything to the FLA yet!) Scene=Scene 1, Layer=Actions, frame=1, Line 2881 The class or interface 'KeyDetection' could not be loaded. var keyDet = new KeyDetection(); Scene=Scene 1, Layer=Actions, frame=1, Line 6561 The class or interface 'DistortImage' could not be loaded. var d:DistortImage = new DistortImage ( this.renderer, this.clip); When attempting to use the XMLEngine.SWF on object preview the loader just hangs and doesn't work.... Any ideas what I am doing wrong? Kind Regards, Pete This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 stepiko14 at inbox.lv Wed Jul 27 18:45:37 2011 From: stepiko14 at inbox.lv (Janis Ozols) Date: Wed, 27 Jul 2011 20:45:37 +0300 Subject: [Xerte] Re: Text to Speech - disable in IE Message-ID: <1311788737.4e304ec14651f@mail.inbox.lv> An HTML attachment was scrubbed... URL: From Alistair.McNaught at HEAcademy.ac.uk Wed Jul 27 19:09:44 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Wed, 27 Jul 2011 19:09:44 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: <1311788737.4e304ec14651f@mail.inbox.lv> References: <1311788737.4e304ec14651f@mail.inbox.lv> Message-ID: Hi Janis Thanks for clarification. That sounds like a defensible decision and although there's no obligation for you to justify it to me (!) I'm grateful you took the time to explain, not least because accessibility is one of the selling points of Xerte and it's good to keep the topic alive on the list. All the best Alistair Sent from my phone: Alistair McNaught 07870567659 On 27 Jul 2011, at 18:47, "Janis Ozols" wrote: > Thank you, Julian. It is done know. Sorry, I couldn't locate it in the archive. > Alistair McNaught, I decided to disable Text to Speech option, because we have recorded our own text narration for important text objects and embedded it into the project, and I think it will be more accessible in the end as our test groups reported they couldn't enable Xerte Text to Speech to work even with tutorials on how to enable ActiveX in IE properties. As well as many users just don't have an administrator access to computers in public places to make it work. + own recorded narration will work in all browsers. So that was the reason to dissable Xerte's text to speech and record/embedd our own narration. > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Wed Jul 27 19:27:07 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 27 Jul 2011 19:27:07 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: References: <1311788737.4e304ec14651f@mail.inbox.lv> Message-ID: I think Janis is also Latvian? and so may also have different laws? Is there a list anywhere of compliances / best practice for different legislations? Might help with internationalisation? On Wed, Jul 27, 2011 at 7:09 PM, Alistair McNaught wrote: > Hi Janis > Thanks for clarification. That sounds like a defensible decision and > although there's no obligation for you to justify it to me (!) I'm grateful > you took the time to explain, not least because accessibility is one of the > selling points of Xerte and it's good to keep the topic alive on the list. > All the best > Alistair > > > Sent from my phone: > Alistair McNaught > 07870567659 > > On 27 Jul 2011, at 18:47, "Janis Ozols" wrote: > > Thank you, Julian. It is done know. Sorry, I couldn't locate it in the > archive. > Alistair McNaught, I decided to disable Text to Speech option, because we > have?recorded our own text narration for?important text objects and embedded > it into the project,?and I think it will be more accessible in the end as > our test groups reported they couldn't enable Xerte Text to Speech to?work > even with tutorials on?how to enable ActiveX in IE properties. As well as > many users just don't have an?administrator access to computers in public > places to make it work. + own recorded narration will work in all browsers. > So that was the reason to dissable Xerte's text to speech and record/embedd > our own narration. > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ??Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 ronm at mitchellmedia.co.uk Wed Jul 27 19:42:50 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 27 Jul 2011 19:42:50 +0100 Subject: [Xerte] Re: FW: need help - integrating xerte with moodle 1.9 In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60723AC@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D60723AC@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <005501cc4c8c$ff0c9990$fd25ccb0$@co.uk> Not sure if this answer will get to you if Julian has had to post to the list on your behalf but in case it does... 1. Assuming you're using the moodle patch did you install xerte inside the moodle directory? If not it will do as you describe but not redirect you back to Xerte. Simply put a link from Moodle to Xerte so that once you have logged in to moodle you can follow the link back to Xerte. 2. If you did install xerte inside the Moodle directory try setting a unique cookie prefix inside Moodle admin then close all browsers and try again. The fact that it's redirecting to moodle login in the first place means the config path is correct so it's likely to be 1 or 2. Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 27 July 2011 14:16 To: Xerte discussion list Subject: [Xerte] FW: need help - integrating xerte with moodle 1.9 Your message bounced: are you subscribed to the list at that email address? From: Krishna Reddy [mailto:krishna.akkala at tarams.com] Sent: 26 July 2011 13:15 To: xerte at lists.nottingham.ac.uk Subject: need help - integrating xerte with moodle 1.9 Hi, Thanks for the providing the procedure to integrate the xerte with moodle. I followed your procedure to integrate the two. but when i am accessing the xerte its redirecting to the moodle page when i had logged in also. I am using the wamp server with moodle 1.9 . can you please let me know why this is happening?? -- Thanks & Regards Krishna Reddy A Software Engineer Tarams Software Technologies Pvt. Ltd. Tarams Tarams eLearning Ph : + 91 80 2658 7057 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 27 20:05:20 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 20:05:20 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D63E537A@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 27 21:10:37 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 16:10:37 -0400 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D63E537A@EXCHANGE1.ad.nottingham.ac.uk> References: , , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk>, , , <12C67A1EEC419342AF5E59DA31562C3F05D63E537A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: My wife wandered by as I opened this and said "That's beautiful". From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 20:05:20 +0100 Subject: [Xerte] Re: Scoring in Xerte It's nearly finished, but the jobs just keep on coming... http://www.nottingham.ac.uk/~cczjrt/polish.swf That's six weeks of work in those six seconds... From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett [d_b_burnett at hotmail.com] Sent: 27 July 2011 17:09 To: Xerte list Subject: [Xerte] Re: Scoring in Xerte You made a mandolin. An accordion should be a walk in the park. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 16:50:42 +0100 Subject: [Xerte] Re: Scoring in Xerte You accordion player? I want a Cajun one - that sound rocks. Not cheap though. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 27 July 2011 16:23 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte If you can't get it working post back and I will try and help. I am not familiar with interacting between swfs and Xerte but once you have passed the data to Xerte it should be simple enough to display it in a wizard based page. No mobile phones - wonderful Mandolin - getting even better But no accordion ! C'est terrible Johnathan On 27 July 2011 12:54, Deborah Delin wrote: Sounds heavenly - for a limited period of course! Thanks so much for the code. Sounds to easy to be true. I'll try it when I pluck up the courage. :-) Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Wed Jul 27 22:58:09 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 27 Jul 2011 22:58:09 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: , , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk>, , , <12C67A1EEC419342AF5E59DA31562C3F05D63E537A@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D63E537B@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Jul 27 23:43:29 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 27 Jul 2011 18:43:29 -0400 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D63E537B@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk>, , , , , <12C67A1EEC419342AF5E59DA31562C3F05D63E537A@EXCHANGE1.ad.nottingham.ac.uk>, , , <12C67A1EEC419342AF5E59DA31562C3F05D63E537B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Two things: I used to do hardwood woodworking myself, mahogany bedframes, birdseye maple bookshelves, oak coffee tables etc I came to realize that what to you is a glaring divot, is invisible to everyone else. A couple years ago I watched a program that followed the process of making Persian rugs. The real ones, near a million hand done hooks, takes a year to do. After the rug is finished they purposely pull a thread, because "Only God is perfect". :-) From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 22:58:09 +0100 Subject: [Xerte] Re: Scoring in Xerte Don't look too closely. Perfection is elusive. From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett [d_b_burnett at hotmail.com] Sent: 27 July 2011 21:10 To: Xerte list Subject: [Xerte] Re: Scoring in Xerte My wife wandered by as I opened this and said "That's beautiful". From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 20:05:20 +0100 Subject: [Xerte] Re: Scoring in Xerte It's nearly finished, but the jobs just keep on coming... http://www.nottingham.ac.uk/~cczjrt/polish.swf That's six weeks of work in those six seconds... From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett [d_b_burnett at hotmail.com] Sent: 27 July 2011 17:09 To: Xerte list Subject: [Xerte] Re: Scoring in Xerte You made a mandolin. An accordion should be a walk in the park. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 27 Jul 2011 16:50:42 +0100 Subject: [Xerte] Re: Scoring in Xerte You accordion player? I want a Cajun one - that sound rocks. Not cheap though. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 27 July 2011 16:23 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte If you can't get it working post back and I will try and help. I am not familiar with interacting between swfs and Xerte but once you have passed the data to Xerte it should be simple enough to display it in a wizard based page. No mobile phones - wonderful Mandolin - getting even better But no accordion ! C'est terrible Johnathan On 27 July 2011 12:54, Deborah Delin wrote: Sounds heavenly - for a limited period of course! Thanks so much for the code. Sounds to easy to be true. I'll try it when I pluck up the courage. :-) Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 admin at strivney.com Thu Jul 28 04:47:54 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 28 Jul 2011 06:47:54 +0300 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60724B9@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D63E537A@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D63E537B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Thanks Jonathan! I don't really know how to do what Julian said: *OK, the way to do it is to bounce your score off xerte from the swfs that set them and then display them in another swf where you retrieve them.***** * So, in a quiz, or similar you can se the score, in a place where the other swf can read it:* ** *_level0.engine.debsData.score1 = 99;***** * * level0.engine is Xerte? Don't I need a function in my SWF to send the score to Xerte? I'm a beginner at AS2 and am lost. If one of the AS2 whizzes could help with an idiot's guide that would be great, otherwise it will wait until Julian gets back. Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Thu Jul 28 06:13:56 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 28 Jul 2011 08:13:56 +0300 Subject: [Xerte] Display pre-loading graphic Message-ID: Hi, I am using the Text Flash SWF Wizards template. When entering a new page one sees the white panel while the SWF loads. Sometimes the delay is quite long and I'm worried users will think it's not working and give up. I tried a couple of methods of adding pre-loaders to the SWF's but it seems that idea isn't compatible with Xerte. In an old post Pat suggested: Might an idea be to overlay a graphic over your interface, and look for a loaded event on the interface to hide this graphic? That might be solving the problem with a new problem though. Is this a viable idea or is there another way to display a loading graphic on the blank white panel while the SWF loads? If so could someone kindly explain (step by step please) how I could do it? Thanks in advance, Deborah -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Jul 28 09:31:10 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 28 Jul 2011 09:31:10 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> What exactly do I need to do? You can commit a change...? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 17:08 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Ah crap. Julian can you paste in the table prefix php into that line? On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale > wrote: I read about the password thing elsewhere on the mailing list, I seem to get the behaviour one would expect. As in, the only way anyone can log in is by using only the correct username and correct password, a blank or incorrect password will not allow a login. I've made some progress on my problem, it seems that around line 537 of login_library.php the following mysql query does not use the user defined table name prefix... $ldap_hosts = mysql_query("select * from ldap"); Adding my table name prefix almost fixes things, now the given name and sn are pulled in, doing a var_dump on $login_check shows this, but only the sn is saved in the database. I'm guessing the solution must be some other query also not using the table prefix. Anyways, I'm off home for the day. This can wait until the morning ;-) Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 14:55 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn No, just in login_library and index.php (when it comes to account creation). Silly question - try entering the wrong password - see what happens. On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote: Hi, I've updated "givenname" to "givenName" in the following functions (within login_library.php)... * get_ldap_array() * get_user_ldap() * authenticate_to_host() The "givenName" and "sn" attributes definitely exists in the Active Directory and I am able to access them via my own PHP applications, but for some reason Xerte seems to be ignoring them. No errors shown in the Xerte logs or the apache error log. Another thing I have tried after changing these is to remove the user account from the Xerte database and try logging in again, but to no avail. The user account can log in, but no other data is saved in the row, just the user id. Am I looking in the right place (login_library.php) or are there other places within the Xerte code base that also check LDAP? Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 12:18 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote: Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 28 09:49:08 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Thu, 28 Jul 2011 09:49:08 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <231D667C-F6E2-4ABF-8969-1C787A3A68B1@techdis.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> <231D667C-F6E2-4ABF-8969-1C787A3A68B1@techdis.ac.uk> Message-ID: I am learning to play the accordion, so it's early days yet, particularly since I am in the process of changing over from piano to chromatic button C system. On 27 July 2011 17:13, Alistair McNaught wrote: > Johnathan, bring the accordion to the Xerte Unconference.. We need a Xerte > Jam Session.. > > Sent from my phone: > Alistair McNaught > 07870567659 > > > On 27 Jul 2011, at 16:51, "Kemp Johnathan" > wrote: > > If you can't get it working post back and I will try and help. > > I am not familiar with interacting between swfs and Xerte but once you have > passed the data to Xerte it should be simple enough to display it in a > wizard based page. > > No mobile phones - wonderful > Mandolin - getting even better > > But no accordion ! > > C'est terrible > > Johnathan > > On 27 July 2011 12:54, Deborah Delin wrote: > >> Sounds heavenly - for a limited period of course! >>> >> >> Thanks so much for the code. Sounds to easy to be true. I'll try it when >> I pluck up the courage. :-) >> >> Deborah >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer system: you are advised to perform your own checks. Email >> communications with the University of Nottingham may be monitored as >> permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 28 09:53:28 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Thu, 28 Jul 2011 09:53:28 +0100 Subject: [Xerte] Re: Display pre-loading graphic In-Reply-To: References: Message-ID: This is an off the top of the head idea - that is I have'nt tried it out. The panel is a graphic icon with a swf as its url. It should be possible to set the panel graphic icon's visible property to false and then set it to true by an on load event triggered by the loading of your swf, that way I would expect the panel not to show until your swf had finished loading. Kind regards Johnathan On 28 July 2011 06:13, Deborah Delin wrote: > Hi, > > I am using the Text Flash SWF Wizards template. When entering a new page > one sees the white panel while the SWF loads. Sometimes the delay is quite > long and I'm worried users will think it's not working and give up. I tried > a couple of methods of adding pre-loaders to the SWF's but it seems that > idea isn't compatible with Xerte. > > In an old post Pat suggested: > > Might an idea be to overlay a graphic over your interface, and look for > a loaded event on the interface to hide this graphic? > > That might be solving the problem with a new problem though. > > Is this a viable idea or is there another way to display a loading graphic on the blank white panel while the SWF loads? If so could someone kindly explain (step by step please) how I could do it? > > Thanks in advance, > > Deborah > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 28 10:06:00 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 28 Jul 2011 10:06:00 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> <231D667C-F6E2-4ABF-8969-1C787A3A68B1@techdis.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60725F8@EXCHANGE1.ad.nottingham.ac.uk> I love the sound of the cajun accordion: can't imagine it's particularly quiet thing to learn to play though, which was the trouble I had with a fiddle. http://www.youtube.com/watch?v=tPqyFL-bYVQ http://www.youtube.com/watch?v=NBwaWa0ITAU From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 28 July 2011 09:49 To: Xerte discussion list Subject: [Xerte] Re: Scoring in Xerte I am learning to play the accordion, so it's early days yet, particularly since I am in the process of changing over from piano to chromatic button C system. On 27 July 2011 17:13, Alistair McNaught > wrote: Johnathan, bring the accordion to the Xerte Unconference.. We need a Xerte Jam Session.. Sent from my phone: Alistair McNaught 07870567659 On 27 Jul 2011, at 16:51, "Kemp Johnathan" > wrote: If you can't get it working post back and I will try and help. I am not familiar with interacting between swfs and Xerte but once you have passed the data to Xerte it should be simple enough to display it in a wizard based page. No mobile phones - wonderful Mandolin - getting even better But no accordion ! C'est terrible Johnathan On 27 July 2011 12:54, Deborah Delin > wrote: Sounds heavenly - for a limited period of course! Thanks so much for the code. Sounds to easy to be true. I'll try it when I pluck up the courage. :-) Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 28 10:08:48 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 28 Jul 2011 10:08:48 +0100 Subject: [Xerte] Re: Display pre-loading graphic In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D6072602@EXCHANGE1.ad.nottingham.ac.uk> I think the idea was to show that something is loading: you could switch out whitePanel.swf for another swf with a message in it. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 28 July 2011 09:53 To: Xerte discussion list Subject: [Xerte] Re: Display pre-loading graphic This is an off the top of the head idea - that is I have'nt tried it out. The panel is a graphic icon with a swf as its url. It should be possible to set the panel graphic icon's visible property to false and then set it to true by an on load event triggered by the loading of your swf, that way I would expect the panel not to show until your swf had finished loading. Kind regards Johnathan On 28 July 2011 06:13, Deborah Delin > wrote: Hi, I am using the Text Flash SWF Wizards template. When entering a new page one sees the white panel while the SWF loads. Sometimes the delay is quite long and I'm worried users will think it's not working and give up. I tried a couple of methods of adding pre-loaders to the SWF's but it seems that idea isn't compatible with Xerte. In an old post Pat suggested: Might an idea be to overlay a graphic over your interface, and look for a loaded event on the interface to hide this graphic? That might be solving the problem with a new problem though. Is this a viable idea or is there another way to display a loading graphic on the blank white panel while the SWF loads? If so could someone kindly explain (step by step please) how I could do it? Thanks in advance, Deborah This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Dale.Davies at liv-coll.ac.uk Thu Jul 28 10:38:25 2011 From: Dale.Davies at liv-coll.ac.uk (Davies, Dale) Date: Thu, 28 Jul 2011 10:38:25 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk><8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk><8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> Hi Julian, Two things I have found so far. The first fixes a bug where the users first name and surname were not being saved into the database when logging in. The second fixes a bug where trying to update workspace properties returned a 404. In login_library.php at about line 537 change.... * $ldap_hosts = mysql_query("select * from ldap"); To... * $ldap_hosts = mysql_query("select * from " . $xerte_toolkits_site->database_table_prefix . "ldap"); In the .htaccess file I added the following line... * rewriteRule ^workspaceproperties/?$ /xerte/workspaceproperties.php Hope this helps J Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 28 July 2011 09:31 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn What exactly do I need to do? You can commit a change...? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 17:08 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Ah crap. Julian can you paste in the table prefix php into that line? On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale wrote: I read about the password thing elsewhere on the mailing list, I seem to get the behaviour one would expect. As in, the only way anyone can log in is by using only the correct username and correct password, a blank or incorrect password will not allow a login. I've made some progress on my problem, it seems that around line 537 of login_library.php the following mysql query does not use the user defined table name prefix... $ldap_hosts = mysql_query("select * from ldap"); Adding my table name prefix almost fixes things, now the given name and sn are pulled in, doing a var_dump on $login_check shows this, but only the sn is saved in the database. I'm guessing the solution must be some other query also not using the table prefix. Anyways, I'm off home for the day. This can wait until the morning ;-) Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 14:55 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn No, just in login_library and index.php (when it comes to account creation). Silly question - try entering the wrong password - see what happens. On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale wrote: Hi, I've updated "givenname" to "givenName" in the following functions (within login_library.php)... * get_ldap_array() * get_user_ldap() * authenticate_to_host() The "givenName" and "sn" attributes definitely exists in the Active Directory and I am able to access them via my own PHP applications, but for some reason Xerte seems to be ignoring them. No errors shown in the Xerte logs or the apache error log. Another thing I have tried after changing these is to remove the user account from the Xerte database and try logging in again, but to no avail. The user account can log in, but no other data is saved in the row, just the user id. Am I looking in the right place (login_library.php) or are there other places within the Xerte code base that also check LDAP? Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 12:18 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale wrote: Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. --------------------------------------------------------------------------------------- Please consider the environment before printing this email. --------------------------------------------------------------------------------------- This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. --------------------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From admin at strivney.com Thu Jul 28 10:41:03 2011 From: admin at strivney.com (Deborah Delin) Date: Thu, 28 Jul 2011 12:41:03 +0300 Subject: [Xerte] Re: Display pre-loading graphic In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D6072602@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072602@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Thanks for your suggestion Jonathan - Julian's idea to swap whitePanel.swf for the preloader worked perfectly! If only things were always that simple! Thank you! Deborah > -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jul 28 10:51:51 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 28 Jul 2011 10:51:51 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> Message-ID: the top line is the fix (thank you). Not sure the .htaccess change shouldn't be "dollared" - the install mods the default htaccess so don't add that line in by default On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale wrote: > Hi Julian,**** > > ** ** > > Two things I have found so far. The first fixes a bug where the users > first name and surname were not being saved into the database when logging > in. The second fixes a bug where trying to update workspace properties > returned a 404.**** > > ** ** > > In login_library.php at about line 537 change....**** > > ** ** > > **? ***$ldap_hosts = mysql_query("select * from ldap");* > > ** ** > > To...**** > > ** ** > > **? ***$ldap_hosts = mysql_query("select * from " . > $xerte_toolkits_site->database_table_prefix . "ldap");** * > > ** ** > > ** ** > > In the .htaccess file I added the following line...**** > > ** ** > > **? ***rewriteRule ^workspaceproperties/?$ > /xerte/workspaceproperties.php*** > > ** ** > > ** ** > > Hope this helps J **** > > ** ** > > * * > > *Dale Davies - VLE / E-Learning Developer* > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Julian Tenney > *Sent:* 28 July 2011 09:31 > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > ** ** > > What exactly do I need to do?**** > > ** ** > > You can commit a change??**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 17:08 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > ** ** > > Ah crap.**** > > ** ** > > Julian can you paste in the table prefix php into that line?**** > > On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale > wrote:**** > > I read about the password thing elsewhere on the mailing list, I seem to > get the behaviour one would expect. As in, the only way anyone can log in > is by using only the correct username and correct password, a blank or > incorrect password will not allow a login.**** > > **** > > I?ve made some progress on my problem, it seems that around line 537 of > login_library.php the following mysql query does not use the user defined > table name prefix...**** > > **** > > $ldap_hosts = mysql_query("select * from ldap");**** > > **** > > Adding my table name prefix almost fixes things, now the given name and sn > are pulled in, doing a var_dump on $login_check shows this, but only the sn > is saved in the database.**** > > **** > > I?m guessing the solution must be some other query also not using the table > prefix.**** > > **** > > Anyways, I?m off home for the day. This can wait until the morning ;-)*** > * > > **** > > **** > > Thanks again,**** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 14:55 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > **** > > No, just in login_library and index.php (when it comes to account > creation).**** > > **** > > Silly question - try entering the wrong password - see what happens.**** > > On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote:**** > > Hi,**** > > **** > > I?ve updated ?givenname? to ?givenName? in the following functions (within > login_library.php)...**** > > **** > > ? get_ldap_array()**** > > ? get_user_ldap()**** > > ? authenticate_to_host()**** > > **** > > The ?givenName? and ?sn? attributes definitely exists in the Active > Directory and I am able to access them via my own PHP applications, but for > some reason Xerte seems to be ignoring them. No errors shown in the Xerte > logs or the apache error log.**** > > **** > > Another thing I have tried after changing these is to remove the user > account from the Xerte database and try logging in again, but to no avail. > The user account can log in, but no other data is saved in the row, just the > user id.**** > > **** > > Am I looking in the right place (login_library.php) or are there other > places within the Xerte code base that also check LDAP?**** > > **** > > Thanks again,**** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 12:18 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > **** > > Hello,**** > > **** > > From recollection the code does two LDAP checks. Maybe the second one > fails?**** > > **** > > I would be surprised givenname isn't in the database in sitedetails or > ldap?**** > > **** > > Pat**** > > On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote:**** > > Hi,**** > > **** > > I?ve set Xerte up on a Linux web server, everything works perfectly apart > from one aspect. When a user logs in their name is not pulled into the > Xerte users database via LDAP. **** > > **** > > I have checked through the code and found login_library.php to contain > ?givenname?, so I changed this to ?givenName?. However this still does not > pull in the name. We definitely have values stores in those attributes > within the Active Directory.**** > > **** > > Am I missing something? I can?t find any solution unfortunately, I realise > this isn?t a huge problem as Xerte still works regardless, but users are > unable to search for each other and share/hand over projects.**** > > **** > > Any help/advice is much appreciated. Many thanks.**** > > **** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > **** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. **** > > *Error! Filename not specified.***** > ------------------------------ > > **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. **** > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > **** > > **** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > *Error! Filename not specified.***** > ------------------------------ > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > **** > > ** ** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > *Error! Filename not specified.***** > ------------------------------ > > ** ** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > ** ** > > ------------------------------ > > Please consider the environment before printing this email. > ------------------------------ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > > ------------------------------ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Alistair.McNaught at HEAcademy.ac.uk Thu Jul 28 11:12:23 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Thu, 28 Jul 2011 11:12:23 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: References: <1311788737.4e304ec14651f@mail.inbox.lv> Message-ID: That's a perfectly fair point but I've worked with international accessibility projects and it's a can of worms that is best left unopened. It can lead to logical but unethical conclusions like "Somalia has poor accessibility legislation and no enforcement so blind Somalians can be safely ignored when designing learning objects..." - a route we really don't want to go down! A -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 19:27 To: Xerte discussion list Subject: [Xerte] Re: Text to Speech - disable in IE I think Janis is also Latvian? and so may also have different laws? Is there a list anywhere of compliances / best practice for different legislations? Might help with internationalisation? On Wed, Jul 27, 2011 at 7:09 PM, Alistair McNaught wrote: > Hi Janis > Thanks for clarification. That sounds like a defensible decision and > although there's no obligation for you to justify it to me (!) I'm grateful > you took the time to explain, not least because accessibility is one of the > selling points of Xerte and it's good to keep the topic alive on the list. > All the best > Alistair > > > Sent from my phone: > Alistair McNaught > 07870567659 > > On 27 Jul 2011, at 18:47, "Janis Ozols" wrote: > > Thank you, Julian. It is done know. Sorry, I couldn't locate it in the > archive. > Alistair McNaught, I decided to disable Text to Speech option, because we > have?recorded our own text narration for?important text objects and embedded > it into the project,?and I think it will be more accessible in the end as > our test groups reported they couldn't enable Xerte Text to Speech to?work > even with tutorials on?how to enable ActiveX in IE properties. As well as > many users just don't have an?administrator access to computers in public > places to make it work. + own recorded narration will work in all browsers. > So that was the reason to dissable Xerte's text to speech and record/embedd > our own narration. > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ??Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Julian.Tenney at nottingham.ac.uk Thu Jul 28 11:16:02 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 28 Jul 2011 11:16:02 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60726A2@EXCHANGE1.ad.nottingham.ac.uk> Not being a numpty here, but what EXACTLY is the fix? I don't know what this means, so unsure what to do: Not sure the .htaccess change shouldn't be "dollared" - the install mods the default htaccess so don't add that line in by default You want me to do this? * $ldap_hosts = mysql_query("select * from ldap"); To... * $ldap_hosts = mysql_query("select * from " . $xerte_toolkits_site->database_table_prefix . "ldap"); Can you reply slowly in words I've seen before please... ;-) From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 28 July 2011 10:52 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn the top line is the fix (thank you). Not sure the .htaccess change shouldn't be "dollared" - the install mods the default htaccess so don't add that line in by default On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale > wrote: Hi Julian, Two things I have found so far. The first fixes a bug where the users first name and surname were not being saved into the database when logging in. The second fixes a bug where trying to update workspace properties returned a 404. In login_library.php at about line 537 change.... * $ldap_hosts = mysql_query("select * from ldap"); To... * $ldap_hosts = mysql_query("select * from " . $xerte_toolkits_site->database_table_prefix . "ldap"); In the .htaccess file I added the following line... * rewriteRule ^workspaceproperties/?$ /xerte/workspaceproperties.php Hope this helps :) Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 28 July 2011 09:31 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn What exactly do I need to do? You can commit a change...? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 17:08 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Ah crap. Julian can you paste in the table prefix php into that line? On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale > wrote: I read about the password thing elsewhere on the mailing list, I seem to get the behaviour one would expect. As in, the only way anyone can log in is by using only the correct username and correct password, a blank or incorrect password will not allow a login. I've made some progress on my problem, it seems that around line 537 of login_library.php the following mysql query does not use the user defined table name prefix... $ldap_hosts = mysql_query("select * from ldap"); Adding my table name prefix almost fixes things, now the given name and sn are pulled in, doing a var_dump on $login_check shows this, but only the sn is saved in the database. I'm guessing the solution must be some other query also not using the table prefix. Anyways, I'm off home for the day. This can wait until the morning ;-) Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 14:55 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn No, just in login_library and index.php (when it comes to account creation). Silly question - try entering the wrong password - see what happens. On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote: Hi, I've updated "givenname" to "givenName" in the following functions (within login_library.php)... * get_ldap_array() * get_user_ldap() * authenticate_to_host() The "givenName" and "sn" attributes definitely exists in the Active Directory and I am able to access them via my own PHP applications, but for some reason Xerte seems to be ignoring them. No errors shown in the Xerte logs or the apache error log. Another thing I have tried after changing these is to remove the user account from the Xerte database and try logging in again, but to no avail. The user account can log in, but no other data is saved in the row, just the user id. Am I looking in the right place (login_library.php) or are there other places within the Xerte code base that also check LDAP? Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 12:18 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote: Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 28 11:28:12 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 28 Jul 2011 11:28:12 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: References: <1311788737.4e304ec14651f@mail.inbox.lv> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60726BA@EXCHANGE1.ad.nottingham.ac.uk> It well avoided if you think about accessibility being primarily about usability, and about making resources as usuable as possible for as many people as possible. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 28 July 2011 11:12 To: Xerte discussion list Subject: [Xerte] Re: Text to Speech - disable in IE That's a perfectly fair point but I've worked with international accessibility projects and it's a can of worms that is best left unopened. It can lead to logical but unethical conclusions like "Somalia has poor accessibility legislation and no enforcement so blind Somalians can be safely ignored when designing learning objects..." - a route we really don't want to go down! A -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 19:27 To: Xerte discussion list Subject: [Xerte] Re: Text to Speech - disable in IE I think Janis is also Latvian? and so may also have different laws? Is there a list anywhere of compliances / best practice for different legislations? Might help with internationalisation? On Wed, Jul 27, 2011 at 7:09 PM, Alistair McNaught wrote: > Hi Janis > Thanks for clarification. That sounds like a defensible decision and > although there's no obligation for you to justify it to me (!) I'm grateful > you took the time to explain, not least because accessibility is one of the > selling points of Xerte and it's good to keep the topic alive on the list. > All the best > Alistair > > > Sent from my phone: > Alistair McNaught > 07870567659 > > On 27 Jul 2011, at 18:47, "Janis Ozols" wrote: > > Thank you, Julian. It is done know. Sorry, I couldn't locate it in the > archive. > Alistair McNaught, I decided to disable Text to Speech option, because we > have?recorded our own text narration for?important text objects and embedded > it into the project,?and I think it will be more accessible in the end as > our test groups reported they couldn't enable Xerte Text to Speech to?work > even with tutorials on?how to enable ActiveX in IE properties. As well as > many users just don't have an?administrator access to computers in public > places to make it work. + own recorded narration will work in all browsers. > So that was the reason to dissable Xerte's text to speech and record/embedd > our own narration. > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ??Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Dale.Davies at liv-coll.ac.uk Thu Jul 28 11:16:14 2011 From: Dale.Davies at liv-coll.ac.uk (Davies, Dale) Date: Thu, 28 Jul 2011 11:16:14 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk><8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk><8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk><12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk><8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> Message-ID: <8ED79B44451AC24DAABB22455BFE5028071F17AC@goliath.liv-bus.co.uk> Yes, the first line it the fix for my actual problem. The second is another I found along the way, not sure what you mean by "dollared" though unfortunately. Seems the workspaceproperties entry is not added to the .htaccess file by default, so when clicking on the "Properties" button to edit workspace properties a URL is opened like "/workspaceproperties" in a new window, however this is not rewritten to "workspaceproperties.php" so a 404 is returned. Adding that line to .htaccess file fixes the issue so the URL is actually rewritten. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 28 July 2011 10:52 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn the top line is the fix (thank you). Not sure the .htaccess change shouldn't be "dollared" - the install mods the default htaccess so don't add that line in by default On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale wrote: Hi Julian, Two things I have found so far. The first fixes a bug where the users first name and surname were not being saved into the database when logging in. The second fixes a bug where trying to update workspace properties returned a 404. In login_library.php at about line 537 change.... * $ldap_hosts = mysql_query("select * from ldap"); To... * $ldap_hosts = mysql_query("select * from " . $xerte_toolkits_site->database_table_prefix . "ldap"); In the .htaccess file I added the following line... * rewriteRule ^workspaceproperties/?$ /xerte/workspaceproperties.php Hope this helps J Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 28 July 2011 09:31 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn What exactly do I need to do? You can commit a change...? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 17:08 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Ah crap. Julian can you paste in the table prefix php into that line? On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale wrote: I read about the password thing elsewhere on the mailing list, I seem to get the behaviour one would expect. As in, the only way anyone can log in is by using only the correct username and correct password, a blank or incorrect password will not allow a login. I've made some progress on my problem, it seems that around line 537 of login_library.php the following mysql query does not use the user defined table name prefix... $ldap_hosts = mysql_query("select * from ldap"); Adding my table name prefix almost fixes things, now the given name and sn are pulled in, doing a var_dump on $login_check shows this, but only the sn is saved in the database. I'm guessing the solution must be some other query also not using the table prefix. Anyways, I'm off home for the day. This can wait until the morning ;-) Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 14:55 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn No, just in login_library and index.php (when it comes to account creation). Silly question - try entering the wrong password - see what happens. On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale wrote: Hi, I've updated "givenname" to "givenName" in the following functions (within login_library.php)... * get_ldap_array() * get_user_ldap() * authenticate_to_host() The "givenName" and "sn" attributes definitely exists in the Active Directory and I am able to access them via my own PHP applications, but for some reason Xerte seems to be ignoring them. No errors shown in the Xerte logs or the apache error log. Another thing I have tried after changing these is to remove the user account from the Xerte database and try logging in again, but to no avail. The user account can log in, but no other data is saved in the row, just the user id. Am I looking in the right place (login_library.php) or are there other places within the Xerte code base that also check LDAP? Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 12:18 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale wrote: Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. --------------------------------------------------------------------------------------- Please consider the environment before printing this email. --------------------------------------------------------------------------------------- This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. --------------------------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jul 28 11:27:36 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 28 Jul 2011 11:27:36 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60726A2@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: and then in setup/htaccess.conf add the new line rewriteRule ^workspaceproperties_([A-Za-z0-9]+)$ */workspaceproperties.php?template_id=$1 On Thu, Jul 28, 2011 at 11:21 AM, Pat Lockley wrote: > This is a good change > > $ldap_hosts = mysql_query("select * from ldap"); > > > To... > > ? ? ? ? ? $ldap_hosts = mysql_query("select * from " . > $xerte_toolkits_site->database_table_prefix . "ldap"); > > On Thu, Jul 28, 2011 at 11:16 AM, Julian Tenney > wrote: >> Not being a numpty here, but what EXACTLY is the fix? >> >> >> >> I don?t know what this means, so unsure what to do: >> >> Not sure the .htaccess change shouldn't be "dollared" - the install mods the >> default htaccess so don't add that line in by default >> >> You want me to do this? >> >> ????????? $ldap_hosts = mysql_query("select * from ldap"); >> >> >> >> To... >> >> >> >> ????????? $ldap_hosts = mysql_query("select * from " . >> $xerte_toolkits_site->database_table_prefix . "ldap"); >> >> Can you reply slowly in words I?ve seen before please? >> >> >> >> ;-) >> >> >> >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 28 July 2011 10:52 >> >> To: Xerte discussion list >> Subject: [Xerte] Re: LDAP givenName & sn >> >> >> >> the top line is the fix (thank you). >> >> >> >> Not sure the .htaccess change shouldn't be "dollared" - the install mods the >> default htaccess so don't add that line in by default >> >> On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale >> wrote: >> >> Hi Julian, >> >> >> >> Two things I have found so far.? The first fixes a bug where the users first >> name and surname were not being saved into the database when logging in. >> The second fixes a bug where trying to update workspace properties returned >> a 404. >> >> >> >> In login_library.php at about line 537 change.... >> >> >> >> ????????? $ldap_hosts = mysql_query("select * from ldap"); >> >> >> >> To... >> >> >> >> ????????? $ldap_hosts = mysql_query("select * from " . >> $xerte_toolkits_site->database_table_prefix . "ldap"); >> >> >> >> >> >> In the .htaccess file I added the following line... >> >> >> >> ????????? rewriteRule ^workspaceproperties/?$ /xerte/workspaceproperties.php >> >> >> >> >> >> Hope this helps J >> >> >> >> >> >> Dale Davies - VLE / E-Learning Developer >> >> Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. >> >> Web: www.liv-coll.ac.uk >> >> Tel: 0151 252 3238 >> >> >> >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney >> Sent: 28 July 2011 09:31 >> >> To: Xerte discussion list >> Subject: [Xerte] Re: LDAP givenName & sn >> >> >> >> What exactly do I need to do? >> >> >> >> You can commit a change?? >> >> >> >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 27 July 2011 17:08 >> To: Xerte discussion list >> Subject: [Xerte] Re: LDAP givenName & sn >> >> >> >> Ah crap. >> >> >> >> Julian can you paste in the table prefix php into that line? >> >> On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale >> wrote: >> >> I read about the password thing elsewhere on the mailing list, I seem to get >> the behaviour one would expect.? As in, the only way anyone can log in is by >> using only the correct username and correct password, a blank or incorrect >> password will not allow a login. >> >> >> >> I?ve made some progress on my problem, it seems that around line 537 of >> login_library.php the following mysql query does not use the user defined >> table name prefix... >> >> >> >> $ldap_hosts = mysql_query("select * from ldap"); >> >> >> >> Adding my table name prefix almost fixes things, now the given name and sn >> are pulled in, doing a var_dump on $login_check shows this, but only the sn >> is saved in the database. >> >> >> >> I?m guessing the solution must be some other query also not using the table >> prefix. >> >> >> >> Anyways, I?m off home for the day.? This can wait until the morning ;-) >> >> >> >> >> >> Thanks again, >> >> >> >> Dale Davies - VLE / E-Learning Developer >> >> Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. >> >> Web: www.liv-coll.ac.uk >> >> Tel: 0151 252 3238 >> >> >> >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 27 July 2011 14:55 >> To: Xerte discussion list >> Subject: [Xerte] Re: LDAP givenName & sn >> >> >> >> No, just in login_library and index.php (when it comes to account creation). >> >> >> >> Silly question - try entering the wrong password - see what happens. >> >> On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale >> wrote: >> >> Hi, >> >> >> >> I?ve updated ?givenname? to ?givenName? in the following functions (within >> login_library.php)... >> >> >> >> ????????? get_ldap_array() >> >> ????????? get_user_ldap() >> >> ????????? authenticate_to_host() >> >> >> >> The ?givenName? and ?sn? attributes definitely exists in the Active >> Directory and I am able to access them via my own PHP applications, but for >> some reason Xerte seems to be ignoring them.? No errors shown in the Xerte >> logs or the apache error log. >> >> >> >> Another thing I have tried after changing these is to remove the user >> account from the Xerte database and try logging in again, but to no avail. >> The user account can log in, but no other data is saved in the row, just the >> user id. >> >> >> >> Am I looking in the right place (login_library.php) or are there other >> places within the Xerte code base that also check LDAP? >> >> >> >> Thanks again, >> >> >> >> Dale Davies - VLE / E-Learning Developer >> >> Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. >> >> Web: www.liv-coll.ac.uk >> >> Tel: 0151 252 3238 >> >> >> >> From: xerte-bounces at lists.nottingham.ac.uk >> [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley >> Sent: 27 July 2011 12:18 >> To: Xerte discussion list >> Subject: [Xerte] Re: LDAP givenName & sn >> >> >> >> Hello, >> >> >> >> From recollection the code does two LDAP checks. Maybe the second one fails? >> >> >> >> I would be surprised givenname isn't in the database in sitedetails or ldap? >> >> >> >> Pat >> >> On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale >> wrote: >> >> Hi, >> >> >> >> I?ve set Xerte up on a Linux web server, everything works perfectly apart >> from one aspect.? When a user logs in their name is not pulled into the >> Xerte users database via LDAP. >> >> >> >> I have checked through the code and found login_library.php to contain >> ?givenname?, so I changed this to ?givenName?.? However this still does not >> pull in the name.? We definitely have values stores in those attributes >> within the Active Directory. >> >> >> >> Am I missing something?? I can?t find any solution unfortunately, I realise >> this isn?t a huge problem as Xerte still works regardless, but users are >> unable to search for each other and share/hand over projects. >> >> >> >> Any help/advice is much appreciated.? Many thanks. >> >> >> >> >> >> Dale Davies - VLE / E-Learning Developer >> >> Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. >> >> Web: www.liv-coll.ac.uk >> >> Tel: 0151 252 3238 >> >> >> >> >> >> ________________________________ >> >> Please consider the environment before printing this email. >> >> ________________________________ >> >> This email and any attachments are confidential and intended solely for the >> use of the individual to whom it is addressed. Any views or opinions >> presented are solely those of the author and do not necessarily represent >> those of Liverpool Community College or associated companies. You must not, >> directly or indirectly, use, disclose, distribute, print, or copy any part >> of this message if you are not the intended recipient. >> >> The message content of in-coming emails is automatically scanned to identify >> Spam and viruses otherwise Liverpool Community College does not actively >> monitor content. However, sometimes it will be necessary for Liverpool >> Community College to access business communications during staff absence. >> >> Liverpool Community College has taken steps to ensure that this email and >> any attachments are virus free. However, it is the responsibility of the >> recipient to ensure that it is virus free and no responsibility is accepted >> by Liverpool Community College for any loss or damage arising in any way >> from its use. >> >> Error! Filename not specified. >> >> ________________________________ >> >> >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ? Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >> >> ________________________________ >> >> Please consider the environment before printing this email. >> >> ________________________________ >> >> This email and any attachments are confidential and intended solely for the >> use of the individual to whom it is addressed. Any views or opinions >> presented are solely those of the author and do not necessarily represent >> those of Liverpool Community College or associated companies. You must not, >> directly or indirectly, use, disclose, distribute, print, or copy any part >> of this message if you are not the intended recipient. >> >> The message content of in-coming emails is automatically scanned to identify >> Spam and viruses otherwise Liverpool Community College does not actively >> monitor content. However, sometimes it will be necessary for Liverpool >> Community College to access business communications during staff absence. >> >> Liverpool Community College has taken steps to ensure that this email and >> any attachments are virus free. However, it is the responsibility of the >> recipient to ensure that it is virus free and no responsibility is accepted >> by Liverpool Community College for any loss or damage arising in any way >> from its use. >> Error! Filename not specified. >> >> ________________________________ >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ? Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >> >> ________________________________ >> >> Please consider the environment before printing this email. >> >> ________________________________ >> >> This email and any attachments are confidential and intended solely for the >> use of the individual to whom it is addressed. Any views or opinions >> presented are solely those of the author and do not necessarily represent >> those of Liverpool Community College or associated companies. You must not, >> directly or indirectly, use, disclose, distribute, print, or copy any part >> of this message if you are not the intended recipient. >> >> The message content of in-coming emails is automatically scanned to identify >> Spam and viruses otherwise Liverpool Community College does not actively >> monitor content. However, sometimes it will be necessary for Liverpool >> Community College to access business communications during staff absence. >> >> Liverpool Community College has taken steps to ensure that this email and >> any attachments are virus free. However, it is the responsibility of the >> recipient to ensure that it is virus free and no responsibility is accepted >> by Liverpool Community College for any loss or damage arising in any way >> from its use. >> Error! Filename not specified. >> >> ________________________________ >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ? Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >> >> ________________________________ >> >> Please consider the environment before printing this email. >> >> ________________________________ >> >> This email and any attachments are confidential and intended solely for the >> use of the individual to whom it is addressed. Any views or opinions >> presented are solely those of the author and do not necessarily represent >> those of Liverpool Community College or associated companies. You must not, >> directly or indirectly, use, disclose, distribute, print, or copy any part >> of this message if you are not the intended recipient. >> >> The message content of in-coming emails is automatically scanned to identify >> Spam and viruses otherwise Liverpool Community College does not actively >> monitor content. However, sometimes it will be necessary for Liverpool >> Community College to access business communications during staff absence. >> >> Liverpool Community College has taken steps to ensure that this email and >> any attachments are virus free. However, it is the responsibility of the >> recipient to ensure that it is virus free and no responsibility is accepted >> by Liverpool Community College for any loss or damage arising in any way >> from its use. >> Error! Filename not specified. >> >> ________________________________ >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ? Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ? Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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 Jul 28 11:21:01 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 28 Jul 2011 11:21:01 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: References: <1311788737.4e304ec14651f@mail.inbox.lv> Message-ID: My argument was perhaps "their" laws might be tougher than hours (without getting all post colonial) On Thu, Jul 28, 2011 at 11:12 AM, Alistair McNaught wrote: > That's a perfectly fair point but I've worked with international accessibility projects and it's a can of worms that is best left unopened. > It can lead to logical but unethical conclusions like "Somalia has poor accessibility legislation and no enforcement so blind Somalians can be safely ignored when designing learning objects..." - a route we really don't want to go down! > > > A > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 19:27 > To: Xerte discussion list > Subject: [Xerte] Re: Text to Speech - disable in IE > > I think Janis is also Latvian? and so may also have different laws? > > Is there a list anywhere of compliances / best practice for different > legislations? > > Might help with internationalisation? > > On Wed, Jul 27, 2011 at 7:09 PM, Alistair McNaught > wrote: >> Hi Janis >> Thanks for clarification. That sounds like a defensible decision and >> although there's no obligation for you to justify it to me (!) I'm grateful >> you took the time to explain, not least because accessibility is one of the >> selling points of Xerte and it's good to keep the topic alive on the list. >> All the best >> Alistair >> >> >> Sent from my phone: >> Alistair McNaught >> 07870567659 >> >> On 27 Jul 2011, at 18:47, "Janis Ozols" wrote: >> >> Thank you, Julian. It is done know. Sorry, I couldn't locate it in the >> archive. >> Alistair McNaught, I decided to disable Text to Speech option, because we >> have?recorded our own text narration for?important text objects and embedded >> it into the project,?and I think it will be more accessible in the end as >> our test groups reported they couldn't enable Xerte Text to Speech to?work >> even with tutorials on?how to enable ActiveX in IE properties. As well as >> many users just don't have an?administrator access to computers in public >> places to make it work. + own recorded narration will work in all browsers. >> So that was the reason to dissable Xerte's text to speech and record/embedd >> our own narration. >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ??Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ? Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > From Julian.Tenney at nottingham.ac.uk Thu Jul 28 11:43:26 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 28 Jul 2011 11:43:26 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <8ED79B44451AC24DAABB22455BFE5028071F17AC@goliath.liv-bus.co.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk><8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk><8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk><12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk><8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F17AC@goliath.liv-bus.co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60726D1@EXCHANGE1.ad.nottingham.ac.uk> OK, thanks. They are in the svn now, with some other new tuff that needs tidying up: I'll make a new zip when I get back from my hols, 'cos I haven't got a lot of time today. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Davies, Dale Sent: 28 July 2011 11:16 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Yes, the first line it the fix for my actual problem. The second is another I found along the way, not sure what you mean by "dollared" though unfortunately. Seems the workspaceproperties entry is not added to the .htaccess file by default, so when clicking on the "Properties" button to edit workspace properties a URL is opened like "/workspaceproperties" in a new window, however this is not rewritten to "workspaceproperties.php" so a 404 is returned. Adding that line to .htaccess file fixes the issue so the URL is actually rewritten. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 28 July 2011 10:52 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn the top line is the fix (thank you). Not sure the .htaccess change shouldn't be "dollared" - the install mods the default htaccess so don't add that line in by default On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale > wrote: Hi Julian, Two things I have found so far. The first fixes a bug where the users first name and surname were not being saved into the database when logging in. The second fixes a bug where trying to update workspace properties returned a 404. In login_library.php at about line 537 change.... * $ldap_hosts = mysql_query("select * from ldap"); To... * $ldap_hosts = mysql_query("select * from " . $xerte_toolkits_site->database_table_prefix . "ldap"); In the .htaccess file I added the following line... * rewriteRule ^workspaceproperties/?$ /xerte/workspaceproperties.php Hope this helps :) Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 28 July 2011 09:31 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn What exactly do I need to do? You can commit a change...? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 17:08 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Ah crap. Julian can you paste in the table prefix php into that line? On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale > wrote: I read about the password thing elsewhere on the mailing list, I seem to get the behaviour one would expect. As in, the only way anyone can log in is by using only the correct username and correct password, a blank or incorrect password will not allow a login. I've made some progress on my problem, it seems that around line 537 of login_library.php the following mysql query does not use the user defined table name prefix... $ldap_hosts = mysql_query("select * from ldap"); Adding my table name prefix almost fixes things, now the given name and sn are pulled in, doing a var_dump on $login_check shows this, but only the sn is saved in the database. I'm guessing the solution must be some other query also not using the table prefix. Anyways, I'm off home for the day. This can wait until the morning ;-) Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 14:55 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn No, just in login_library and index.php (when it comes to account creation). Silly question - try entering the wrong password - see what happens. On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote: Hi, I've updated "givenname" to "givenName" in the following functions (within login_library.php)... * get_ldap_array() * get_user_ldap() * authenticate_to_host() The "givenName" and "sn" attributes definitely exists in the Active Directory and I am able to access them via my own PHP applications, but for some reason Xerte seems to be ignoring them. No errors shown in the Xerte logs or the apache error log. Another thing I have tried after changing these is to remove the user account from the Xerte database and try logging in again, but to no avail. The user account can log in, but no other data is saved in the row, just the user id. Am I looking in the right place (login_library.php) or are there other places within the Xerte code base that also check LDAP? Thanks again, Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 12:18 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn Hello, >From recollection the code does two LDAP checks. Maybe the second one fails? I would be surprised givenname isn't in the database in sitedetails or ldap? Pat On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote: Hi, I've set Xerte up on a Linux web server, everything works perfectly apart from one aspect. When a user logs in their name is not pulled into the Xerte users database via LDAP. I have checked through the code and found login_library.php to contain "givenname", so I changed this to "givenName". However this still does not pull in the name. We definitely have values stores in those attributes within the Active Directory. Am I missing something? I can't find any solution unfortunately, I realise this isn't a huge problem as Xerte still works regardless, but users are unable to search for each other and share/hand over projects. Any help/advice is much appreciated. Many thanks. Dale Davies - VLE / E-Learning Developer Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. Web: www.liv-coll.ac.uk Tel: 0151 252 3238 ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. Error! Filename not specified. ________________________________ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. ________________________________ Please consider the environment before printing this email. ________________________________ This email and any attachments are confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of Liverpool Community College or associated companies. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient. The message content of in-coming emails is automatically scanned to identify Spam and viruses otherwise Liverpool Community College does not actively monitor content. However, sometimes it will be necessary for Liverpool Community College to access business communications during staff absence. Liverpool Community College has taken steps to ensure that this email and any attachments are virus free. However, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by Liverpool Community College for any loss or damage arising in any way from its use. [http://www.liv-coll.ac.uk/images/Ofsted1.jpg] ________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Jul 28 11:21:43 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 28 Jul 2011 11:21:43 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60726A2@EXCHANGE1.ad.nottingham.ac.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60726A2@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: This is a good change $ldap_hosts = mysql_query("select * from ldap"); To... ? $ldap_hosts = mysql_query("select * from " . $xerte_toolkits_site->database_table_prefix . "ldap"); On Thu, Jul 28, 2011 at 11:16 AM, Julian Tenney wrote: > Not being a numpty here, but what EXACTLY is the fix? > > > > I don?t know what this means, so unsure what to do: > > Not sure the .htaccess change shouldn't be "dollared" - the install mods the > default htaccess so don't add that line in by default > > You want me to do this? > > ????????? $ldap_hosts = mysql_query("select * from ldap"); > > > > To... > > > > ????????? $ldap_hosts = mysql_query("select * from " . > $xerte_toolkits_site->database_table_prefix . "ldap"); > > Can you reply slowly in words I?ve seen before please? > > > > ;-) > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 28 July 2011 10:52 > > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > the top line is the fix (thank you). > > > > Not sure the .htaccess change shouldn't be "dollared" - the install mods the > default htaccess so don't add that line in by default > > On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale > wrote: > > Hi Julian, > > > > Two things I have found so far.? The first fixes a bug where the users first > name and surname were not being saved into the database when logging in. > The second fixes a bug where trying to update workspace properties returned > a 404. > > > > In login_library.php at about line 537 change.... > > > > ????????? $ldap_hosts = mysql_query("select * from ldap"); > > > > To... > > > > ????????? $ldap_hosts = mysql_query("select * from " . > $xerte_toolkits_site->database_table_prefix . "ldap"); > > > > > > In the .htaccess file I added the following line... > > > > ????????? rewriteRule ^workspaceproperties/?$ /xerte/workspaceproperties.php > > > > > > Hope this helps J > > > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney > Sent: 28 July 2011 09:31 > > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > What exactly do I need to do? > > > > You can commit a change?? > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 17:08 > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > Ah crap. > > > > Julian can you paste in the table prefix php into that line? > > On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale > wrote: > > I read about the password thing elsewhere on the mailing list, I seem to get > the behaviour one would expect.? As in, the only way anyone can log in is by > using only the correct username and correct password, a blank or incorrect > password will not allow a login. > > > > I?ve made some progress on my problem, it seems that around line 537 of > login_library.php the following mysql query does not use the user defined > table name prefix... > > > > $ldap_hosts = mysql_query("select * from ldap"); > > > > Adding my table name prefix almost fixes things, now the given name and sn > are pulled in, doing a var_dump on $login_check shows this, but only the sn > is saved in the database. > > > > I?m guessing the solution must be some other query also not using the table > prefix. > > > > Anyways, I?m off home for the day.? This can wait until the morning ;-) > > > > > > Thanks again, > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 14:55 > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > No, just in login_library and index.php (when it comes to account creation). > > > > Silly question - try entering the wrong password - see what happens. > > On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote: > > Hi, > > > > I?ve updated ?givenname? to ?givenName? in the following functions (within > login_library.php)... > > > > ????????? get_ldap_array() > > ????????? get_user_ldap() > > ????????? authenticate_to_host() > > > > The ?givenName? and ?sn? attributes definitely exists in the Active > Directory and I am able to access them via my own PHP applications, but for > some reason Xerte seems to be ignoring them.? No errors shown in the Xerte > logs or the apache error log. > > > > Another thing I have tried after changing these is to remove the user > account from the Xerte database and try logging in again, but to no avail. > The user account can log in, but no other data is saved in the row, just the > user id. > > > > Am I looking in the right place (login_library.php) or are there other > places within the Xerte code base that also check LDAP? > > > > Thanks again, > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 12:18 > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > Hello, > > > > From recollection the code does two LDAP checks. Maybe the second one fails? > > > > I would be surprised givenname isn't in the database in sitedetails or ldap? > > > > Pat > > On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote: > > Hi, > > > > I?ve set Xerte up on a Linux web server, everything works perfectly apart > from one aspect.? When a user logs in their name is not pulled into the > Xerte users database via LDAP. > > > > I have checked through the code and found login_library.php to contain > ?givenname?, so I changed this to ?givenName?.? However this still does not > pull in the name.? We definitely have values stores in those attributes > within the Active Directory. > > > > Am I missing something?? I can?t find any solution unfortunately, I realise > this isn?t a huge problem as Xerte still works regardless, but users are > unable to search for each other and share/hand over projects. > > > > Any help/advice is much appreciated.? Many thanks. > > > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > > Error! Filename not specified. > > ________________________________ > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > Error! Filename not specified. > > ________________________________ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > Error! Filename not specified. > > ________________________________ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > Error! Filename not specified. > > ________________________________ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 28 11:44:23 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 28 Jul 2011 11:44:23 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60726A2@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D60726D3@EXCHANGE1.ad.nottingham.ac.uk> ;-) I got it. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 28 July 2011 11:22 To: Xerte discussion list Subject: [Xerte] Re: LDAP givenName & sn This is a good change $ldap_hosts = mysql_query("select * from ldap"); To... ? $ldap_hosts = mysql_query("select * from " . $xerte_toolkits_site->database_table_prefix . "ldap"); On Thu, Jul 28, 2011 at 11:16 AM, Julian Tenney wrote: > Not being a numpty here, but what EXACTLY is the fix? > > > > I don't know what this means, so unsure what to do: > > Not sure the .htaccess change shouldn't be "dollared" - the install mods the > default htaccess so don't add that line in by default > > You want me to do this? > > ? $ldap_hosts = mysql_query("select * from ldap"); > > > > To... > > > > ? $ldap_hosts = mysql_query("select * from " . > $xerte_toolkits_site->database_table_prefix . "ldap"); > > Can you reply slowly in words I've seen before please... > > > > ;-) > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 28 July 2011 10:52 > > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > the top line is the fix (thank you). > > > > Not sure the .htaccess change shouldn't be "dollared" - the install mods the > default htaccess so don't add that line in by default > > On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale > wrote: > > Hi Julian, > > > > Two things I have found so far. The first fixes a bug where the users first > name and surname were not being saved into the database when logging in. > The second fixes a bug where trying to update workspace properties returned > a 404. > > > > In login_library.php at about line 537 change.... > > > > ? $ldap_hosts = mysql_query("select * from ldap"); > > > > To... > > > > ? $ldap_hosts = mysql_query("select * from " . > $xerte_toolkits_site->database_table_prefix . "ldap"); > > > > > > In the .htaccess file I added the following line... > > > > ? rewriteRule ^workspaceproperties/?$ /xerte/workspaceproperties.php > > > > > > Hope this helps J > > > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney > Sent: 28 July 2011 09:31 > > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > What exactly do I need to do? > > > > You can commit a change...? > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 17:08 > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > Ah crap. > > > > Julian can you paste in the table prefix php into that line? > > On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale > wrote: > > I read about the password thing elsewhere on the mailing list, I seem to get > the behaviour one would expect. As in, the only way anyone can log in is by > using only the correct username and correct password, a blank or incorrect > password will not allow a login. > > > > I've made some progress on my problem, it seems that around line 537 of > login_library.php the following mysql query does not use the user defined > table name prefix... > > > > $ldap_hosts = mysql_query("select * from ldap"); > > > > Adding my table name prefix almost fixes things, now the given name and sn > are pulled in, doing a var_dump on $login_check shows this, but only the sn > is saved in the database. > > > > I'm guessing the solution must be some other query also not using the table > prefix. > > > > Anyways, I'm off home for the day. This can wait until the morning ;-) > > > > > > Thanks again, > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 14:55 > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > No, just in login_library and index.php (when it comes to account creation). > > > > Silly question - try entering the wrong password - see what happens. > > On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote: > > Hi, > > > > I've updated "givenname" to "givenName" in the following functions (within > login_library.php)... > > > > ? get_ldap_array() > > ? get_user_ldap() > > ? authenticate_to_host() > > > > The "givenName" and "sn" attributes definitely exists in the Active > Directory and I am able to access them via my own PHP applications, but for > some reason Xerte seems to be ignoring them. No errors shown in the Xerte > logs or the apache error log. > > > > Another thing I have tried after changing these is to remove the user > account from the Xerte database and try logging in again, but to no avail. > The user account can log in, but no other data is saved in the row, just the > user id. > > > > Am I looking in the right place (login_library.php) or are there other > places within the Xerte code base that also check LDAP? > > > > Thanks again, > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 12:18 > To: Xerte discussion list > Subject: [Xerte] Re: LDAP givenName & sn > > > > Hello, > > > > From recollection the code does two LDAP checks. Maybe the second one fails? > > > > I would be surprised givenname isn't in the database in sitedetails or ldap? > > > > Pat > > On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote: > > Hi, > > > > I've set Xerte up on a Linux web server, everything works perfectly apart > from one aspect. When a user logs in their name is not pulled into the > Xerte users database via LDAP. > > > > I have checked through the code and found login_library.php to contain > "givenname", so I changed this to "givenName". However this still does not > pull in the name. We definitely have values stores in those attributes > within the Active Directory. > > > > Am I missing something? I can't find any solution unfortunately, I realise > this isn't a huge problem as Xerte still works regardless, but users are > unable to search for each other and share/hand over projects. > > > > Any help/advice is much appreciated. Many thanks. > > > > > > Dale Davies - VLE / E-Learning Developer > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > > Web: www.liv-coll.ac.uk > > Tel: 0151 252 3238 > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > > Error! Filename not specified. > > ________________________________ > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > Error! Filename not specified. > > ________________________________ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > Error! Filename not specified. > > ________________________________ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > ________________________________ > > Please consider the environment before printing this email. > > ________________________________ > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to identify > Spam and viruses otherwise Liverpool Community College does not actively > monitor content. However, sometimes it will be necessary for Liverpool > Community College to access business communications during staff absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > Error! Filename not specified. > > ________________________________ > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From patrick.lockley at googlemail.com Thu Jul 28 11:45:11 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 28 Jul 2011 11:45:11 +0100 Subject: [Xerte] Re: LDAP givenName & sn In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60726D1@EXCHANGE1.ad.nottingham.ac.uk> References: <8ED79B44451AC24DAABB22455BFE5028071322F1@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F1619@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F16A4@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725A3@EXCHANGE1.ad.nottingham.ac.uk> <8ED79B44451AC24DAABB22455BFE5028071F1786@goliath.liv-bus.co.uk> <8ED79B44451AC24DAABB22455BFE5028071F17AC@goliath.liv-bus.co.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60726D1@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: dollared as in I thought I'd used $ as the wildcard, but it was an * instead. On Thu, Jul 28, 2011 at 11:43 AM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > OK, thanks. They are in the svn now, with some other new tuff that needs > tidying up: I?ll make a new zip when I get back from my hols, ?cos I haven?t > got a lot of time today.**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Davies, Dale > *Sent:* 28 July 2011 11:16 > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > ** ** > > Yes, the first line it the fix for my actual problem. The second is > another I found along the way, not sure what you mean by ?dollared? though > unfortunately.**** > > ** ** > > Seems the workspaceproperties entry is not added to the .htaccess file by > default, so when clicking on the ?Properties? button to edit workspace > properties a URL is opened like ?/workspaceproperties? in a new window, > however this is not rewritten to ?workspaceproperties.php? so a 404 is > returned.**** > > ** ** > > Adding that line to .htaccess file fixes the issue so the URL is actually > rewritten.**** > > ** ** > > * * > > *Dale Davies - VLE / E-Learning Developer* > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > > *Sent:* 28 July 2011 10:52 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > ** ** > > the top line is the fix (thank you).**** > > ** ** > > Not sure the .htaccess change shouldn't be "dollared" - the install mods > the default htaccess so don't add that line in by default**** > > On Thu, Jul 28, 2011 at 10:38 AM, Davies, Dale > wrote:**** > > Hi Julian,**** > > **** > > Two things I have found so far. The first fixes a bug where the users > first name and surname were not being saved into the database when logging > in. The second fixes a bug where trying to update workspace properties > returned a 404.**** > > **** > > In login_library.php at about line 537 change....**** > > **** > > ? *$ldap_hosts = mysql_query("select * from ldap");***** > > **** > > To...**** > > **** > > ? *$ldap_hosts = mysql_query("select * from " . > $xerte_toolkits_site->database_table_prefix . "ldap"); ***** > > **** > > **** > > In the .htaccess file I added the following line...**** > > **** > > ? *rewriteRule ^workspaceproperties/?$ > /xerte/workspaceproperties.php***** > > **** > > **** > > Hope this helps J **** > > **** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Julian Tenney > *Sent:* 28 July 2011 09:31**** > > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > **** > > What exactly do I need to do?**** > > **** > > You can commit a change??**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 17:08 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > **** > > Ah crap.**** > > **** > > Julian can you paste in the table prefix php into that line?**** > > On Wed, Jul 27, 2011 at 4:31 PM, Davies, Dale > wrote:**** > > I read about the password thing elsewhere on the mailing list, I seem to > get the behaviour one would expect. As in, the only way anyone can log in > is by using only the correct username and correct password, a blank or > incorrect password will not allow a login.**** > > **** > > I?ve made some progress on my problem, it seems that around line 537 of > login_library.php the following mysql query does not use the user defined > table name prefix...**** > > **** > > $ldap_hosts = mysql_query("select * from ldap");**** > > **** > > Adding my table name prefix almost fixes things, now the given name and sn > are pulled in, doing a var_dump on $login_check shows this, but only the sn > is saved in the database.**** > > **** > > I?m guessing the solution must be some other query also not using the table > prefix.**** > > **** > > Anyways, I?m off home for the day. This can wait until the morning ;-)*** > * > > **** > > **** > > Thanks again,**** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 14:55 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > **** > > No, just in login_library and index.php (when it comes to account > creation).**** > > **** > > Silly question - try entering the wrong password - see what happens.**** > > On Wed, Jul 27, 2011 at 2:07 PM, Davies, Dale > wrote:**** > > Hi,**** > > **** > > I?ve updated ?givenname? to ?givenName? in the following functions (within > login_library.php)...**** > > **** > > ? get_ldap_array()**** > > ? get_user_ldap()**** > > ? authenticate_to_host()**** > > **** > > The ?givenName? and ?sn? attributes definitely exists in the Active > Directory and I am able to access them via my own PHP applications, but for > some reason Xerte seems to be ignoring them. No errors shown in the Xerte > logs or the apache error log.**** > > **** > > Another thing I have tried after changing these is to remove the user > account from the Xerte database and try logging in again, but to no avail. > The user account can log in, but no other data is saved in the row, just the > user id.**** > > **** > > Am I looking in the right place (login_library.php) or are there other > places within the Xerte code base that also check LDAP?**** > > **** > > Thanks again,**** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 27 July 2011 12:18 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: LDAP givenName & sn**** > > **** > > Hello,**** > > **** > > From recollection the code does two LDAP checks. Maybe the second one > fails?**** > > **** > > I would be surprised givenname isn't in the database in sitedetails or > ldap?**** > > **** > > Pat**** > > On Wed, Jul 27, 2011 at 11:45 AM, Davies, Dale > wrote:**** > > Hi,**** > > **** > > I?ve set Xerte up on a Linux web server, everything works perfectly apart > from one aspect. When a user logs in their name is not pulled into the > Xerte users database via LDAP. **** > > **** > > I have checked through the code and found login_library.php to contain > ?givenname?, so I changed this to ?givenName?. However this still does not > pull in the name. We definitely have values stores in those attributes > within the Active Directory.**** > > **** > > Am I missing something? I can?t find any solution unfortunately, I realise > this isn?t a huge problem as Xerte still works regardless, but users are > unable to search for each other and share/hand over projects.**** > > **** > > Any help/advice is much appreciated. Many thanks.**** > > **** > > * ***** > > *Dale Davies - VLE / E-Learning Developer***** > > Liverpool Community College, CIS Dept, Bankfield Road, Liverpool, L13 0BQ. > **** > > *Web:* www.liv-coll.ac.uk**** > > *Tel:* 0151 252 3238**** > > **** > > **** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. **** > > *Error! Filename not specified.***** > ------------------------------ > > **** > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. **** > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > **** > > **** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > *Error! Filename not specified.***** > ------------------------------ > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > **** > > **** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > *Error! Filename not specified.***** > ------------------------------ > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > **** > > ** ** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > *Error! Filename not specified.***** > ------------------------------ > > ** ** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.* > *** > > ** ** > > ** ** > ------------------------------ > > > Please consider the environment before printing this email.**** > ------------------------------ > > > This email and any attachments are confidential and intended solely for the > use of the individual to whom it is addressed. Any views or opinions > presented are solely those of the author and do not necessarily represent > those of Liverpool Community College or associated companies. You must not, > directly or indirectly, use, disclose, distribute, print, or copy any part > of this message if you are not the intended recipient. > > The message content of in-coming emails is automatically scanned to > identify Spam and viruses otherwise Liverpool Community College does not > actively monitor content. However, sometimes it will be necessary for > Liverpool Community College to access business communications during staff > absence. > > Liverpool Community College has taken steps to ensure that this email and > any attachments are virus free. However, it is the responsibility of the > recipient to ensure that it is virus free and no responsibility is accepted > by Liverpool Community College for any loss or damage arising in any way > from its use. > **** > ------------------------------ > > ** ** > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 28 11:56:22 2011 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 28 Jul 2011 11:56:22 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60726BA@EXCHANGE1.ad.nottingham.ac.uk> References: <1311788737.4e304ec14651f@mail.inbox.lv> <12C67A1EEC419342AF5E59DA31562C3F05D60726BA@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <00ca01cc4d14$ff1458f0$fd3d0ad0$@co.uk> I always encourage people to include narration and/or sound wherever relevant but mostly for the teaching and learning benefits of doing that as well as the usability and accessibility benefits. However I have to also question the reason for disabling the TTS checkbox.... 1. If it causes support requests surely that's a good thing rather than a bad thing 2. It doesn't really spoil the interface and if it helps just one user what harm does leaving it in do? 3. Audio narration doesn't really help someone who is partially sighted or blind to navigate the object and or hear the controls and tooltips etc just as TTS doesn't replace the personality and intonation etc that comes from including audio content. So one doesn't really replace the other. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 28 July 2011 11:28 To: Xerte discussion list Subject: [Xerte] Re: Text to Speech - disable in IE It well avoided if you think about accessibility being primarily about usability, and about making resources as usuable as possible for as many people as possible. -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 28 July 2011 11:12 To: Xerte discussion list Subject: [Xerte] Re: Text to Speech - disable in IE That's a perfectly fair point but I've worked with international accessibility projects and it's a can of worms that is best left unopened. It can lead to logical but unethical conclusions like "Somalia has poor accessibility legislation and no enforcement so blind Somalians can be safely ignored when designing learning objects..." - a route we really don't want to go down! A -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 27 July 2011 19:27 To: Xerte discussion list Subject: [Xerte] Re: Text to Speech - disable in IE I think Janis is also Latvian? and so may also have different laws? Is there a list anywhere of compliances / best practice for different legislations? Might help with internationalisation? On Wed, Jul 27, 2011 at 7:09 PM, Alistair McNaught wrote: > Hi Janis > Thanks for clarification. That sounds like a defensible decision and > although there's no obligation for you to justify it to me (!) I'm grateful > you took the time to explain, not least because accessibility is one of the > selling points of Xerte and it's good to keep the topic alive on the list. > All the best > Alistair > > > Sent from my phone: > Alistair McNaught > 07870567659 > > On 27 Jul 2011, at 18:47, "Janis Ozols" wrote: > > Thank you, Julian. It is done know. Sorry, I couldn't locate it in the > archive. > Alistair McNaught, I decided to disable Text to Speech option, because we > have?recorded our own text narration for?important text objects and embedded > it into the project,?and I think it will be more accessible in the end as > our test groups reported they couldn't enable Xerte Text to Speech to?work > even with tutorials on?how to enable ActiveX in IE properties. As well as > many users just don't have an?administrator access to computers in public > places to make it work. + own recorded narration will work in all browsers. > So that was the reason to dissable Xerte's text to speech and record/embedd > our own narration. > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ??Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. ? Please do not > use, copy or disclose the information contained in this message or in any > attachment. ?Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From Alistair.McNaught at HEAcademy.ac.uk Thu Jul 28 12:32:43 2011 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Thu, 28 Jul 2011 12:32:43 +0100 Subject: [Xerte] Re: Text to Speech - disable in IE In-Reply-To: References: <1311788737.4e304ec14651f@mail.inbox.lv> Message-ID: Surprisingly perhaps our awareness, legislation and support is ahead of most other European countries. I've worked on international computer camps for blind people for the last couple of summers and most of the coordinators from other countries are envious of the resources available to support people teaching disabled learners in the UK. It's not that we don't have things to learn, nor have we any cause to be smug but at least we're going in the right direction and have a better support from funders and we would do in many other countries. A -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 28 July 2011 11:21 To: Xerte discussion list Subject: [Xerte] Re: Text to Speech - disable in IE My argument was perhaps "their" laws might be tougher than hours (without getting all post colonial) On Thu, Jul 28, 2011 at 11:12 AM, Alistair McNaught wrote: > That's a perfectly fair point but I've worked with international accessibility projects and it's a can of worms that is best left unopened. > It can lead to logical but unethical conclusions like "Somalia has poor accessibility legislation and no enforcement so blind Somalians can be safely ignored when designing learning objects..." - a route we really don't want to go down! > > > A > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: 27 July 2011 19:27 > To: Xerte discussion list > Subject: [Xerte] Re: Text to Speech - disable in IE > > I think Janis is also Latvian? and so may also have different laws? > > Is there a list anywhere of compliances / best practice for different > legislations? > > Might help with internationalisation? > > On Wed, Jul 27, 2011 at 7:09 PM, Alistair McNaught > wrote: >> Hi Janis >> Thanks for clarification. That sounds like a defensible decision and >> although there's no obligation for you to justify it to me (!) I'm grateful >> you took the time to explain, not least because accessibility is one of the >> selling points of Xerte and it's good to keep the topic alive on the list. >> All the best >> Alistair >> >> >> Sent from my phone: >> Alistair McNaught >> 07870567659 >> >> On 27 Jul 2011, at 18:47, "Janis Ozols" wrote: >> >> Thank you, Julian. It is done know. Sorry, I couldn't locate it in the >> archive. >> Alistair McNaught, I decided to disable Text to Speech option, because we >> have?recorded our own text narration for?important text objects and embedded >> it into the project,?and I think it will be more accessible in the end as >> our test groups reported they couldn't enable Xerte Text to Speech to?work >> even with tutorials on?how to enable ActiveX in IE properties. As well as >> many users just don't have an?administrator access to computers in public >> places to make it work. + own recorded narration will work in all browsers. >> So that was the reason to dissable Xerte's text to speech and record/embedd >> our own narration. >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ??Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. ? Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. ?Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte From johnathan.kemp at ntlworld.com Thu Jul 28 15:34:00 2011 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Thu, 28 Jul 2011 15:34:00 +0100 Subject: [Xerte] Re: Scoring in Xerte In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F05D60725F8@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk> <231D667C-F6E2-4ABF-8969-1C787A3A68B1@techdis.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F05D60725F8@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Actually its my alto sax that makes the most noise - getting the embrousure right is the difficult bit. The boxes in your links look like they might be diatonic. I quite like the french musette sound, but some of the classical music played by some of the top russians can be stunning. http://www.youtube.com/watch?v=EFNNPZsO7-Q&feature=player_detailpage I can't imagine the hours he must have put in over the years to achieve that level of skill. On 28 July 2011 10:06, Julian Tenney wrote: > I love the sound of the cajun accordion: can?t imagine it?s particularly > quiet thing to learn to play though, which was the trouble I had with a > fiddle. > > > > http://www.youtube.com/watch?v=tPqyFL-bYVQ > > > > http://www.youtube.com/watch?v=NBwaWa0ITAU > > > > > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* 28 July 2011 09:49 > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Scoring in Xerte > > > > I am learning to play the accordion, so it's early days yet, particularly > since I am in the process of changing over from piano to chromatic button C > system. > > On 27 July 2011 17:13, Alistair McNaught < > Alistair.McNaught at heacademy.ac.uk> wrote: > > Johnathan, bring the accordion to the Xerte Unconference.. We need a Xerte > Jam Session.. > > Sent from my phone: > > Alistair McNaught > > 07870567659 > > > > > On 27 Jul 2011, at 16:51, "Kemp Johnathan" > wrote: > > If you can't get it working post back and I will try and help. > > > > I am not familiar with interacting between swfs and Xerte but once you have > passed the data to Xerte it should be simple enough to display it in a > wizard based page. > > > > No mobile phones - wonderful > > Mandolin - getting even better > > > > But no accordion ! > > > > C'est terrible > > > > Johnathan > > > > On 27 July 2011 12:54, Deborah Delin wrote: > > Sounds heavenly - for a limited period of course! > > > > Thanks so much for the code. Sounds to easy to be true. I'll try it when I > pluck up the courage. :-) > > > > Deborah > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Thu Jul 28 16:42:04 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 28 Jul 2011 11:42:04 -0400 Subject: [Xerte] flv oddness In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F05D6072161@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072226@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072258@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60722D7@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072313@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D6072326@EXCHANGE1.ad.nottingham.ac.uk>, , , <231D667C-F6E2-4ABF-8969-1C787A3A68B1@techdis.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F05D60725F8@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: Any reason for an flv loaded into a movie icon to ignore the h and w settings? Same movie, different compression settings (and maybe other things, I didn't do the second compression). Test: New file, nothing but a movie icon. Original avi size: 360x480 First compression to .flv format. Linked to movie icon h and w set to 180x240 Obeys settings. Second version compressed with higher compression settings. Does not obey settings, displays at 360x480. ?? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Fri Jul 29 19:22:56 2011 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 29 Jul 2011 19:22:56 +0100 Subject: [Xerte] See you in a firtnight Message-ID: <12C67A1EEC419342AF5E59DA31562C3F05D63E537F@EXCHANGE1.ad.nottingham.ac.uk> An HTML attachment was scrubbed... URL: From rr5247 at bris.ac.uk Sat Jul 30 22:20:59 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sat, 30 Jul 2011 22:20:59 +0100 Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template Message-ID: Apologies if this is a very stupid problem. I have very little computer experience. I've made a tutorial using the 'Media Interactions' template. It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: 'MDM Zinc v2 Error Handler' 'Zinc has encountered the following error: Cannot create file' Any help massively appreciated. My deadline for submission is Monday Thanks Ruth -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Sun Jul 31 03:13:56 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sat, 30 Jul 2011 22:13:56 -0400 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: Message-ID: Generally, any error message like that points to a permissions error. e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. Can you give more details, what you mean by open the shared version. It can it be open, but fails when someone else tries to open it concurrently? That sort of thing. Dave Date: Sat, 30 Jul 2011 22:20:59 +0100 From: rr5247 at bris.ac.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template Apologies if this is a very stupid problem. I have very little computer experience. I've made a tutorial using the 'Media Interactions' template. It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: 'MDM Zinc v2 Error Handler''Zinc has encountered the following error: Cannot create file' Any help massively appreciated. My deadline for submission is Monday ThanksRuth This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 franck.petit at ac-reunion.fr Sun Jul 31 05:03:21 2011 From: franck.petit at ac-reunion.fr (Franck Petit) Date: Sun, 31 Jul 2011 08:03:21 +0400 Subject: [Xerte] could you provide an updated XOT zip please? In-Reply-To: <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk> References: <826FA59EEA0A914FA34AECF56FD831A80BE09A9E@VUIEXCHA.ad.nottingham.ac.uk> <00b501cb54d4$c278aec0$476a0c40$@co.uk><826FA59EEA0A914FA34AECF56FD831A80BE4F193@VUIEXCHA.ad.nottingham.ac.uk> <00d701cb54d8$71e9adc0$55bd0940$@co.uk><826FA59EEA0A914FA34AECF56FD831A80BE4F214@VUIEXCHA.ad.nottingham.ac.uk> <012201cb54e9$deaffde0$9c0ff9a0$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk> Message-ID: Hi, I have this problem as admin on a fresh install of XOT 1.6: after login a ?the feature is for administrators only? is displayed. I have checked XOT on google code but found it too difficult to use SVN (I really tried) I noticed many changes were made since the last release. Could someone please send a link to an updated zip of XOT? It would be great if there was a weekly release as this is the case with moodle. Cheers, Franck bug.jpg De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Patrick Lockley Envoy? : mercredi 15 septembre 2010 19:37 ? : Xerte discussion list Objet : RE: [Xerte] XOT Peer review Stop it with the puppy dog eyes! I would do it if I had the time. I am sure Dave could do it in about 5 minutes! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 16:23 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review Cheers will add to todo list. But just gives me more pages to remember and exclude from future updates. :-( From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 14:20 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review Ok here is what you need to do. Find the php code for peer in website_code/php/properties/ Edit it to have a second textbox for text entry Change the insert code to add the email then some delimiter, suggest - *** if both variables are sent Then on the peer review submit page, peer.php in the root folder, add a php split on the delimiter if found. Easy peasy From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 14:18 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review Pat I'm not sure this is used much but yes perhaps the author submits which email replies go to. I can think of advantages with that too e.g. author sends link but wants/needs feedback to go to a colleague. Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 13:56 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review What?s twitter? 3) It won?t. But it works here. Well until we have to fix it. So, you want Peer review to work across multiple email domains, or for people to submit an address to which to send peer review too? Pat From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 13:52 To: 'Xerte discussion list' Subject: [Xerte] XOT Peer review Hi Pat I'm guessing it's you that has been replying to this on Twitter and the char limit obviously makes it difficult so thought it better to reply here... Can you explain exactly how the peer review system identifies the email address? If I understand correctly this should work something like this... 1. Author enables peer review and sends the link by email to a colleague. Good to know this works without needing to make the LO public. 2. The colleague reviews the LO and types and submits feedback via the form on the review page. 3. I think you're saying details added to site details then appends the username to the sitedetails info to determine the email to send to. On the sandpit or other installations where users don't use the same email domain how would this work? Even with an installation used by staff within one organisation it will not always follow that their username and email format are always consistent. The peer review system is still useful but with installations like the sandpit probably needs a message prompting to send feedback via email rather than the form - if my assumptions are correct? 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 12720 bytes Desc: not available URL: From rr5247 at bris.ac.uk Sun Jul 31 07:33:31 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sun, 31 Jul 2011 07:33:31 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: Message-ID: Thanks for the reply Yep, it says 'Zinc cannot create file'. Here's what I can see: [image: image.png] This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: [image: image.png] On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. Hope that's clearer Thanks Ruth On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: > > > Generally, any error message like that points to a permissions error. > e.g. the Zinc wrapper that interacts with the file system is trying to > create a file somewhere (maybe a temp file or batch file) and does not have > permissions to the folder in question to do so. > > > I'm not so well versed on Xerte Online Toollkits, so I don't know > where/what files would be being denied. > Can you give more details, what you mean by open the shared version. > It can it be open, but fails when someone else tries to open it > concurrently? > That sort of thing. > > > Dave > > > > > > ------------------------------ > Date: Sat, 30 Jul 2011 22:20:59 +0100 > From: rr5247 at bris.ac.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Issues sharing a tutorial made on Media Interactions > template > > > Apologies if this is a very stupid problem. I have very little computer > experience. > > I've made a tutorial using the 'Media Interactions' template. > > It is saved as an .rlt file. I am trying to share it. It uploads fine to > both a fluff server and an external hard drive, but when I try to open the > shared version I get this message: > > 'MDM Zinc v2 Error Handler' > 'Zinc has encountered the following error: Cannot create file' > > Any help massively appreciated. My deadline for submission is Monday > > Thanks > Ruth > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: image.png Type: image/png Size: 179962 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 200329 bytes Desc: not available URL: From patrick.lockley at googlemail.com Sun Jul 31 08:22:04 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 08:22:04 +0100 Subject: [Xerte] Re: could you provide an updated XOT zip please? In-Reply-To: References: <826FA59EEA0A914FA34AECF56FD831A80BE09A9E@VUIEXCHA.ad.nottingham.ac.uk> <00b501cb54d4$c278aec0$476a0c40$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F193@VUIEXCHA.ad.nottingham.ac.uk> <00d701cb54d8$71e9adc0$55bd0940$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F214@VUIEXCHA.ad.nottingham.ac.uk> <012201cb54e9$deaffde0$9c0ff9a0$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk> Message-ID: <8AC7170D-C5E1-4D49-9A4C-B8D80C0F6830@googlemail.com> The svn is the most up to date code, I doubt much has changed in the management side since the last zip. I would imagine the management problem is because the session of a user is still valid for your pc. Try logging into management without having logged into toolkitts first. The zip doesn't need updating that often as it's usually the models that change to add in new features, not fix bugs. On 31 Jul 2011, at 05:03, Franck Petit wrote: > Hi, > > I have this problem as admin on a fresh install of XOT 1.6: after login a ?the feature is for administrators only? is displayed. I have checked XOT on google code but found it too difficult to use SVN (I really tried) I noticed many changes were made since the last release. Could someone please send a link to an updated zip of XOT? It would be great if there was a weekly release as this is the case with moodle. > > Cheers, Franck > > > > > > > > De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Patrick Lockley > Envoy? : mercredi 15 septembre 2010 19:37 > ? : Xerte discussion list > Objet : RE: [Xerte] XOT Peer review > > > > Stop it with the puppy dog eyes! I would do it if I had the time. > > > > I am sure Dave could do it in about 5 minutes! > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 16:23 > To: 'Xerte discussion list' > Subject: RE: [Xerte] XOT Peer review > > > > Cheers will add to todo list. > > But just gives me more pages to remember and exclude from future updates. :-( > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley > Sent: 15 September 2010 14:20 > To: Xerte discussion list > Subject: RE: [Xerte] XOT Peer review > > > > Ok here is what you need to do. > > > > Find the php code for peer in website_code/php/properties/ > > > > Edit it to have a second textbox for text entry > > > > Change the insert code to add the email then some delimiter, suggest - *** if both variables are sent > > > > Then on the peer review submit page, peer.php in the root folder, add a php split on the delimiter if found. > > > > Easy peasy > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 14:18 > To: 'Xerte discussion list' > Subject: RE: [Xerte] XOT Peer review > > > > Pat > > I'm not sure this is used much but yes perhaps the author submits which email replies go to. I can think of advantages with that too e.g. author sends link but wants/needs feedback to go to a colleague. > > > > Ron > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley > Sent: 15 September 2010 13:56 > To: Xerte discussion list > Subject: RE: [Xerte] XOT Peer review > > > > What?s twitter? > > > > 3) It won?t. But it works here. Well until we have to fix it. > > > > So, you want Peer review to work across multiple email domains, or for people to submit an address to which to send peer review too? > > > > Pat > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 13:52 > To: 'Xerte discussion list' > Subject: [Xerte] XOT Peer review > > > > Hi Pat > > I'm guessing it's you that has been replying to this on Twitter and the char limit obviously makes it difficult so thought it better to reply here... > > > > Can you explain exactly how the peer review system identifies the email address? If I understand correctly this should work something like this... > > > > 1. Author enables peer review and sends the link by email to a colleague. Good to know this works without needing to make the LO public. > > 2. The colleague reviews the LO and types and submits feedback via the form on the review page. > > 3. I think you're saying details added to site details then appends the username to the sitedetails info to determine the email to send to. On the sandpit or other installations where users don't use the same email domain how would this work? Even with an installation used by staff within one organisation it will not always follow that their username and email format are always consistent. > > > > The peer review system is still useful but with installations like the sandpit probably needs a message prompting to send feedback via email rather than the form - if my assumptions are correct? > > > > 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 mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 31 08:18:26 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 08:18:26 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: Message-ID: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> Hello, Sounds like write permissions on the flash drive. You also get zinc error messages if you only the rlt and rlo from inside a zip file. Pat On 31 Jul 2011, at 07:33, Ruth Russell wrote: > Thanks for the reply > > Yep, it says 'Zinc cannot create file'. > > Here's what I can see: > > > > > This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. > > When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. > > When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. > > I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: > > > > On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. > > Hope that's clearer > > Thanks > Ruth > > On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: > > > Generally, any error message like that points to a permissions error. > e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. > > > I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. > Can you give more details, what you mean by open the shared version. > It can it be open, but fails when someone else tries to open it concurrently? > That sort of thing. > > > Dave > > > > > > Date: Sat, 30 Jul 2011 22:20:59 +0100 > From: rr5247 at bris.ac.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template > > > Apologies if this is a very stupid problem. I have very little computer experience. > > I've made a tutorial using the 'Media Interactions' template. > > It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: > > 'MDM Zinc v2 Error Handler' > 'Zinc has encountered the following error: Cannot create file' > > Any help massively appreciated. My deadline for submission is Monday > > Thanks > Ruth > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 rr5247 at bris.ac.uk Sun Jul 31 08:48:15 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sun, 31 Jul 2011 08:48:15 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> Message-ID: Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. Ruth On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: > Hello, > > Sounds like write permissions on the flash drive. > > You also get zinc error messages if you only the rlt and rlo from inside a > zip file. > > Pat > > > On 31 Jul 2011, at 07:33, Ruth Russell wrote: > > Thanks for the reply > > Yep, it says 'Zinc cannot create file'. > > Here's what I can see: > > > > > This is the file location.I've been working from 'Ruth Russell eSSC' on my > desktop, and saving my changes. > > When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc > Error message. > > When I click on 'index' on my desktop, a google chrome page opens with a > fully interactive tutorial which works. However, if I save the 'index' file > to a flashdrive, then attempt to open it, I just get a blank page. > > I upload the zipped version of the whole 'Transcript Tutorial' file to a > fluff server, then downloaded the folder to check it worked: > > > > On this version, I cannot open any of the files, as it asks for a password. > However, the original versions can be opened without a password on my > desktop. > > Hope that's clearer > > Thanks > Ruth > > On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett < > d_b_burnett at hotmail.com> wrote: > >> >> >> Generally, any error message like that points to a permissions error. >> e.g. the Zinc wrapper that interacts with the file system is trying to >> create a file somewhere (maybe a temp file or batch file) and does not have >> permissions to the folder in question to do so. >> >> >> I'm not so well versed on Xerte Online Toollkits, so I don't know >> where/what files would be being denied. >> Can you give more details, what you mean by open the shared version. >> It can it be open, but fails when someone else tries to open it >> concurrently? >> That sort of thing. >> >> >> Dave >> >> >> >> >> >> ------------------------------ >> Date: Sat, 30 Jul 2011 22:20:59 +0100 >> From: rr5247 at bris.ac.uk >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Issues sharing a tutorial made on Media Interactions >> template >> >> >> Apologies if this is a very stupid problem. I have very little computer >> experience. >> >> I've made a tutorial using the 'Media Interactions' template. >> >> It is saved as an .rlt file. I am trying to share it. It uploads fine to >> both a fluff server and an external hard drive, but when I try to open the >> shared version I get this message: >> >> 'MDM Zinc v2 Error Handler' >> 'Zinc has encountered the following error: Cannot create file' >> >> Any help massively appreciated. My deadline for submission is Monday >> >> Thanks >> Ruth >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer system: you are advised to perform your own checks. Email >> communications with the University of Nottingham may be monitored as >> permitted by UK legislation. >> >> _______________________________________________ Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any >> attachment are intended solely for the addressee and may contain >> confidential information. If you have received this message in error, please >> send it back to me, and immediately delete it. Please do not use, copy or >> disclose the information contained in this message or in any attachment. Any >> views or opinions expressed by the author of this email do not necessarily >> reflect the views of the University of Nottingham. This message has been >> checked for viruses but the contents of an attachment may still contain >> software viruses which could damage your computer system: you are advised to >> perform your own checks. Email communications with the University of >> Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 31 09:37:51 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 09:37:51 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> Message-ID: Could you upload the file to a website? If not, just say please unzip and run index.html to access? I'd try the website approach though if you can On 31 Jul 2011, at 08:48, Ruth Russell wrote: > Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. > > Ruth > > On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: > Hello, > > Sounds like write permissions on the flash drive. > > You also get zinc error messages if you only the rlt and rlo from inside a zip file. > > Pat > > > On 31 Jul 2011, at 07:33, Ruth Russell wrote: > >> Thanks for the reply >> >> Yep, it says 'Zinc cannot create file'. >> >> Here's what I can see: >> >> >> >> >> This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. >> >> When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. >> >> When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. >> >> I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: >> >> >> >> On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. >> >> Hope that's clearer >> >> Thanks >> Ruth >> >> On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: >> >> >> Generally, any error message like that points to a permissions error. >> e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. >> >> >> I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. >> Can you give more details, what you mean by open the shared version. >> It can it be open, but fails when someone else tries to open it concurrently? >> That sort of thing. >> >> >> Dave >> >> >> >> >> >> Date: Sat, 30 Jul 2011 22:20:59 +0100 >> From: rr5247 at bris.ac.uk >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template >> >> >> Apologies if this is a very stupid problem. I have very little computer experience. >> >> I've made a tutorial using the 'Media Interactions' template. >> >> It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: >> >> 'MDM Zinc v2 Error Handler' >> 'Zinc has encountered the following error: Cannot create file' >> >> Any help massively appreciated. My deadline for submission is Monday >> >> Thanks >> Ruth >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 rr5247 at bris.ac.uk Sun Jul 31 09:55:37 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sun, 31 Jul 2011 09:55:37 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> Message-ID: OK, I'll give the website option a go. I think the second option I have already tried: I uploaded to a fluff server and tried to unzip and run index.html and it asked for a password.... Thanks so much for your help Ruth On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley wrote: > Could you upload the file to a website? If not, just say please unzip and > run index.html to access? > > I'd try the website approach though if you can > > > On 31 Jul 2011, at 08:48, Ruth Russell wrote: > > Thanks - what should I do to fix this? I just need to be able to send a > copy of the tutorial to my supervisor to be marked by tomorrow. > > Ruth > > On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> Hello, >> >> Sounds like write permissions on the flash drive. >> >> You also get zinc error messages if you only the rlt and rlo from inside a >> zip file. >> >> Pat >> >> >> On 31 Jul 2011, at 07:33, Ruth Russell < >> rr5247 at bris.ac.uk> wrote: >> >> Thanks for the reply >> >> Yep, it says 'Zinc cannot create file'. >> >> Here's what I can see: >> >> >> >> >> This is the file location.I've been working from 'Ruth Russell eSSC' on my >> desktop, and saving my changes. >> >> When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc >> Error message. >> >> When I click on 'index' on my desktop, a google chrome page opens with a >> fully interactive tutorial which works. However, if I save the 'index' file >> to a flashdrive, then attempt to open it, I just get a blank page. >> >> I upload the zipped version of the whole 'Transcript Tutorial' file to a >> fluff server, then downloaded the folder to check it worked: >> >> >> >> On this version, I cannot open any of the files, as it asks for a >> password. However, the original versions can be opened without a password on >> my desktop. >> >> Hope that's clearer >> >> Thanks >> Ruth >> >> On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett < >> d_b_burnett at hotmail.com> wrote: >> >>> >>> >>> Generally, any error message like that points to a permissions error. >>> e.g. the Zinc wrapper that interacts with the file system is trying to >>> create a file somewhere (maybe a temp file or batch file) and does not have >>> permissions to the folder in question to do so. >>> >>> >>> I'm not so well versed on Xerte Online Toollkits, so I don't know >>> where/what files would be being denied. >>> Can you give more details, what you mean by open the shared version. >>> It can it be open, but fails when someone else tries to open it >>> concurrently? >>> That sort of thing. >>> >>> >>> Dave >>> >>> >>> >>> >>> >>> ------------------------------ >>> Date: Sat, 30 Jul 2011 22:20:59 +0100 >>> From: rr5247 at bris.ac.uk >>> To: >>> xerte at lists.nottingham.ac.uk >>> Subject: [Xerte] Issues sharing a tutorial made on Media Interactions >>> template >>> >>> >>> Apologies if this is a very stupid problem. I have very little computer >>> experience. >>> >>> I've made a tutorial using the 'Media Interactions' template. >>> >>> It is saved as an .rlt file. I am trying to share it. It uploads fine to >>> both a fluff server and an external hard drive, but when I try to open the >>> shared version I get this message: >>> >>> 'MDM Zinc v2 Error Handler' >>> 'Zinc has encountered the following error: Cannot create file' >>> >>> Any help massively appreciated. My deadline for submission is Monday >>> >>> Thanks >>> Ruth >>> >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do not >>> use, copy or disclose the information contained in this message or in any >>> attachment. Any views or opinions expressed by the author of this email do >>> not necessarily reflect the views of the University of Nottingham. >>> This message has been checked for viruses but the contents of an >>> attachment may still contain software viruses which could damage your >>> computer system: you are advised to perform your own checks. Email >>> communications with the University of Nottingham may be monitored as >>> permitted by UK legislation. >>> >>> _______________________________________________ Xerte mailing list >>> >>> Xerte at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >>> any attachment are intended solely for the addressee and may contain >>> confidential information. If you have received this message in error, please >>> send it back to me, and immediately delete it. Please do not use, copy or >>> disclose the information contained in this message or in any attachment. Any >>> views or opinions expressed by the author of this email do not necessarily >>> reflect the views of the University of Nottingham. This message has been >>> checked for viruses but the contents of an attachment may still contain >>> software viruses which could damage your computer system: you are advised to >>> perform your own checks. Email communications with the University of >>> Nottingham may be monitored as permitted by UK legislation. >>> >>> _______________________________________________ >>> Xerte mailing list >>> >>> Xerte at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do not >>> use, copy or disclose the information contained in this message or in any >>> attachment. Any views or opinions expressed by the author of this email do >>> not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >>> attachment >>> may still contain software viruses which could damage your computer >>> system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 31 10:16:16 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 10:16:16 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> Message-ID: <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> What is a fluff server? The password is usually due to spaces in the filename I think? That should be in the archives if you search at the xerte homepage On 31 Jul 2011, at 09:55, Ruth Russell wrote: > OK, I'll give the website option a go. > > I think the second option I have already tried: I uploaded to a fluff server and tried to unzip and run index.html and it asked for a password.... > > Thanks so much for your help > > Ruth > > On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley wrote: > Could you upload the file to a website? If not, just say please unzip and run index.html to access? > > I'd try the website approach though if you can > > > On 31 Jul 2011, at 08:48, Ruth Russell wrote: > >> Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. >> >> Ruth >> >> On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: >> Hello, >> >> Sounds like write permissions on the flash drive. >> >> You also get zinc error messages if you only the rlt and rlo from inside a zip file. >> >> Pat >> >> >> On 31 Jul 2011, at 07:33, Ruth Russell wrote: >> >>> Thanks for the reply >>> >>> Yep, it says 'Zinc cannot create file'. >>> >>> Here's what I can see: >>> >>> >>> >>> >>> This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. >>> >>> When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. >>> >>> When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. >>> >>> I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: >>> >>> >>> >>> On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. >>> >>> Hope that's clearer >>> >>> Thanks >>> Ruth >>> >>> On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: >>> >>> >>> Generally, any error message like that points to a permissions error. >>> e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. >>> >>> >>> I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. >>> Can you give more details, what you mean by open the shared version. >>> It can it be open, but fails when someone else tries to open it concurrently? >>> That sort of thing. >>> >>> >>> Dave >>> >>> >>> >>> >>> >>> Date: Sat, 30 Jul 2011 22:20:59 +0100 >>> From: rr5247 at bris.ac.uk >>> To: xerte at lists.nottingham.ac.uk >>> Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template >>> >>> >>> Apologies if this is a very stupid problem. I have very little computer experience. >>> >>> I've made a tutorial using the 'Media Interactions' template. >>> >>> It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: >>> >>> 'MDM Zinc v2 Error Handler' >>> 'Zinc has encountered the following error: Cannot create file' >>> >>> Any help massively appreciated. My deadline for submission is Monday >>> >>> Thanks >>> Ruth >>> >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >>> >>> _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >>> _______________________________________________ >>> >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 rr5247 at bris.ac.uk Sun Jul 31 10:37:40 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sun, 31 Jul 2011 10:37:40 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> Message-ID: It's what my university uses for large file sharing rather than emailing - you upload a file to the fluff server, it sends you a link, then you email that link to whoever you want to be able to access the file Ooh ok I'll try searching for the password Thanks again On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > What is a fluff server? > > The password is usually due to spaces in the filename I think? That should > be in the archives if you search at the xerte homepage > > > On 31 Jul 2011, at 09:55, Ruth Russell wrote: > > OK, I'll give the website option a go. > > I think the second option I have already tried: I uploaded to a fluff > server and tried to unzip and run index.html and it asked for a password.... > > Thanks so much for your help > > Ruth > > On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> Could you upload the file to a website? If not, just say please unzip and >> run index.html to access? >> >> I'd try the website approach though if you can >> >> >> On 31 Jul 2011, at 08:48, Ruth Russell < >> rr5247 at bris.ac.uk> wrote: >> >> Thanks - what should I do to fix this? I just need to be able to send a >> copy of the tutorial to my supervisor to be marked by tomorrow. >> >> Ruth >> >> On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley < >> patrick.lockley at googlemail.com> wrote: >> >>> Hello, >>> >>> Sounds like write permissions on the flash drive. >>> >>> You also get zinc error messages if you only the rlt and rlo from inside >>> a zip file. >>> >>> Pat >>> >>> >>> On 31 Jul 2011, at 07:33, Ruth Russell < >>> rr5247 at bris.ac.uk> wrote: >>> >>> Thanks for the reply >>> >>> Yep, it says 'Zinc cannot create file'. >>> >>> Here's what I can see: >>> >>> >>> >>> >>> This is the file location.I've been working from 'Ruth Russell eSSC' on >>> my desktop, and saving my changes. >>> >>> When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc >>> Error message. >>> >>> When I click on 'index' on my desktop, a google chrome page opens with a >>> fully interactive tutorial which works. However, if I save the 'index' file >>> to a flashdrive, then attempt to open it, I just get a blank page. >>> >>> I upload the zipped version of the whole 'Transcript Tutorial' file to a >>> fluff server, then downloaded the folder to check it worked: >>> >>> >>> >>> On this version, I cannot open any of the files, as it asks for a >>> password. However, the original versions can be opened without a password on >>> my desktop. >>> >>> Hope that's clearer >>> >>> Thanks >>> Ruth >>> >>> On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett < >>> d_b_burnett at hotmail.com> wrote: >>> >>>> >>>> >>>> Generally, any error message like that points to a permissions error. >>>> e.g. the Zinc wrapper that interacts with the file system is trying to >>>> create a file somewhere (maybe a temp file or batch file) and does not have >>>> permissions to the folder in question to do so. >>>> >>>> >>>> I'm not so well versed on Xerte Online Toollkits, so I don't know >>>> where/what files would be being denied. >>>> Can you give more details, what you mean by open the shared version. >>>> It can it be open, but fails when someone else tries to open it >>>> concurrently? >>>> That sort of thing. >>>> >>>> >>>> Dave >>>> >>>> >>>> >>>> >>>> >>>> ------------------------------ >>>> Date: Sat, 30 Jul 2011 22:20:59 +0100 >>>> From: >>>> rr5247 at bris.ac.uk >>>> To: >>>> xerte at lists.nottingham.ac.uk >>>> Subject: [Xerte] Issues sharing a tutorial made on Media Interactions >>>> template >>>> >>>> >>>> Apologies if this is a very stupid problem. I have very little computer >>>> experience. >>>> >>>> I've made a tutorial using the 'Media Interactions' template. >>>> >>>> It is saved as an .rlt file. I am trying to share it. It uploads fine to >>>> both a fluff server and an external hard drive, but when I try to open the >>>> shared version I get this message: >>>> >>>> 'MDM Zinc v2 Error Handler' >>>> 'Zinc has encountered the following error: Cannot create file' >>>> >>>> Any help massively appreciated. My deadline for submission is Monday >>>> >>>> Thanks >>>> Ruth >>>> >>>> This message and any attachment are intended solely for the addressee >>>> and may contain confidential information. If you have received this message >>>> in error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or in >>>> any attachment. Any views or opinions expressed by the author of this email >>>> do not necessarily reflect the views of the University of Nottingham. >>>> This message has been checked for viruses but the contents of an >>>> attachment may still contain software viruses which could damage your >>>> computer system: you are advised to perform your own checks. Email >>>> communications with the University of Nottingham may be monitored as >>>> permitted by UK legislation. >>>> >>>> _______________________________________________ Xerte mailing list >>>> >>>> Xerte at lists.nottingham.ac.uk >>>> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and >>>> any attachment are intended solely for the addressee and may contain >>>> confidential information. If you have received this message in error, please >>>> send it back to me, and immediately delete it. Please do not use, copy or >>>> disclose the information contained in this message or in any attachment. Any >>>> views or opinions expressed by the author of this email do not necessarily >>>> reflect the views of the University of Nottingham. This message has been >>>> checked for viruses but the contents of an attachment may still contain >>>> software viruses which could damage your computer system: you are advised to >>>> perform your own checks. Email communications with the University of >>>> Nottingham may be monitored as permitted by UK legislation. >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> >>>> Xerte at lists.nottingham.ac.uk >>>> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the addressee >>>> and may contain confidential information. If you have received this message >>>> in error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or in >>>> any attachment. Any views or opinions expressed by the author of this email >>>> do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>>> attachment >>>> may still contain software viruses which could damage your computer >>>> system: >>>> you are advised to perform your own checks. Email communications with >>>> the >>>> University of Nottingham may be monitored as permitted by UK >>>> legislation. >>>> >>>> >>>> >>> _______________________________________________ >>> >>> Xerte mailing list >>> >>> Xerte at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do not >>> use, copy or disclose the information contained in this message or in any >>> attachment. Any views or opinions expressed by the author of this email do >>> not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >>> attachment >>> may still contain software viruses which could damage your computer >>> system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> >>> Xerte at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do not >>> use, copy or disclose the information contained in this message or in any >>> attachment. Any views or opinions expressed by the author of this email do >>> not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >>> attachment >>> may still contain software viruses which could damage your computer >>> system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 31 10:41:15 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 10:41:15 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> Message-ID: <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com> Ah the fluff server probably won't support the file location xerte uses as the locations will change. If you don't have a webspace maybe see if you can create it using google websites? That should work. On 31 Jul 2011, at 10:37, Ruth Russell wrote: > It's what my university uses for large file sharing rather than emailing - you upload a file to the fluff server, it sends you a link, then you email that link to whoever you want to be able to access the file > > Ooh ok I'll try searching for the password > > Thanks again > > On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley wrote: > What is a fluff server? > > The password is usually due to spaces in the filename I think? That should be in the archives if you search at the xerte homepage > > > On 31 Jul 2011, at 09:55, Ruth Russell wrote: > >> OK, I'll give the website option a go. >> >> I think the second option I have already tried: I uploaded to a fluff server and tried to unzip and run index.html and it asked for a password.... >> >> Thanks so much for your help >> >> Ruth >> >> On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley wrote: >> Could you upload the file to a website? If not, just say please unzip and run index.html to access? >> >> I'd try the website approach though if you can >> >> >> On 31 Jul 2011, at 08:48, Ruth Russell wrote: >> >>> Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. >>> >>> Ruth >>> >>> On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: >>> Hello, >>> >>> Sounds like write permissions on the flash drive. >>> >>> You also get zinc error messages if you only the rlt and rlo from inside a zip file. >>> >>> Pat >>> >>> >>> On 31 Jul 2011, at 07:33, Ruth Russell wrote: >>> >>>> Thanks for the reply >>>> >>>> Yep, it says 'Zinc cannot create file'. >>>> >>>> Here's what I can see: >>>> >>>> >>>> >>>> >>>> This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. >>>> >>>> When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. >>>> >>>> When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. >>>> >>>> I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: >>>> >>>> >>>> >>>> On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. >>>> >>>> Hope that's clearer >>>> >>>> Thanks >>>> Ruth >>>> >>>> On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: >>>> >>>> >>>> Generally, any error message like that points to a permissions error. >>>> e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. >>>> >>>> >>>> I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. >>>> Can you give more details, what you mean by open the shared version. >>>> It can it be open, but fails when someone else tries to open it concurrently? >>>> That sort of thing. >>>> >>>> >>>> Dave >>>> >>>> >>>> >>>> >>>> >>>> Date: Sat, 30 Jul 2011 22:20:59 +0100 >>>> From: rr5247 at bris.ac.uk >>>> To: xerte at lists.nottingham.ac.uk >>>> Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template >>>> >>>> >>>> Apologies if this is a very stupid problem. I have very little computer experience. >>>> >>>> I've made a tutorial using the 'Media Interactions' template. >>>> >>>> It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: >>>> >>>> 'MDM Zinc v2 Error Handler' >>>> 'Zinc has encountered the following error: Cannot create file' >>>> >>>> Any help massively appreciated. My deadline for submission is Monday >>>> >>>> Thanks >>>> Ruth >>>> >>>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>>> This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>>> >>>> _______________________________________________ >>>> >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >>> _______________________________________________ >>> >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Sun Jul 31 11:47:18 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sun, 31 Jul 2011 06:47:18 -0400 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com> References: , , , <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com>, , , , <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com>, , <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com> Message-ID: >Ooh ok I'll try searching for the password Just to clarify, there is no password to find. When there are spaces in the path to your content, it causes the "ask for password" issue. e.g. if your content is located at: C:\something\my xerte\something\ It will cause the password prompt to appear when zipped. The folder needs to be renamed so the path becomes: C:\something\myxerte\something\ or C:\something\my_xerte\something\ From: patrick.lockley at googlemail.com Date: Sun, 31 Jul 2011 10:41:15 +0100 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template Ah the fluff server probably won't support the file location xerte uses as the locations will change. If you don't have a webspace maybe see if you can create it using google websites? That should work. On 31 Jul 2011, at 10:37, Ruth Russell wrote: It's what my university uses for large file sharing rather than emailing - you upload a file to the fluff server, it sends you a link, then you email that link to whoever you want to be able to access the file Ooh ok I'll try searching for the password Thanks again On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley wrote: What is a fluff server? The password is usually due to spaces in the filename I think? That should be in the archives if you search at the xerte homepage On 31 Jul 2011, at 09:55, Ruth Russell wrote: OK, I'll give the website option a go. I think the second option I have already tried: I uploaded to a fluff server and tried to unzip and run index.html and it asked for a password.... Thanks so much for your help Ruth On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley wrote: Could you upload the file to a website? If not, just say please unzip and run index.html to access? I'd try the website approach though if you can On 31 Jul 2011, at 08:48, Ruth Russell wrote: Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. Ruth On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: Hello, Sounds like write permissions on the flash drive. You also get zinc error messages if you only the rlt and rlo from inside a zip file. Pat On 31 Jul 2011, at 07:33, Ruth Russell wrote: Thanks for the reply Yep, it says 'Zinc cannot create file'. Here's what I can see: This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. Hope that's clearer ThanksRuth On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: Generally, any error message like that points to a permissions error. e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. Can you give more details, what you mean by open the shared version. It can it be open, but fails when someone else tries to open it concurrently? That sort of thing. Dave Date: Sat, 30 Jul 2011 22:20:59 +0100 From: rr5247 at bris.ac.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template Apologies if this is a very stupid problem. I have very little computer experience. I've made a tutorial using the 'Media Interactions' template. It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: 'MDM Zinc v2 Error Handler''Zinc has encountered the following error: Cannot create file' Any help massively appreciated. My deadline for submission is Monday ThanksRuth This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 rr5247 at bris.ac.uk Sun Jul 31 12:05:25 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sun, 31 Jul 2011 12:05:25 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com> Message-ID: Thanks for clarification, really appreciate it, I'm giving that a go Ruth On Sun, Jul 31, 2011 at 11:47 AM, Dave Burnett wrote: > >Ooh ok I'll try searching for the password > > > Just to clarify, there is no password to find. > > > When there are spaces in the path to your content, it causes the "ask for > password" issue. > > > e.g. if your content is located at: > > C:\something\my xerte\something\ > > > It will cause the password prompt to appear when zipped. > > > The folder needs to be renamed so the path becomes: > > > C:\something\myxerte\something\ > or > C:\something\my_xerte\something\ > > > > > > ------------------------------ > From: patrick.lockley at googlemail.com > Date: Sun, 31 Jul 2011 10:41:15 +0100 > > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions > template > > > Ah the fluff server probably won't support the file location xerte uses as > the locations will change. > > If you don't have a webspace maybe see if you can create it using google > websites? That should work. > > On 31 Jul 2011, at 10:37, Ruth Russell wrote: > > It's what my university uses for large file sharing rather than emailing - > you upload a file to the fluff server, it sends you a link, then you email > that link to whoever you want to be able to access the file > > Ooh ok I'll try searching for the password > > Thanks again > > On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > > What is a fluff server? > > The password is usually due to spaces in the filename I think? That should > be in the archives if you search at the xerte homepage > > > On 31 Jul 2011, at 09:55, Ruth Russell wrote: > > OK, I'll give the website option a go. > > I think the second option I have already tried: I uploaded to a fluff > server and tried to unzip and run index.html and it asked for a password.... > > Thanks so much for your help > > Ruth > > On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > > Could you upload the file to a website? If not, just say please unzip and > run index.html to access? > > I'd try the website approach though if you can > > > On 31 Jul 2011, at 08:48, Ruth Russell wrote: > > Thanks - what should I do to fix this? I just need to be able to send a > copy of the tutorial to my supervisor to be marked by tomorrow. > > Ruth > > On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > > Hello, > > Sounds like write permissions on the flash drive. > > You also get zinc error messages if you only the rlt and rlo from inside a > zip file. > > Pat > > > On 31 Jul 2011, at 07:33, Ruth Russell wrote: > > Thanks for the reply > > Yep, it says 'Zinc cannot create file'. > > Here's what I can see: > > > > > This is the file location.I've been working from 'Ruth Russell eSSC' on my > desktop, and saving my changes. > > When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc > Error message. > > When I click on 'index' on my desktop, a google chrome page opens with a > fully interactive tutorial which works. However, if I save the 'index' file > to a flashdrive, then attempt to open it, I just get a blank page. > > I upload the zipped version of the whole 'Transcript Tutorial' file to a > fluff server, then downloaded the folder to check it worked: > > > > On this version, I cannot open any of the files, as it asks for a password. > However, the original versions can be opened without a password on my > desktop. > > Hope that's clearer > > Thanks > Ruth > > On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: > > > > Generally, any error message like that points to a permissions error. > e.g. the Zinc wrapper that interacts with the file system is trying to > create a file somewhere (maybe a temp file or batch file) and does not have > permissions to the folder in question to do so. > > > I'm not so well versed on Xerte Online Toollkits, so I don't know > where/what files would be being denied. > Can you give more details, what you mean by open the shared version. > It can it be open, but fails when someone else tries to open it > concurrently? > That sort of thing. > > > Dave > > > > > > ------------------------------ > Date: Sat, 30 Jul 2011 22:20:59 +0100 > From: rr5247 at bris.ac.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Issues sharing a tutorial made on Media Interactions > template > > > Apologies if this is a very stupid problem. I have very little computer > experience. > > I've made a tutorial using the 'Media Interactions' template. > > It is saved as an .rlt file. I am trying to share it. It uploads fine to > both a fluff server and an external hard drive, but when I try to open the > shared version I get this message: > > 'MDM Zinc v2 Error Handler' > 'Zinc has encountered the following error: Cannot create file' > > Any help massively appreciated. My deadline for submission is Monday > > Thanks > Ruth > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Sun Jul 31 12:52:56 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sun, 31 Jul 2011 07:52:56 -0400 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: , , , <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com>, , , , <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com>, , <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com>, , Message-ID: Change the rlo as well. No spaces in the path or file name. Date: Sun, 31 Jul 2011 12:05:25 +0100 From: rr5247 at bris.ac.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template Thanks for clarification, really appreciate it, I'm giving that a go Ruth On Sun, Jul 31, 2011 at 11:47 AM, Dave Burnett wrote: >Ooh ok I'll try searching for the password Just to clarify, there is no password to find. When there are spaces in the path to your content, it causes the "ask for password" issue. e.g. if your content is located at: C:\something\my xerte\something\ It will cause the password prompt to appear when zipped. The folder needs to be renamed so the path becomes: C:\something\myxerte\something\ or C:\something\my_xerte\something\ From: patrick.lockley at googlemail.com Date: Sun, 31 Jul 2011 10:41:15 +0100 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template Ah the fluff server probably won't support the file location xerte uses as the locations will change. If you don't have a webspace maybe see if you can create it using google websites? That should work. On 31 Jul 2011, at 10:37, Ruth Russell wrote: It's what my university uses for large file sharing rather than emailing - you upload a file to the fluff server, it sends you a link, then you email that link to whoever you want to be able to access the file Ooh ok I'll try searching for the password Thanks again On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley wrote: What is a fluff server? The password is usually due to spaces in the filename I think? That should be in the archives if you search at the xerte homepage On 31 Jul 2011, at 09:55, Ruth Russell wrote: OK, I'll give the website option a go. I think the second option I have already tried: I uploaded to a fluff server and tried to unzip and run index.html and it asked for a password.... Thanks so much for your help Ruth On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley wrote: Could you upload the file to a website? If not, just say please unzip and run index.html to access? I'd try the website approach though if you can On 31 Jul 2011, at 08:48, Ruth Russell wrote: Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. Ruth On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: Hello, Sounds like write permissions on the flash drive. You also get zinc error messages if you only the rlt and rlo from inside a zip file. Pat On 31 Jul 2011, at 07:33, Ruth Russell wrote: Thanks for the reply Yep, it says 'Zinc cannot create file'. Here's what I can see: This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. Hope that's clearer ThanksRuth On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: Generally, any error message like that points to a permissions error. e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. Can you give more details, what you mean by open the shared version. It can it be open, but fails when someone else tries to open it concurrently? That sort of thing. Dave Date: Sat, 30 Jul 2011 22:20:59 +0100 From: rr5247 at bris.ac.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template Apologies if this is a very stupid problem. I have very little computer experience. I've made a tutorial using the 'Media Interactions' template. It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: 'MDM Zinc v2 Error Handler''Zinc has encountered the following error: Cannot create file' Any help massively appreciated. My deadline for submission is Monday ThanksRuth This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 rr5247 at bris.ac.uk Sun Jul 31 13:17:57 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sun, 31 Jul 2011 13:17:57 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com> Message-ID: It's worked! Thank you so so much! On Sun, Jul 31, 2011 at 12:52 PM, Dave Burnett wrote: > > > Change the rlo as well. > > > No spaces in the path or file name. > > > > > > > > ------------------------------ > Date: Sun, 31 Jul 2011 12:05:25 +0100 > > From: rr5247 at bris.ac.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions > template > > Thanks for clarification, really appreciate it, I'm giving that a go > > Ruth > > On Sun, Jul 31, 2011 at 11:47 AM, Dave Burnett wrote: > > >Ooh ok I'll try searching for the password > > > Just to clarify, there is no password to find. > > > When there are spaces in the path to your content, it causes the "ask for > password" issue. > > > e.g. if your content is located at: > > C:\something\my xerte\something\ > > > It will cause the password prompt to appear when zipped. > > > The folder needs to be renamed so the path becomes: > > > C:\something\myxerte\something\ > or > C:\something\my_xerte\something\ > > > > > > ------------------------------ > From: patrick.lockley at googlemail.com > Date: Sun, 31 Jul 2011 10:41:15 +0100 > > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions > template > > > Ah the fluff server probably won't support the file location xerte uses as > the locations will change. > > If you don't have a webspace maybe see if you can create it using google > websites? That should work. > > On 31 Jul 2011, at 10:37, Ruth Russell wrote: > > It's what my university uses for large file sharing rather than emailing - > you upload a file to the fluff server, it sends you a link, then you email > that link to whoever you want to be able to access the file > > Ooh ok I'll try searching for the password > > Thanks again > > On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > > What is a fluff server? > > The password is usually due to spaces in the filename I think? That should > be in the archives if you search at the xerte homepage > > > On 31 Jul 2011, at 09:55, Ruth Russell wrote: > > OK, I'll give the website option a go. > > I think the second option I have already tried: I uploaded to a fluff > server and tried to unzip and run index.html and it asked for a password.... > > Thanks so much for your help > > Ruth > > On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > > Could you upload the file to a website? If not, just say please unzip and > run index.html to access? > > I'd try the website approach though if you can > > > On 31 Jul 2011, at 08:48, Ruth Russell wrote: > > Thanks - what should I do to fix this? I just need to be able to send a > copy of the tutorial to my supervisor to be marked by tomorrow. > > Ruth > > On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > > Hello, > > Sounds like write permissions on the flash drive. > > You also get zinc error messages if you only the rlt and rlo from inside a > zip file. > > Pat > > > On 31 Jul 2011, at 07:33, Ruth Russell wrote: > > Thanks for the reply > > Yep, it says 'Zinc cannot create file'. > > Here's what I can see: > > > > > This is the file location.I've been working from 'Ruth Russell eSSC' on my > desktop, and saving my changes. > > When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc > Error message. > > When I click on 'index' on my desktop, a google chrome page opens with a > fully interactive tutorial which works. However, if I save the 'index' file > to a flashdrive, then attempt to open it, I just get a blank page. > > I upload the zipped version of the whole 'Transcript Tutorial' file to a > fluff server, then downloaded the folder to check it worked: > > > > On this version, I cannot open any of the files, as it asks for a password. > However, the original versions can be opened without a password on my > desktop. > > Hope that's clearer > > Thanks > Ruth > > On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: > > > > Generally, any error message like that points to a permissions error. > e.g. the Zinc wrapper that interacts with the file system is trying to > create a file somewhere (maybe a temp file or batch file) and does not have > permissions to the folder in question to do so. > > > I'm not so well versed on Xerte Online Toollkits, so I don't know > where/what files would be being denied. > Can you give more details, what you mean by open the shared version. > It can it be open, but fails when someone else tries to open it > concurrently? > That sort of thing. > > > Dave > > > > > > ------------------------------ > Date: Sat, 30 Jul 2011 22:20:59 +0100 > From: rr5247 at bris.ac.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Issues sharing a tutorial made on Media Interactions > template > > > Apologies if this is a very stupid problem. I have very little computer > experience. > > I've made a tutorial using the 'Media Interactions' template. > > It is saved as an .rlt file. I am trying to share it. It uploads fine to > both a fluff server and an external hard drive, but when I try to open the > shared version I get this message: > > 'MDM Zinc v2 Error Handler' > 'Zinc has encountered the following error: Cannot create file' > > Any help massively appreciated. My deadline for submission is Monday > > Thanks > Ruth > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > _______________________________________________ Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any > attachment are intended solely for the addressee and may contain > confidential information. If you have received this message in error, please > send it back to me, and immediately delete it. Please do not use, copy or > disclose the information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. This message has been > checked for viruses but the contents of an attachment may still contain > software viruses which could damage your computer system: you are advised to > perform your own checks. Email communications with the University of > Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 31 14:07:03 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 14:07:03 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com> Message-ID: <3883D265-8EF1-4381-9B81-7669C5AEBB0F@googlemail.com> And if you don't get a first let us know, we can fix that too On 31 Jul 2011, at 13:17, Ruth Russell wrote: > It's worked! Thank you so so much! > > On Sun, Jul 31, 2011 at 12:52 PM, Dave Burnett wrote: > > > Change the rlo as well. > > > No spaces in the path or file name. > > > > > > > > Date: Sun, 31 Jul 2011 12:05:25 +0100 > > From: rr5247 at bris.ac.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template > > Thanks for clarification, really appreciate it, I'm giving that a go > > Ruth > > On Sun, Jul 31, 2011 at 11:47 AM, Dave Burnett wrote: > >Ooh ok I'll try searching for the password > > > Just to clarify, there is no password to find. > > > When there are spaces in the path to your content, it causes the "ask for password" issue. > > > e.g. if your content is located at: > > C:\something\my xerte\something\ > > > It will cause the password prompt to appear when zipped. > > > The folder needs to be renamed so the path becomes: > > > C:\something\myxerte\something\ > or > C:\something\my_xerte\something\ > > > > > > From: patrick.lockley at googlemail.com > Date: Sun, 31 Jul 2011 10:41:15 +0100 > > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template > > > Ah the fluff server probably won't support the file location xerte uses as the locations will change. > > If you don't have a webspace maybe see if you can create it using google websites? That should work. > > On 31 Jul 2011, at 10:37, Ruth Russell wrote: > > It's what my university uses for large file sharing rather than emailing - you upload a file to the fluff server, it sends you a link, then you email that link to whoever you want to be able to access the file > > Ooh ok I'll try searching for the password > > Thanks again > > On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley wrote: > What is a fluff server? > > The password is usually due to spaces in the filename I think? That should be in the archives if you search at the xerte homepage > > > On 31 Jul 2011, at 09:55, Ruth Russell wrote: > > OK, I'll give the website option a go. > > I think the second option I have already tried: I uploaded to a fluff server and tried to unzip and run index.html and it asked for a password.... > > Thanks so much for your help > > Ruth > > On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley wrote: > Could you upload the file to a website? If not, just say please unzip and run index.html to access? > > I'd try the website approach though if you can > > > On 31 Jul 2011, at 08:48, Ruth Russell wrote: > > Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. > > Ruth > > On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: > Hello, > > Sounds like write permissions on the flash drive. > > You also get zinc error messages if you only the rlt and rlo from inside a zip file. > > Pat > > > On 31 Jul 2011, at 07:33, Ruth Russell wrote: > > Thanks for the reply > > Yep, it says 'Zinc cannot create file'. > > Here's what I can see: > > > > > This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. > > When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. > > When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. > > I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: > > > > On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. > > Hope that's clearer > > Thanks > Ruth > > On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: > > > Generally, any error message like that points to a permissions error. > e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. > > > I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. > Can you give more details, what you mean by open the shared version. > It can it be open, but fails when someone else tries to open it concurrently? > That sort of thing. > > > Dave > > > > > > Date: Sat, 30 Jul 2011 22:20:59 +0100 > From: rr5247 at bris.ac.uk > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template > > > Apologies if this is a very stupid problem. I have very little computer experience. > > I've made a tutorial using the 'Media Interactions' template. > > It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: > > 'MDM Zinc v2 Error Handler' > 'Zinc has encountered the following error: Cannot create file' > > Any help massively appreciated. My deadline for submission is Monday > > Thanks > Ruth > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 franck-petit at live.fr Sun Jul 31 14:39:45 2011 From: franck-petit at live.fr (Franck Petit) Date: Sun, 31 Jul 2011 17:39:45 +0400 Subject: [Xerte] Re: could you provide an updated XOT zip please? In-Reply-To: <8AC7170D-C5E1-4D49-9A4C-B8D80C0F6830@googlemail.com> References: <826FA59EEA0A914FA34AECF56FD831A80BE09A9E@VUIEXCHA.ad.nottingham.ac.uk> <00b501cb54d4$c278aec0$476a0c40$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F193@VUIEXCHA.ad.nottingham.ac.uk> <00d701cb54d8$71e9adc0$55bd0940$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F214@VUIEXCHA.ad.nottingham.ac.uk> <012201cb54e9$deaffde0$9c0ff9a0$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk> <8AC7170D-C5E1-4D49-9A4C-B8D80C0F6830@googlemail.com> Message-ID: Thanks Pat, but even if I try logging into management without having logged into toolkits first I get the same result. I tried from another PC with the same result. Franck De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley Envoy? : dimanche 31 juillet 2011 11:22 ? : Xerte discussion list Objet : [Xerte] Re: could you provide an updated XOT zip please? The svn is the most up to date code, I doubt much has changed in the management side since the last zip. I would imagine the management problem is because the session of a user is still valid for your pc. Try logging into management without having logged into toolkitts first. The zip doesn't need updating that often as it's usually the models that change to add in new features, not fix bugs. On 31 Jul 2011, at 05:03, Franck Petit wrote: Hi, I have this problem as admin on a fresh install of XOT 1.6: after login a ?the feature is for administrators only? is displayed. I have checked XOT on google code but found it too difficult to use SVN (I really tried) I noticed many changes were made since the last release. Could someone please send a link to an updated zip of XOT? It would be great if there was a weekly release as this is the case with moodle. Cheers, Franck De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Patrick Lockley Envoy? : mercredi 15 septembre 2010 19:37 ? : Xerte discussion list Objet : RE: [Xerte] XOT Peer review Stop it with the puppy dog eyes! I would do it if I had the time. I am sure Dave could do it in about 5 minutes! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 16:23 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review Cheers will add to todo list. But just gives me more pages to remember and exclude from future updates. :-( From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 14:20 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review Ok here is what you need to do. Find the php code for peer in website_code/php/properties/ Edit it to have a second textbox for text entry Change the insert code to add the email then some delimiter, suggest - *** if both variables are sent Then on the peer review submit page, peer.php in the root folder, add a php split on the delimiter if found. Easy peasy From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 14:18 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review Pat I'm not sure this is used much but yes perhaps the author submits which email replies go to. I can think of advantages with that too e.g. author sends link but wants/needs feedback to go to a colleague. Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 13:56 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review What?s twitter? 3) It won?t. But it works here. Well until we have to fix it. So, you want Peer review to work across multiple email domains, or for people to submit an address to which to send peer review too? Pat From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 13:52 To: 'Xerte discussion list' Subject: [Xerte] XOT Peer review Hi Pat I'm guessing it's you that has been replying to this on Twitter and the char limit obviously makes it difficult so thought it better to reply here... Can you explain exactly how the peer review system identifies the email address? If I understand correctly this should work something like this... 1. Author enables peer review and sends the link by email to a colleague. Good to know this works without needing to make the LO public. 2. The colleague reviews the LO and types and submits feedback via the form on the review page. 3. I think you're saying details added to site details then appends the username to the sitedetails info to determine the email to send to. On the sandpit or other installations where users don't use the same email domain how would this work? Even with an installation used by staff within one organisation it will not always follow that their username and email format are always consistent. The peer review system is still useful but with installations like the sandpit probably needs a message prompting to send feedback via email rather than the form - if my assumptions are correct? 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 rr5247 at bris.ac.uk Sun Jul 31 14:52:43 2011 From: rr5247 at bris.ac.uk (Ruth Russell) Date: Sun, 31 Jul 2011 14:52:43 +0100 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: <3883D265-8EF1-4381-9B81-7669C5AEBB0F@googlemail.com> References: <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com> <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com> <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com> <3883D265-8EF1-4381-9B81-7669C5AEBB0F@googlemail.com> Message-ID: haha, you realise that's in writing don't you? On Sun, Jul 31, 2011 at 2:07 PM, Pat Lockley wrote: > And if you don't get a first let us know, we can fix that too > > > On 31 Jul 2011, at 13:17, Ruth Russell wrote: > > It's worked! Thank you so so much! > > On Sun, Jul 31, 2011 at 12:52 PM, Dave Burnett < > d_b_burnett at hotmail.com> wrote: > >> >> >> Change the rlo as well. >> >> >> No spaces in the path or file name. >> >> >> >> >> >> >> >> ------------------------------ >> Date: Sun, 31 Jul 2011 12:05:25 +0100 >> >> From: rr5247 at bris.ac.uk >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions >> template >> >> Thanks for clarification, really appreciate it, I'm giving that a go >> >> Ruth >> >> On Sun, Jul 31, 2011 at 11:47 AM, Dave Burnett < >> d_b_burnett at hotmail.com> wrote: >> >> >Ooh ok I'll try searching for the password >> >> >> Just to clarify, there is no password to find. >> >> >> When there are spaces in the path to your content, it causes the "ask for >> password" issue. >> >> >> e.g. if your content is located at: >> >> C:\something\my xerte\something\ >> >> >> It will cause the password prompt to appear when zipped. >> >> >> The folder needs to be renamed so the path becomes: >> >> >> C:\something\myxerte\something\ >> or >> C:\something\my_xerte\something\ >> >> >> >> >> >> ------------------------------ >> From: patrick.lockley at googlemail.com >> Date: Sun, 31 Jul 2011 10:41:15 +0100 >> >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions >> template >> >> >> Ah the fluff server probably won't support the file location xerte uses as >> the locations will change. >> >> If you don't have a webspace maybe see if you can create it using google >> websites? That should work. >> >> On 31 Jul 2011, at 10:37, Ruth Russell < >> rr5247 at bris.ac.uk> wrote: >> >> It's what my university uses for large file sharing rather than emailing - >> you upload a file to the fluff server, it sends you a link, then you email >> that link to whoever you want to be able to access the file >> >> Ooh ok I'll try searching for the password >> >> Thanks again >> >> On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley < >> patrick.lockley at googlemail.com> wrote: >> >> What is a fluff server? >> >> The password is usually due to spaces in the filename I think? That should >> be in the archives if you search at the xerte homepage >> >> >> On 31 Jul 2011, at 09:55, Ruth Russell < >> rr5247 at bris.ac.uk> wrote: >> >> OK, I'll give the website option a go. >> >> I think the second option I have already tried: I uploaded to a fluff >> server and tried to unzip and run index.html and it asked for a password.... >> >> Thanks so much for your help >> >> Ruth >> >> On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley < >> patrick.lockley at googlemail.com> wrote: >> >> Could you upload the file to a website? If not, just say please unzip and >> run index.html to access? >> >> I'd try the website approach though if you can >> >> >> On 31 Jul 2011, at 08:48, Ruth Russell < >> rr5247 at bris.ac.uk> wrote: >> >> Thanks - what should I do to fix this? I just need to be able to send a >> copy of the tutorial to my supervisor to be marked by tomorrow. >> >> Ruth >> >> On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley < >> patrick.lockley at googlemail.com> wrote: >> >> Hello, >> >> Sounds like write permissions on the flash drive. >> >> You also get zinc error messages if you only the rlt and rlo from inside a >> zip file. >> >> Pat >> >> >> On 31 Jul 2011, at 07:33, Ruth Russell < >> rr5247 at bris.ac.uk> wrote: >> >> Thanks for the reply >> >> Yep, it says 'Zinc cannot create file'. >> >> Here's what I can see: >> >> >> >> >> This is the file location.I've been working from 'Ruth Russell eSSC' on my >> desktop, and saving my changes. >> >> When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc >> Error message. >> >> When I click on 'index' on my desktop, a google chrome page opens with a >> fully interactive tutorial which works. However, if I save the 'index' file >> to a flashdrive, then attempt to open it, I just get a blank page. >> >> I upload the zipped version of the whole 'Transcript Tutorial' file to a >> fluff server, then downloaded the folder to check it worked: >> >> >> >> On this version, I cannot open any of the files, as it asks for a >> password. However, the original versions can be opened without a password on >> my desktop. >> >> Hope that's clearer >> >> Thanks >> Ruth >> >> On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett < >> d_b_burnett at hotmail.com> wrote: >> >> >> >> Generally, any error message like that points to a permissions error. >> e.g. the Zinc wrapper that interacts with the file system is trying to >> create a file somewhere (maybe a temp file or batch file) and does not have >> permissions to the folder in question to do so. >> >> >> I'm not so well versed on Xerte Online Toollkits, so I don't know >> where/what files would be being denied. >> Can you give more details, what you mean by open the shared version. >> It can it be open, but fails when someone else tries to open it >> concurrently? >> That sort of thing. >> >> >> Dave >> >> >> >> >> >> ------------------------------ >> Date: Sat, 30 Jul 2011 22:20:59 +0100 >> From: rr5247 at bris.ac.uk >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Issues sharing a tutorial made on Media Interactions >> template >> >> >> Apologies if this is a very stupid problem. I have very little computer >> experience. >> >> I've made a tutorial using the 'Media Interactions' template. >> >> It is saved as an .rlt file. I am trying to share it. It uploads fine to >> both a fluff server and an external hard drive, but when I try to open the >> shared version I get this message: >> >> 'MDM Zinc v2 Error Handler' >> 'Zinc has encountered the following error: Cannot create file' >> >> Any help massively appreciated. My deadline for submission is Monday >> >> Thanks >> Ruth >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer system: you are advised to perform your own checks. Email >> communications with the University of Nottingham may be monitored as >> permitted by UK legislation. >> >> _______________________________________________ Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any >> attachment are intended solely for the addressee and may contain >> confidential information. If you have received this message in error, please >> send it back to me, and immediately delete it. Please do not use, copy or >> disclose the information contained in this message or in any attachment. Any >> views or opinions expressed by the author of this email do not necessarily >> reflect the views of the University of Nottingham. This message has been >> checked for viruses but the contents of an attachment may still contain >> software viruses which could damage your computer system: you are advised to >> perform your own checks. Email communications with the University of >> Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any >> attachment are intended solely for the addressee and may contain >> confidential information. If you have received this message in error, please >> send it back to me, and immediately delete it. Please do not use, copy or >> disclose the information contained in this message or in any attachment. Any >> views or opinions expressed by the author of this email do not necessarily >> reflect the views of the University of Nottingham. This message has been >> checked for viruses but the contents of an attachment may still contain >> software viruses which could damage your computer system: you are advised to >> perform your own checks. Email communications with the University of >> Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >> _______________________________________________ Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any >> attachment are intended solely for the addressee and may contain >> confidential information. If you have received this message in error, please >> send it back to me, and immediately delete it. Please do not use, copy or >> disclose the information contained in this message or in any attachment. Any >> views or opinions expressed by the author of this email do not necessarily >> reflect the views of the University of Nottingham. This message has been >> checked for viruses but the contents of an attachment may still contain >> software viruses which could damage your computer system: you are advised to >> perform your own checks. Email communications with the University of >> Nottingham may be monitored as permitted by UK legislation. >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do not >> use, copy or disclose the information contained in this message or in any >> attachment. Any views or opinions expressed by the author of this email do >> not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment >> may still contain software viruses which could damage your computer >> system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> > _______________________________________________ > > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Jul 31 14:59:48 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 14:59:48 +0100 Subject: [Xerte] Re: could you provide an updated XOT zip please? In-Reply-To: References: <826FA59EEA0A914FA34AECF56FD831A80BE09A9E@VUIEXCHA.ad.nottingham.ac.uk> <00b501cb54d4$c278aec0$476a0c40$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F193@VUIEXCHA.ad.nottingham.ac.uk> <00d701cb54d8$71e9adc0$55bd0940$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F214@VUIEXCHA.ad.nottingham.ac.uk> <012201cb54e9$deaffde0$9c0ff9a0$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk> <8AC7170D-C5E1-4D49-9A4C-B8D80C0F6830@googlemail.com> Message-ID: Ok. Sounds like the session isn't being set. Do you do any php? On 31 Jul 2011, at 14:39, Franck Petit wrote: > Thanks Pat, but even if I try logging into management without having logged into toolkits first I get the same result. I tried from another PC with the same result. > > Franck > > > > De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley > Envoy? : dimanche 31 juillet 2011 11:22 > ? : Xerte discussion list > Objet : [Xerte] Re: could you provide an updated XOT zip please? > > > > The svn is the most up to date code, I doubt much has changed in the management side since the last zip. > > > > I would imagine the management problem is because the session of a user is still valid for your pc. > > > > Try logging into management without having logged into toolkitts first. > > > > The zip doesn't need updating that often as it's usually the models that change to add in new features, not fix bugs. > > On 31 Jul 2011, at 05:03, Franck Petit wrote: > > Hi, > > I have this problem as admin on a fresh install of XOT 1.6: after login a ?the feature is for administrators only? is displayed. I have checked XOT on google code but found it too difficult to use SVN (I really tried) I noticed many changes were made since the last release. Could someone please send a link to an updated zip of XOT? It would be great if there was a weekly release as this is the case with moodle. > > Cheers, Franck > > > > > > > > De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Patrick Lockley > Envoy? : mercredi 15 septembre 2010 19:37 > ? : Xerte discussion list > Objet : RE: [Xerte] XOT Peer review > > > > Stop it with the puppy dog eyes! I would do it if I had the time. > > > > I am sure Dave could do it in about 5 minutes! > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 16:23 > To: 'Xerte discussion list' > Subject: RE: [Xerte] XOT Peer review > > > > Cheers will add to todo list. > > But just gives me more pages to remember and exclude from future updates. :-( > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley > Sent: 15 September 2010 14:20 > To: Xerte discussion list > Subject: RE: [Xerte] XOT Peer review > > > > Ok here is what you need to do. > > > > Find the php code for peer in website_code/php/properties/ > > > > Edit it to have a second textbox for text entry > > > > Change the insert code to add the email then some delimiter, suggest - *** if both variables are sent > > > > Then on the peer review submit page, peer.php in the root folder, add a php split on the delimiter if found. > > > > Easy peasy > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 14:18 > To: 'Xerte discussion list' > Subject: RE: [Xerte] XOT Peer review > > > > Pat > > I'm not sure this is used much but yes perhaps the author submits which email replies go to. I can think of advantages with that too e.g. author sends link but wants/needs feedback to go to a colleague. > > > > Ron > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley > Sent: 15 September 2010 13:56 > To: Xerte discussion list > Subject: RE: [Xerte] XOT Peer review > > > > What?s twitter? > > > > 3) It won?t. But it works here. Well until we have to fix it. > > > > So, you want Peer review to work across multiple email domains, or for people to submit an address to which to send peer review too? > > > > Pat > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 13:52 > To: 'Xerte discussion list' > Subject: [Xerte] XOT Peer review > > > > Hi Pat > > I'm guessing it's you that has been replying to this on Twitter and the char limit obviously makes it difficult so thought it better to reply here... > > > > Can you explain exactly how the peer review system identifies the email address? If I understand correctly this should work something like this... > > > > 1. Author enables peer review and sends the link by email to a colleague. Good to know this works without needing to make the LO public. > > 2. The colleague reviews the LO and types and submits feedback via the form on the review page. > > 3. I think you're saying details added to site details then appends the username to the sitedetails info to determine the email to send to. On the sandpit or other installations where users don't use the same email domain how would this work? Even with an installation used by staff within one organisation it will not always follow that their username and email format are always consistent. > > > > The peer review system is still useful but with installations like the sandpit probably needs a message prompting to send feedback via email rather than the form - if my assumptions are correct? > > > > 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 mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Sun Jul 31 15:14:59 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sun, 31 Jul 2011 10:14:59 -0400 Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template In-Reply-To: References: , , , <1B46A7F0-1109-4CAC-87CC-8E2FADDA76D9@googlemail.com>, , , , <037FE3C3-F2EC-4BBA-83E9-9B8F4419CA8C@googlemail.com>, , <885BB10C-5FD5-4030-B8E5-DF3424D91768@googlemail.com>, , , , , <3883D265-8EF1-4381-9B81-7669C5AEBB0F@googlemail.com>, Message-ID: I just read about a new company that provides companies with *every* post you have ever made on *any* social media network. Why wait for 1984 when you can have it now? - Gil Scott Heron Date: Sun, 31 Jul 2011 14:52:43 +0100 From: rr5247 at bris.ac.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template haha, you realise that's in writing don't you? On Sun, Jul 31, 2011 at 2:07 PM, Pat Lockley wrote: And if you don't get a first let us know, we can fix that too On 31 Jul 2011, at 13:17, Ruth Russell wrote: It's worked! Thank you so so much! On Sun, Jul 31, 2011 at 12:52 PM, Dave Burnett wrote: Change the rlo as well. No spaces in the path or file name. Date: Sun, 31 Jul 2011 12:05:25 +0100 From: rr5247 at bris.ac.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template Thanks for clarification, really appreciate it, I'm giving that a go Ruth On Sun, Jul 31, 2011 at 11:47 AM, Dave Burnett wrote: >Ooh ok I'll try searching for the password Just to clarify, there is no password to find. When there are spaces in the path to your content, it causes the "ask for password" issue. e.g. if your content is located at: C:\something\my xerte\something\ It will cause the password prompt to appear when zipped. The folder needs to be renamed so the path becomes: C:\something\myxerte\something\ or C:\something\my_xerte\something\ From: patrick.lockley at googlemail.com Date: Sun, 31 Jul 2011 10:41:15 +0100 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Issues sharing a tutorial made on Media Interactions template Ah the fluff server probably won't support the file location xerte uses as the locations will change. If you don't have a webspace maybe see if you can create it using google websites? That should work. On 31 Jul 2011, at 10:37, Ruth Russell wrote: It's what my university uses for large file sharing rather than emailing - you upload a file to the fluff server, it sends you a link, then you email that link to whoever you want to be able to access the file Ooh ok I'll try searching for the password Thanks again On Sun, Jul 31, 2011 at 10:16 AM, Pat Lockley wrote: What is a fluff server? The password is usually due to spaces in the filename I think? That should be in the archives if you search at the xerte homepage On 31 Jul 2011, at 09:55, Ruth Russell wrote: OK, I'll give the website option a go. I think the second option I have already tried: I uploaded to a fluff server and tried to unzip and run index.html and it asked for a password.... Thanks so much for your help Ruth On Sun, Jul 31, 2011 at 9:37 AM, Pat Lockley wrote: Could you upload the file to a website? If not, just say please unzip and run index.html to access? I'd try the website approach though if you can On 31 Jul 2011, at 08:48, Ruth Russell wrote: Thanks - what should I do to fix this? I just need to be able to send a copy of the tutorial to my supervisor to be marked by tomorrow. Ruth On Sun, Jul 31, 2011 at 8:18 AM, Pat Lockley wrote: Hello, Sounds like write permissions on the flash drive. You also get zinc error messages if you only the rlt and rlo from inside a zip file. Pat On 31 Jul 2011, at 07:33, Ruth Russell wrote: Thanks for the reply Yep, it says 'Zinc cannot create file'. Here's what I can see: This is the file location.I've been working from 'Ruth Russell eSSC' on my desktop, and saving my changes. When I tried to save 'Ruth Russell eSSC' to a flashdrive, I got the Zinc Error message. When I click on 'index' on my desktop, a google chrome page opens with a fully interactive tutorial which works. However, if I save the 'index' file to a flashdrive, then attempt to open it, I just get a blank page. I upload the zipped version of the whole 'Transcript Tutorial' file to a fluff server, then downloaded the folder to check it worked: On this version, I cannot open any of the files, as it asks for a password. However, the original versions can be opened without a password on my desktop. Hope that's clearer ThanksRuth On Sun, Jul 31, 2011 at 3:13 AM, Dave Burnett wrote: Generally, any error message like that points to a permissions error. e.g. the Zinc wrapper that interacts with the file system is trying to create a file somewhere (maybe a temp file or batch file) and does not have permissions to the folder in question to do so. I'm not so well versed on Xerte Online Toollkits, so I don't know where/what files would be being denied. Can you give more details, what you mean by open the shared version. It can it be open, but fails when someone else tries to open it concurrently? That sort of thing. Dave Date: Sat, 30 Jul 2011 22:20:59 +0100 From: rr5247 at bris.ac.uk To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Issues sharing a tutorial made on Media Interactions template Apologies if this is a very stupid problem. I have very little computer experience. I've made a tutorial using the 'Media Interactions' template. It is saved as an .rlt file. I am trying to share it. It uploads fine to both a fluff server and an external hard drive, but when I try to open the shared version I get this message: 'MDM Zinc v2 Error Handler''Zinc has encountered the following error: Cannot create file' Any help massively appreciated. My deadline for submission is Monday ThanksRuth This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 franck-petit at live.fr Sun Jul 31 16:32:08 2011 From: franck-petit at live.fr (Franck Petit) Date: Sun, 31 Jul 2011 19:32:08 +0400 Subject: [Xerte] Re: could you provide an updated XOT zip please? In-Reply-To: References: <826FA59EEA0A914FA34AECF56FD831A80BE09A9E@VUIEXCHA.ad.nottingham.ac.uk> <00b501cb54d4$c278aec0$476a0c40$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F193@VUIEXCHA.ad.nottingham.ac.uk> <00d701cb54d8$71e9adc0$55bd0940$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F214@VUIEXCHA.ad.nottingham.ac.uk> <012201cb54e9$deaffde0$9c0ff9a0$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk> <8AC7170D-C5E1-4D49-9A4C-B8D80C0F6830@googlemail.com> Message-ID: No, I don?t do php at all. De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley Envoy? : dimanche 31 juillet 2011 18:00 ? : Xerte discussion list Objet : [Xerte] Re: could you provide an updated XOT zip please? Ok. Sounds like the session isn't being set. Do you do any php? On 31 Jul 2011, at 14:39, Franck Petit wrote: Thanks Pat, but even if I try logging into management without having logged into toolkits first I get the same result. I tried from another PC with the same result. Franck De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley Envoy? : dimanche 31 juillet 2011 11:22 ? : Xerte discussion list Objet : [Xerte] Re: could you provide an updated XOT zip please? The svn is the most up to date code, I doubt much has changed in the management side since the last zip. I would imagine the management problem is because the session of a user is still valid for your pc. Try logging into management without having logged into toolkitts first. The zip doesn't need updating that often as it's usually the models that change to add in new features, not fix bugs. On 31 Jul 2011, at 05:03, Franck Petit wrote: Hi, I have this problem as admin on a fresh install of XOT 1.6: after login a ?the feature is for administrators only? is displayed. I have checked XOT on google code but found it too difficult to use SVN (I really tried) I noticed many changes were made since the last release. Could someone please send a link to an updated zip of XOT? It would be great if there was a weekly release as this is the case with moodle. Cheers, Franck De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Patrick Lockley Envoy? : mercredi 15 septembre 2010 19:37 ? : Xerte discussion list Objet : RE: [Xerte] XOT Peer review Stop it with the puppy dog eyes! I would do it if I had the time. I am sure Dave could do it in about 5 minutes! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 16:23 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review Cheers will add to todo list. But just gives me more pages to remember and exclude from future updates. :-( From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 14:20 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review Ok here is what you need to do. Find the php code for peer in website_code/php/properties/ Edit it to have a second textbox for text entry Change the insert code to add the email then some delimiter, suggest - *** if both variables are sent Then on the peer review submit page, peer.php in the root folder, add a php split on the delimiter if found. Easy peasy From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 14:18 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review Pat I'm not sure this is used much but yes perhaps the author submits which email replies go to. I can think of advantages with that too e.g. author sends link but wants/needs feedback to go to a colleague. Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 13:56 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review What?s twitter? 3) It won?t. But it works here. Well until we have to fix it. So, you want Peer review to work across multiple email domains, or for people to submit an address to which to send peer review too? Pat From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 13:52 To: 'Xerte discussion list' Subject: [Xerte] XOT Peer review Hi Pat I'm guessing it's you that has been replying to this on Twitter and the char limit obviously makes it difficult so thought it better to reply here... Can you explain exactly how the peer review system identifies the email address? If I understand correctly this should work something like this... 1. Author enables peer review and sends the link by email to a colleague. Good to know this works without needing to make the LO public. 2. The colleague reviews the LO and types and submits feedback via the form on the review page. 3. I think you're saying details added to site details then appends the username to the sitedetails info to determine the email to send to. On the sandpit or other installations where users don't use the same email domain how would this work? Even with an installation used by staff within one organisation it will not always follow that their username and email format are always consistent. The peer review system is still useful but with installations like the sandpit probably needs a message prompting to send feedback via email rather than the form - if my assumptions are correct? 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 mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Sun Jul 31 16:55:52 2011 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sun, 31 Jul 2011 11:55:52 -0400 Subject: [Xerte] Re: could you provide an updated XOT zip please? In-Reply-To: References: , <826FA59EEA0A914FA34AECF56FD831A80BE09A9E@VUIEXCHA.ad.nottingham.ac.uk>, <00b501cb54d4$c278aec0$476a0c40$@co.uk>, <826FA59EEA0A914FA34AECF56FD831A80BE4F193@VUIEXCHA.ad.nottingham.ac.uk>, <00d701cb54d8$71e9adc0$55bd0940$@co.uk>, <826FA59EEA0A914FA34AECF56FD831A80BE4F214@VUIEXCHA.ad.nottingham.ac.uk>, <012201cb54e9$deaffde0$9c0ff9a0$@co.uk>, <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk>, , <8AC7170D-C5E1-4D49-9A4C-B8D80C0F6830@googlemail.com>, , , Message-ID: Good. It's the last refuge of scoundrels... From: franck-petit at live.fr To: xerte at lists.nottingham.ac.uk Date: Sun, 31 Jul 2011 19:32:08 +0400 Subject: [Xerte] Re: could you provide an updated XOT zip please? No, I don?t do php at all. De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley Envoy? : dimanche 31 juillet 2011 18:00 ? : Xerte discussion list Objet : [Xerte] Re: could you provide an updated XOT zip please? Ok. Sounds like the session isn't being set. Do you do any php? On 31 Jul 2011, at 14:39, Franck Petit wrote:Thanks Pat, but even if I try logging into management without having logged into toolkits first I get the same result. I tried from another PC with the same result.Franck De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley Envoy? : dimanche 31 juillet 2011 11:22 ? : Xerte discussion list Objet : [Xerte] Re: could you provide an updated XOT zip please? The svn is the most up to date code, I doubt much has changed in the management side since the last zip. I would imagine the management problem is because the session of a user is still valid for your pc. Try logging into management without having logged into toolkitts first. The zip doesn't need updating that often as it's usually the models that change to add in new features, not fix bugs. On 31 Jul 2011, at 05:03, Franck Petit wrote:Hi,I have this problem as admin on a fresh install of XOT 1.6: after login a ?the feature is for administrators only? is displayed. I have checked XOT on google code but found it too difficult to use SVN (I really tried) I noticed many changes were made since the last release. Could someone please send a link to an updated zip of XOT? It would be great if there was a weekly release as this is the case with moodle.Cheers, Franck De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Patrick Lockley Envoy? : mercredi 15 septembre 2010 19:37 ? : Xerte discussion list Objet : RE: [Xerte] XOT Peer review Stop it with the puppy dog eyes! I would do it if I had the time. I am sure Dave could do it in about 5 minutes! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 16:23 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review Cheers will add to todo list.But just gives me more pages to remember and exclude from future updates. :-( From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 14:20 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review Ok here is what you need to do. Find the php code for peer in website_code/php/properties/ Edit it to have a second textbox for text entry Change the insert code to add the email then some delimiter, suggest - *** if both variables are sent Then on the peer review submit page, peer.php in the root folder, add a php split on the delimiter if found. Easy peasy From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 14:18 To: 'Xerte discussion list' Subject: RE: [Xerte] XOT Peer review PatI'm not sure this is used much but yes perhaps the author submits which email replies go to. I can think of advantages with that too e.g. author sends link but wants/needs feedback to go to a colleague. Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley Sent: 15 September 2010 13:56 To: Xerte discussion list Subject: RE: [Xerte] XOT Peer review What?s twitter? 3) It won?t. But it works here. Well until we have to fix it. So, you want Peer review to work across multiple email domains, or for people to submit an address to which to send peer review too? Pat From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 15 September 2010 13:52 To: 'Xerte discussion list' Subject: [Xerte] XOT Peer review Hi PatI'm guessing it's you that has been replying to this on Twitter and the char limit obviously makes it difficult so thought it better to reply here... Can you explain exactly how the peer review system identifies the email address? If I understand correctly this should work something like this... 1. Author enables peer review and sends the link by email to a colleague. Good to know this works without needing to make the LO public.2. The colleague reviews the LO and types and submits feedback via the form on the review page.3. I think you're saying details added to site details then appends the username to the sitedetails info to determine the email to send to. On the sandpit or other installations where users don't use the same email domain how would this work? Even with an installation used by staff within one organisation it will not always follow that their username and email format are always consistent. The peer review system is still useful but with installations like the sandpit probably needs a message prompting to send feedback via email rather than the form - if my assumptions are correct? CheersRon This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation._______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Jul 31 18:29:55 2011 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 31 Jul 2011 18:29:55 +0100 Subject: [Xerte] Re: could you provide an updated XOT zip please? In-Reply-To: References: <826FA59EEA0A914FA34AECF56FD831A80BE09A9E@VUIEXCHA.ad.nottingham.ac.uk> <00b501cb54d4$c278aec0$476a0c40$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F193@VUIEXCHA.ad.nottingham.ac.uk> <00d701cb54d8$71e9adc0$55bd0940$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F214@VUIEXCHA.ad.nottingham.ac.uk> <012201cb54e9$deaffde0$9c0ff9a0$@co.uk> <826FA59EEA0A914FA34AECF56FD831A80BE4F454@VUIEXCHA.ad.nottingham.ac.uk> <8AC7170D-C5E1-4D49-9A4C-B8D80C0F6830@googlemail.com> Message-ID: <27E9AE32-9030-4D1C-B9FA-9A36C12F284B@googlemail.com> Are you using the Moodlepatch? On 31 Jul 2011, at 16:55, Dave Burnett wrote: > > > Good. > > It's the last refuge of scoundrels... > > > > > From: franck-petit at live.fr > > To: xerte at lists.nottingham.ac.uk > Date: Sun, 31 Jul 2011 19:32:08 +0400 > Subject: [Xerte] Re: could you provide an updated XOT zip please? > > No, I don?t do php at all. > > > > De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley > Envoy? : dimanche 31 juillet 2011 18:00 > ? : Xerte discussion list > Objet : [Xerte] Re: could you provide an updated XOT zip please? > > > > Ok. Sounds like the session isn't being set. Do you do any php? > > On 31 Jul 2011, at 14:39, Franck Petit wrote: > > Thanks Pat, but even if I try logging into management without having logged into toolkits first I get the same result. I tried from another PC with the same result. > > Franck > > > > De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Pat Lockley > Envoy? : dimanche 31 juillet 2011 11:22 > ? : Xerte discussion list > Objet : [Xerte] Re: could you provide an updated XOT zip please? > > > > The svn is the most up to date code, I doubt much has changed in the management side since the last zip. > > > > I would imagine the management problem is because the session of a user is still valid for your pc. > > > > Try logging into management without having logged into toolkitts first. > > > > The zip doesn't need updating that often as it's usually the models that change to add in new features, not fix bugs. > > On 31 Jul 2011, at 05:03, Franck Petit wrote: > > Hi, > > I have this problem as admin on a fresh install of XOT 1.6: after login a ?the feature is for administrators only? is displayed. I have checked XOT on google code but found it too difficult to use SVN (I really tried) I noticed many changes were made since the last release. Could someone please send a link to an updated zip of XOT? It would be great if there was a weekly release as this is the case with moodle. > > Cheers, Franck > > > > > > > > De : xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] De la part de Patrick Lockley > Envoy? : mercredi 15 septembre 2010 19:37 > ? : Xerte discussion list > Objet : RE: [Xerte] XOT Peer review > > > > Stop it with the puppy dog eyes! I would do it if I had the time. > > > > I am sure Dave could do it in about 5 minutes! > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 16:23 > To: 'Xerte discussion list' > Subject: RE: [Xerte] XOT Peer review > > > > Cheers will add to todo list. > > But just gives me more pages to remember and exclude from future updates. :-( > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley > Sent: 15 September 2010 14:20 > To: Xerte discussion list > Subject: RE: [Xerte] XOT Peer review > > > > Ok here is what you need to do. > > > > Find the php code for peer in website_code/php/properties/ > > > > Edit it to have a second textbox for text entry > > > > Change the insert code to add the email then some delimiter, suggest - *** if both variables are sent > > > > Then on the peer review submit page, peer.php in the root folder, add a php split on the delimiter if found. > > > > Easy peasy > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell > Sent: 15 September 2010 14:18 > To: 'Xerte discussion list' > Subject: RE: [Xerte] XOT Peer review > > > > Pat > > I'm not sure this is used much but yes perhaps the author submits which email replies go to. I can think of advantages with that too e.g. author sends link but wants/needs feedback to go to a colleague. > > > > Ron > > > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Patrick Lockley > Sent: 15 September 2010 13:56 > To: Xerte discussion list > Subject: RE: [Xerte] XOT Peer review > > > > What?s twitter? > > > > 3) It won?t. But it works here. Well until we have to fix it. > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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: