From ashok.ranade2 at gmail.com Sat Dec 1 06:34:50 2012 From: ashok.ranade2 at gmail.com (Ashok Ranade) Date: Sat, 1 Dec 2012 12:04:50 +0530 Subject: [Xerte] Re: animation In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: While the animation problem was solved through the use of event icon and setting the properties for icon and event, is there a way of doing it through code without using event icon on the tree? I tried ball.broadcast('onAnimateComplete') but it did not work Regards Ashok On Wed, Nov 28, 2012 at 7:11 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > You eed to wait for onAnimateCOmplete as Dave suggested. See the help > for setting up events,**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ashok Ranade > *Sent:* 28 November 2012 12:44 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: animation**** > > ** ** > > Dear Mr.Julian**** > > ** ** > > Thanks for your prompt reply. But I have still not succeeded. I have > attached a loop for creating wait. But now the spot remains in the original > position (20,20) for the wait period and then the second animation starts. > The first animation is just not getting executed(Seemingly). Incidentally > the third parameter in the animate function should perhaps provide the > delay automatically?**** > > ** ** > > Well following is the modified code. **** > > ** ** > > ball.animate(400,200,100,'linearTween');**** > > var i:Number = 0;**** > > while (true) { **** > > **** > > if (i >= 20000) { **** > > break; // this will terminate/exit the loop **** > > } **** > > i++; **** > > } **** > > ** ** > > ball.animate(100,100,100,'linearTween');**** > > ** ** > > thanking you **** > > ** ** > > yours sincerely**** > > ** ** > > Ashok**** > > ** ** > > On Wed, Nov 28, 2012 at 3:04 PM, Julian Tenney < > Julian.Tenney at nottingham.ac.uk> wrote:**** > > You?re not waiting for the first animation to complete before starting the > second one.**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ashok Ranade > *Sent:* 28 November 2012 00:50 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] animation**** > > **** > > I am stuck in a simple animation. What I am trying to do is to move a > small ball from the position (20,20) to position (400,200) and then to > position (100,100). For this I have written the following code.**** > > ball.animate(400,200,100,'linearTween');**** > > ball.animate(100,100,100,'linearTween');**** > > The animation from (20,20) to (100,100) is visible however the earlier > animation from (20,20) to (400,200) is not seen at all. What can be the > reason ? The total tree is as follows.(ID of the drawing is ball)**** > > Page**** > > Drawing**** > > Interaction**** > > Button**** > > Code**** > > **** > > Regards**** > > **** > > Ashok **** > > > > **** > > > _______________________________________________ > 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 -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Sat Dec 1 13:13:49 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sat, 1 Dec 2012 08:13:49 -0500 Subject: [Xerte] Re: animation In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: You might be able to capture it with a function, not sure. But the point of the event trap is to stop the flow so the animation will run properly. A function, even if it works, will not do that. What's the problem with using the tree? Date: Sat, 1 Dec 2012 12:04:50 +0530 From: ashok.ranade2 at gmail.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: animation While the animation problem was solved through the use of event icon and setting the properties for icon and event, is there a way of doing it through code without using event icon on the tree? I tried ball.broadcast('onAnimateComplete') but it did not work Regards Ashok On Wed, Nov 28, 2012 at 7:11 PM, Julian Tenney wrote: You eed to wait for onAnimateCOmplete as Dave suggested. See the help for setting up events, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ashok Ranade Sent: 28 November 2012 12:44 To: Xerte discussion list Subject: [Xerte] Re: animation Dear Mr.Julian Thanks for your prompt reply. But I have still not succeeded. I have attached a loop for creating wait. But now the spot remains in the original position (20,20) for the wait period and then the second animation starts. The first animation is just not getting executed(Seemingly). Incidentally the third parameter in the animate function should perhaps provide the delay automatically? Well following is the modified code. ball.animate(400,200,100,'linearTween'); var i:Number = 0; while (true) { if (i >= 20000) { break; // this will terminate/exit the loop } i++; } ball.animate(100,100,100,'linearTween'); thanking you yours sincerely Ashok On Wed, Nov 28, 2012 at 3:04 PM, Julian Tenney wrote: You?re not waiting for the first animation to complete before starting the second one. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ashok Ranade Sent: 28 November 2012 00:50 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] animation I am stuck in a simple animation. What I am trying to do is to move a small ball from the position (20,20) to position (400,200) and then to position (100,100). For this I have written the following code. ball.animate(400,200,100,'linearTween'); ball.animate(100,100,100,'linearTween'); The animation from (20,20) to (100,100) is visible however the earlier animation from (20,20) to (400,200) is not seen at all. What can be the reason ? The total tree is as follows.(ID of the drawing is ball) Page Drawing Interaction Button Code Regards Ashok _______________________________________________ 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ashok.ranade2 at gmail.com Sat Dec 1 13:52:07 2012 From: ashok.ranade2 at gmail.com (Ashok Ranade) Date: Sat, 1 Dec 2012 19:22:07 +0530 Subject: [Xerte] Re: animation In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Well, if I can do it with a code , I can write a loop to mimic the random movement of many small particles in a vessel. So when the event is on the tree my tree can become very big. (Is it possible to keep tree elements in a loop? If that is so there should be no problem.) Thanks Ashok On Sat, Dec 1, 2012 at 6:43 PM, Dave Burnett wrote: > > You might be able to capture it with a function, not sure. > > But the point of the event trap is to stop the flow so the animation will > run properly. > > A function, even if it works, will not do that. > > What's the problem with using the tree? > > > ------------------------------ > Date: Sat, 1 Dec 2012 12:04:50 +0530 > > From: ashok.ranade2 at gmail.com > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: animation > > While the animation problem was solved through the use of event icon and > setting the properties for icon and event, is there a way of doing it > through code without using event icon on the tree? I tried > ball.broadcast('onAnimateComplete') but it did not work > > Regards > > Ashok > > On Wed, Nov 28, 2012 at 7:11 PM, Julian Tenney < > Julian.Tenney at nottingham.ac.uk> wrote: > > You eed to wait for onAnimateCOmplete as Dave suggested. See the help > for setting up events,**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ashok Ranade > *Sent:* 28 November 2012 12:44 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: animation**** > > ** ** > > Dear Mr.Julian**** > > ** ** > > Thanks for your prompt reply. But I have still not succeeded. I have > attached a loop for creating wait. But now the spot remains in the original > position (20,20) for the wait period and then the second animation starts. > The first animation is just not getting executed(Seemingly). Incidentally > the third parameter in the animate function should perhaps provide the > delay automatically?**** > > ** ** > > Well following is the modified code. **** > > ** ** > > ball.animate(400,200,100,'linearTween');**** > > var i:Number = 0;**** > > while (true) { **** > > **** > > if (i >= 20000) { **** > > break; // this will terminate/exit the loop **** > > } **** > > i++; **** > > } **** > > ** ** > > ball.animate(100,100,100,'linearTween');**** > > ** ** > > thanking you **** > > ** ** > > yours sincerely**** > > ** ** > > Ashok**** > > ** ** > > On Wed, Nov 28, 2012 at 3:04 PM, Julian Tenney < > Julian.Tenney at nottingham.ac.uk> wrote:**** > > You?re not waiting for the first animation to complete before starting the > second one.**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ashok Ranade > *Sent:* 28 November 2012 00:50 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] animation**** > > **** > > I am stuck in a simple animation. What I am trying to do is to move a > small ball from the position (20,20) to position (400,200) and then to > position (100,100). For this I have written the following code.**** > > ball.animate(400,200,100,'linearTween');**** > > ball.animate(100,100,100,'linearTween');**** > > The animation from (20,20) to (100,100) is visible however the earlier > animation from (20,20) to (400,200) is not seen at all. What can be the > reason ? The total tree is as follows.(ID of the drawing is ball)**** > > Page**** > > Drawing**** > > Interaction**** > > Button**** > > Code**** > > **** > > Regards**** > > **** > > Ashok **** > > > > **** > > > _______________________________________________ > 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 > > > > > _______________________________________________ > 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 Sun Dec 2 13:08:22 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Sun, 2 Dec 2012 08:08:22 -0500 Subject: [Xerte] Decision icon repeat In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , Message-ID: What goes in the property sheet of a decision icon to have it repeat a set number of times? -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Mon Dec 3 11:55:28 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 3 Dec 2012 06:55:28 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , Message-ID: No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Mon Dec 3 13:56:31 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Mon, 3 Dec 2012 13:56:31 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote: > No takers? > > Help says the Repeat property will take All or a number. > If I use a number, nothing happens. > > > > ------------------------------ > From: d_b_burnett at hotmail.com > To: xerte at lists.nottingham.ac.uk > Subject: Decision icon repeat > Date: Sun, 2 Dec 2012 08:08:22 -0500 > > > What goes in the property sheet of a decision icon to have it repeat a > set number of times? > > > > > > _______________________________________________ > 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 johnathan.kemp at ntlworld.com Mon Dec 3 14:05:23 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Mon, 3 Dec 2012 14:05:23 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of *'sequence', 'randomUnused', 'randomAny', or 'calculate'. * *'sequence' *loops through the children of the decision icon in order. *'randomUnused' *loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. *'randomAny'* loops through the children until the repeat property is satisfied, and may visit the same child more than once. '*calculate*' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote: > I have taken a look at the model files to see which pages use the decision > icon. > > After finding that the bullets page uses the decision icon I then ran some > tests > > By default the decision icon in the bullets page is set to > > all > > This results in the page listing every bullet. > > If however you replace the repeat value in the property page with a number > e.g. > > 3 > > Then only the first three bullets gets listed. > > So I guess the answer is you put a number in (without any quotes) and the > decision icon will run that many times. > > Hope that helps. > > You may find that taking a look at the bullets.rlm file in your xerte > installs \pages\models\ folder will cast some light on its use. > > Kind regards > > Johnathan > > PS sorry for the delay in replying - very busy on the Connector page > documentation at the moment. > > On 3 December 2012 11:55, Dave Burnett wrote: > >> No takers? >> >> Help says the Repeat property will take All or a number. >> If I use a number, nothing happens. >> >> >> >> ------------------------------ >> From: d_b_burnett at hotmail.com >> To: xerte at lists.nottingham.ac.uk >> Subject: Decision icon repeat >> Date: Sun, 2 Dec 2012 08:08:22 -0500 >> >> >> What goes in the property sheet of a decision icon to have it repeat a >> set number of times? >> >> >> >> >> >> _______________________________________________ >> 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 Mon Dec 3 14:37:41 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 3 Dec 2012 14:37:41 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD827A@EXCHANGE1.ad.nottingham.ac.uk> Nothing? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 11:55 To: Xerte list Subject: [Xerte] Re: Decision icon repeat No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Dec 3 14:49:17 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 3 Dec 2012 14:49:17 +0000 Subject: [Xerte] Re: animation In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk> <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8295@EXCHANGE1.ad.nottingham.ac.uk> Where is the code you want to execute ? How will it know the animation has finished in order to broadcast the event? You can't add a function as an event listener, if that's what you mean. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ashok Ranade Sent: 01 December 2012 06:35 To: Xerte discussion list Subject: [Xerte] Re: animation While the animation problem was solved through the use of event icon and setting the properties for icon and event, is there a way of doing it through code without using event icon on the tree? I tried ball.broadcast('onAnimateComplete') but it did not work Regards Ashok On Wed, Nov 28, 2012 at 7:11 PM, Julian Tenney > wrote: You eed to wait for onAnimateCOmplete as Dave suggested. See the help for setting up events, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ashok Ranade Sent: 28 November 2012 12:44 To: Xerte discussion list Subject: [Xerte] Re: animation Dear Mr.Julian Thanks for your prompt reply. But I have still not succeeded. I have attached a loop for creating wait. But now the spot remains in the original position (20,20) for the wait period and then the second animation starts. The first animation is just not getting executed(Seemingly). Incidentally the third parameter in the animate function should perhaps provide the delay automatically? Well following is the modified code. ball.animate(400,200,100,'linearTween'); var i:Number = 0; while (true) { if (i >= 20000) { break; // this will terminate/exit the loop } i++; } ball.animate(100,100,100,'linearTween'); thanking you yours sincerely Ashok On Wed, Nov 28, 2012 at 3:04 PM, Julian Tenney > wrote: You're not waiting for the first animation to complete before starting the second one. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ashok Ranade Sent: 28 November 2012 00:50 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] animation I am stuck in a simple animation. What I am trying to do is to move a small ball from the position (20,20) to position (400,200) and then to position (100,100). For this I have written the following code. ball.animate(400,200,100,'linearTween'); ball.animate(100,100,100,'linearTween'); The animation from (20,20) to (100,100) is visible however the earlier animation from (20,20) to (400,200) is not seen at all. What can be the reason ? The total tree is as follows.(ID of the drawing is ball) Page Drawing Interaction Button Code Regards Ashok _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Mon Dec 3 15:40:31 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 3 Dec 2012 10:40:31 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , Message-ID: Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote: No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Mon Dec 3 19:36:23 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Mon, 3 Dec 2012 14:36:23 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD827A@EXCHANGE1.ad.nottingham.ac.uk> References: , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD827A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: No. Dec with 4 pages.First three have a drawing attached.Last page has a script with debug('here'); Below the dec is a script with ('exited'); If I set repeat to all I get hereexited if I set repeat to 4 I get exited From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Mon, 3 Dec 2012 14:37:41 +0000 Subject: [Xerte] Re: Decision icon repeat Nothing? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 11:55 To: Xerte list Subject: [Xerte] Re: Decision icon repeat No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 Dec 4 10:32:21 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk> No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Dec 4 11:12:46 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 4 Dec 2012 11:12:46 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD827A@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD85B1@EXCHANGE1.ad.nottingham.ac.uk> I've set up what you describe and it does exactly what I would expect it to do. What's not working? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 19:36 To: Xerte list Subject: [Xerte] Re: Decision icon repeat No. Dec with 4 pages. First three have a drawing attached. Last page has a script with debug('here'); Below the dec is a script with ('exited'); If I set repeat to all I get here exited if I set repeat to 4 I get exited ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Mon, 3 Dec 2012 14:37:41 +0000 Subject: [Xerte] Re: Decision icon repeat Nothing? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 11:55 To: Xerte list Subject: [Xerte] Re: Decision icon repeat No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: dec.rlo Type: application/octet-stream Size: 1014 bytes Desc: dec.rlo URL: From d_b_burnett at hotmail.com Tue Dec 4 12:14:53 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 4 Dec 2012 07:14:53 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk> References: , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: So it does differ from AW then?And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeatFurther to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use.annotatedDiagram.rlmbullets.rlmbuttonSequence.rlmcategories.rlmcolumnPage.rlmconnectorMenu.rlmcustomHotspots.rlmdialog.rlmdragDropLabel.rlminventory.rlmlinks.rlmlist.rlmmemory.rlmmenu.rlmperspectives.rlmquiz.rlmtable.rlmtext.rlmtextMatch.rlmthumbnailViewer.rlmtimeline.rlmtranscriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote:I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote:No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Tue Dec 4 12:30:26 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 4 Dec 2012 07:30:26 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD85B1@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , ,,, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD827A@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD85B1@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: OK, so this acts significantly differently than an AW dec then? AW DEC:Repeat: Fixed Number of Times 5Will loop through all attached icons 5 times.Repcount tracks # of loops, not the number of attached icons executed. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 11:12:46 +0000 Subject: [Xerte] Re: Decision icon repeat I?ve set up what you describe and it does exactly what I would expect it to do. What?s not working? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 19:36 To: Xerte list Subject: [Xerte] Re: Decision icon repeat No. Dec with 4 pages.First three have a drawing attached.Last page has a script with debug('here'); Below the dec is a script with ('exited'); If I set repeat to all I get hereexited if I set repeat to 4 I get exited From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Mon, 3 Dec 2012 14:37:41 +0000 Subject: [Xerte] Re: Decision icon repeatNothing? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 11:55 To: Xerte list Subject: [Xerte] Re: Decision icon repeat No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Dec 4 15:47:14 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk> Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then? And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: dec.rlo Type: application/octet-stream Size: 1014 bytes Desc: dec.rlo URL: From d_b_burnett at hotmail.com Tue Dec 4 16:01:40 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 4 Dec 2012 11:01:40 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , ,,, , , , ,,, ,,, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference.I don't see showing icon 1 then 2 then 3 as "looping"I see passing through the decision icon and repeating the above as looping.At least, that is how AW functioned. I'm sure I did this in the past.But maybe I was in a fever?It's like distant ship's smoke on the horizon. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then?And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeatNo, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeatFurther to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use.annotatedDiagram.rlmbullets.rlmbuttonSequence.rlmcategories.rlmcolumnPage.rlmconnectorMenu.rlmcustomHotspots.rlmdialog.rlmdragDropLabel.rlminventory.rlmlinks.rlmlist.rlmmemory.rlmmenu.rlmperspectives.rlmquiz.rlmtable.rlmtext.rlmtextMatch.rlmthumbnailViewer.rlmtimeline.rlmtranscriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote:I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote:No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 Dec 4 16:30:43 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , ,,, , , , ,,, ,,, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk> Only coming through in waves.... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference. I don't see showing icon 1 then 2 then 3 as "looping" I see passing through the decision icon and repeating the above as looping. At least, that is how AW functioned. I'm sure I did this in the past. But maybe I was in a fever? It's like distant ship's smoke on the horizon. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then? And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 Dec 4 16:46:52 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 4 Dec 2012 11:46:52 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,,, , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Trying to solve that posters animation issue. A loop would have been handy.Animate tonext pageAnimate froloop. It's trying to demonstrate say, Brownian motion of atoms.So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeat Only coming through in waves?. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference.I don't see showing icon 1 then 2 then 3 as "looping"I see passing through the decision icon and repeating the above as looping.At least, that is how AW functioned. I'm sure I did this in the past.But maybe I was in a fever?It's like distant ship's smoke on the horizon. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeatNot sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then?And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeatNo, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeatFurther to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use.annotatedDiagram.rlmbullets.rlmbuttonSequence.rlmcategories.rlmcolumnPage.rlmconnectorMenu.rlmcustomHotspots.rlmdialog.rlmdragDropLabel.rlminventory.rlmlinks.rlmlist.rlmmemory.rlmmenu.rlmperspectives.rlmquiz.rlmtable.rlmtext.rlmtextMatch.rlmthumbnailViewer.rlmtimeline.rlmtranscriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote:I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote:No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Dec 4 17:06:46 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,,, , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk> I'd do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy. Animate to next page Animate fro loop. It's trying to demonstrate say, Brownian motion of atoms. So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeat Only coming through in waves.... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference. I don't see showing icon 1 then 2 then 3 as "looping" I see passing through the decision icon and repeating the above as looping. At least, that is how AW functioned. I'm sure I did this in the past. But maybe I was in a fever? It's like distant ship's smoke on the horizon. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then? And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: animate.rlo Type: application/octet-stream Size: 899 bytes Desc: animate.rlo URL: From d_b_burnett at hotmail.com Tue Dec 4 17:33:45 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Tue, 4 Dec 2012 12:33:45 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , , ,,, , , , ,,, , , , , , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I think we got this far using the event trap.But how about hundreds of objects? How to get a code gate bouncing back and forth type thing.animate leftanimate right animate left animate right etc From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeat I?d do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy.Animate tonext pageAnimate froloop. It's trying to demonstrate say, Brownian motion of atoms.So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeatOnly coming through in waves?. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference.I don't see showing icon 1 then 2 then 3 as "looping"I see passing through the decision icon and repeating the above as looping.At least, that is how AW functioned. I'm sure I did this in the past.But maybe I was in a fever?It's like distant ship's smoke on the horizon. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeatNot sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then?And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeatNo, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeatFurther to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use.annotatedDiagram.rlmbullets.rlmbuttonSequence.rlmcategories.rlmcolumnPage.rlmconnectorMenu.rlmcustomHotspots.rlmdialog.rlmdragDropLabel.rlminventory.rlmlinks.rlmlist.rlmmemory.rlmmenu.rlmperspectives.rlmquiz.rlmtable.rlmtext.rlmtextMatch.rlmthumbnailViewer.rlmtimeline.rlmtranscriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote:I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote:No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Dec 5 15:40:22 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 5 Dec 2012 15:40:22 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , , , , , , , , ,,, , , , , , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8C83@EXCHANGE1.ad.nottingham.ac.uk> What are you trying to achieve exactly? Is this Brownian motion, or a marble run? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 17:34 To: Xerte list Subject: [Xerte] Re: Decision icon repeat I think we got this far using the event trap. But how about hundreds of objects? How to get a code gate bouncing back and forth type thing. animate left animate right animate left animate right etc ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeat I'd do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy. Animate to next page Animate fro loop. It's trying to demonstrate say, Brownian motion of atoms. So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeat Only coming through in waves.... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference. I don't see showing icon 1 then 2 then 3 as "looping" I see passing through the decision icon and repeating the above as looping. At least, that is how AW functioned. I'm sure I did this in the past. But maybe I was in a fever? It's like distant ship's smoke on the horizon. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then? And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Dec 5 15:46:38 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 5 Dec 2012 10:46:38 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8C83@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , ,,, , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , ,,, , , , , , , , , , ,,, , , , ,,,,, , , , , , , , ,,,,, , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8C83@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: use internal drawings as objects.Animate objects so that they appear to vibrate. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:40:22 +0000 Subject: [Xerte] Re: Decision icon repeat What are you trying to achieve exactly? Is this Brownian motion, or a marble run? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 17:34 To: Xerte list Subject: [Xerte] Re: Decision icon repeat I think we got this far using the event trap.But how about hundreds of objects? How to get a code gate bouncing back and forth type thing.animate leftanimate right animate left animate right etcFrom: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeatI?d do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy.Animate tonext pageAnimate froloop. It's trying to demonstrate say, Brownian motion of atoms.So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeatOnly coming through in waves?. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference.I don't see showing icon 1 then 2 then 3 as "looping"I see passing through the decision icon and repeating the above as looping.At least, that is how AW functioned. I'm sure I did this in the past.But maybe I was in a fever?It's like distant ship's smoke on the horizon. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeatNot sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then?And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeatNo, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeatFurther to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use.annotatedDiagram.rlmbullets.rlmbuttonSequence.rlmcategories.rlmcolumnPage.rlmconnectorMenu.rlmcustomHotspots.rlmdialog.rlmdragDropLabel.rlminventory.rlmlinks.rlmlist.rlmmemory.rlmmenu.rlmperspectives.rlmquiz.rlmtable.rlmtext.rlmtextMatch.rlmthumbnailViewer.rlmtimeline.rlmtranscriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote:I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote:No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 _______________________________________________ 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 Wed Dec 5 15:54:48 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 5 Dec 2012 15:54:48 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , , , , , , , , , , , , ,,,,, , , , , , , , ,,,,, , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8C83@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8CA1@EXCHANGE1.ad.nottingham.ac.uk> Vibrate forever? Randomly, like pick -3 < x < 3 -3 < y < 3 then apply the new random x y offsets to the object? Then you can use the event trap as shown From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 15:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat use internal drawings as objects. Animate objects so that they appear to vibrate. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:40:22 +0000 Subject: [Xerte] Re: Decision icon repeat What are you trying to achieve exactly? Is this Brownian motion, or a marble run? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 17:34 To: Xerte list Subject: [Xerte] Re: Decision icon repeat I think we got this far using the event trap. But how about hundreds of objects? How to get a code gate bouncing back and forth type thing. animate left animate right animate left animate right etc ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeat I'd do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy. Animate to next page Animate fro loop. It's trying to demonstrate say, Brownian motion of atoms. So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeat Only coming through in waves.... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference. I don't see showing icon 1 then 2 then 3 as "looping" I see passing through the decision icon and repeating the above as looping. At least, that is how AW functioned. I'm sure I did this in the past. But maybe I was in a fever? It's like distant ship's smoke on the horizon. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then? And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 _______________________________________________ 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 Wed Dec 5 16:55:10 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 5 Dec 2012 11:55:10 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8CA1@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , ,,, , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , ,,, , , , , , , , , , , , ,,, , , , ,,,,,,, , , , , , , , ,,,,,,, , , , , ,,, , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8C83@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8CA1@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: How do I deal with 100 objects?100 event traps? That's what I'm trying to avoid. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:54:48 +0000 Subject: [Xerte] Re: Decision icon repeat Vibrate forever? Randomly, like pick -3 < x < 3 -3 < y < 3 then apply the new random x y offsets to the object? Then you can use the event trap as shown From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 15:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat use internal drawings as objects.Animate objects so that they appear to vibrate. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:40:22 +0000 Subject: [Xerte] Re: Decision icon repeatWhat are you trying to achieve exactly? Is this Brownian motion, or a marble run? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 17:34 To: Xerte list Subject: [Xerte] Re: Decision icon repeat I think we got this far using the event trap.But how about hundreds of objects? How to get a code gate bouncing back and forth type thing.animate leftanimate right animate left animate right etcFrom: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeatI?d do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy.Animate tonext pageAnimate froloop. It's trying to demonstrate say, Brownian motion of atoms.So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeatOnly coming through in waves?. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference.I don't see showing icon 1 then 2 then 3 as "looping"I see passing through the decision icon and repeating the above as looping.At least, that is how AW functioned. I'm sure I did this in the past.But maybe I was in a fever?It's like distant ship's smoke on the horizon. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeatNot sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then?And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeatNo, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeatFurther to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use.annotatedDiagram.rlmbullets.rlmbuttonSequence.rlmcategories.rlmcolumnPage.rlmconnectorMenu.rlmcustomHotspots.rlmdialog.rlmdragDropLabel.rlminventory.rlmlinks.rlmlist.rlmmemory.rlmmenu.rlmperspectives.rlmquiz.rlmtable.rlmtext.rlmtextMatch.rlmthumbnailViewer.rlmtimeline.rlmtranscriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote:I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote:No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Dec 5 17:03:11 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 5 Dec 2012 17:03:11 +0000 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: References: , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,,,,,,, , , , , , , , ,,,,,,, , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8C83@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8CA1@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8D41@EXCHANGE1.ad.nottingham.ac.uk> This is where bubbling events would be handy, cos then you could trap them on rootIcon and deal with target. I could add this to the engine, but I think it would be just as easy to build little vibrating swfs and load them? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 16:55 To: Xerte list Subject: [Xerte] Re: Decision icon repeat How do I deal with 100 objects? 100 event traps? That's what I'm trying to avoid. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:54:48 +0000 Subject: [Xerte] Re: Decision icon repeat Vibrate forever? Randomly, like pick -3 < x < 3 -3 < y < 3 then apply the new random x y offsets to the object? Then you can use the event trap as shown From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 15:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat use internal drawings as objects. Animate objects so that they appear to vibrate. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:40:22 +0000 Subject: [Xerte] Re: Decision icon repeat What are you trying to achieve exactly? Is this Brownian motion, or a marble run? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 17:34 To: Xerte list Subject: [Xerte] Re: Decision icon repeat I think we got this far using the event trap. But how about hundreds of objects? How to get a code gate bouncing back and forth type thing. animate left animate right animate left animate right etc ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeat I'd do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy. Animate to next page Animate fro loop. It's trying to demonstrate say, Brownian motion of atoms. So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeat Only coming through in waves.... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference. I don't see showing icon 1 then 2 then 3 as "looping" I see passing through the decision icon and repeating the above as looping. At least, that is how AW functioned. I'm sure I did this in the past. But maybe I was in a fever? It's like distant ship's smoke on the horizon. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then? And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Wed Dec 5 18:29:30 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 5 Dec 2012 13:29:30 -0500 Subject: [Xerte] Re: Decision icon repeat In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8D41@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716A91@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , ,,, , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48716D2F@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , , , ,,, , , , , , , , , , , , , , ,,, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,,, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD851D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD884D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD889D@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD88C1@EXCHANGE1.ad.nottingham.ac.uk>, , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8C83@EXCHANGE1.ad.nottingham.ac.uk>, , , , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8CA1@EXCHANGE1.ad.nottingham.ac.uk>, , <12C67A1EEC419342AF5E59DA31562C3F0C48CD8D41@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: >build little vibrating swfs and load them? That's the correct way of course, but I thought there might be way to do it internally.Maybe not, though one would think it. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 17:03:11 +0000 Subject: [Xerte] Re: Decision icon repeat This is where bubbling events would be handy, cos then you could trap them on rootIcon and deal with target. I could add this to the engine, but I think it would be just as easy to build little vibrating swfs and load them? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 16:55 To: Xerte list Subject: [Xerte] Re: Decision icon repeat How do I deal with 100 objects?100 event traps? That's what I'm trying to avoid. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:54:48 +0000 Subject: [Xerte] Re: Decision icon repeatVibrate forever? Randomly, like pick -3 < x < 3 -3 < y < 3 then apply the new random x y offsets to the object? Then you can use the event trap as shown From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 15:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat use internal drawings as objects.Animate objects so that they appear to vibrate. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:40:22 +0000 Subject: [Xerte] Re: Decision icon repeatWhat are you trying to achieve exactly? Is this Brownian motion, or a marble run? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 17:34 To: Xerte list Subject: [Xerte] Re: Decision icon repeat I think we got this far using the event trap.But how about hundreds of objects? How to get a code gate bouncing back and forth type thing.animate leftanimate right animate left animate right etcFrom: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeatI?d do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy.Animate tonext pageAnimate froloop. It's trying to demonstrate say, Brownian motion of atoms.So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeatOnly coming through in waves?. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference.I don't see showing icon 1 then 2 then 3 as "looping"I see passing through the decision icon and repeating the above as looping.At least, that is how AW functioned. I'm sure I did this in the past.But maybe I was in a fever?It's like distant ship's smoke on the horizon. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeatNot sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then?And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeatNo, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan.Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeatFurther to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use.annotatedDiagram.rlmbullets.rlmbuttonSequence.rlmcategories.rlmcolumnPage.rlmconnectorMenu.rlmcustomHotspots.rlmdialog.rlmdragDropLabel.rlminventory.rlmlinks.rlmlist.rlmmemory.rlmmenu.rlmperspectives.rlmquiz.rlmtable.rlmtext.rlmtextMatch.rlmthumbnailViewer.rlmtimeline.rlmtranscriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan wrote:I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett wrote:No takers? Help says the Repeat property will take All or a number.If I use a number, nothing happens. From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 _______________________________________________ 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From phsmith at rossvet.edu.kn Wed Dec 5 20:04:12 2012 From: phsmith at rossvet.edu.kn (Smith, Philip) Date: Wed, 5 Dec 2012 20:04:12 +0000 Subject: [Xerte] rootIcon.hideControls() Message-ID: Folks, Is there a way to undo rootIcon.hideControls()? I can't find one in the help file. My goal is to turn them off temporarily while students engage in an activity, and then turn them back on but there's now rootIcon.showControls() method. Regards, Phil Phil Smith MBCS Director of Learning Resources Ross University School of Veterinary Medicine P.O. Box 334 Basseterre, St. Kitts, West Indies Phone: 869.465.4161 ext 1213 Fax: 869.466.3478 Cell: 869.662.7624 Email: phsmith at rossvet.edu.kn www.RossU.edu [Description: cid:3370264314_3282185] This email (including any attachments) is confidential and may be legally privileged and is for the intended recipient only. Please notify the sender by return e-mail and delete this message from your system if you have received it by mistake. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited and may be a criminal offense. Any views in this message are those of the individual sender, except where the sender specifically states them to be the views of Ross University. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 6469 bytes Desc: image001.jpg URL: From d_b_burnett at hotmail.com Thu Dec 6 00:04:49 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Wed, 5 Dec 2012 19:04:49 -0500 Subject: [Xerte] Re: rootIcon.hideControls() In-Reply-To: References: Message-ID: enableControls()maybe. From: phsmith at rossvet.edu.kn To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 20:04:12 +0000 Subject: [Xerte] rootIcon.hideControls() Folks, Is there a way to undo rootIcon.hideControls()? I can?t find one in the help file. My goal is to turn them off temporarily while students engage in an activity, and then turn them back on but there?s now rootIcon.showControls() method. Regards, Phil Phil Smith MBCS Director of Learning Resources Ross University School of Veterinary Medicine P.O. Box 334 Basseterre, St. Kitts, West Indies Phone: 869.465.4161 ext 1213 Fax: 869.466.3478 Cell: 869.662.7624 Email: phsmith at rossvet.edu.kn www.RossU.edu This email (including any attachments) is confidential and may be legally privileged and is for the intended recipient only. Please notify the sender by return e-mail and delete this message from your system if you have received it by mistake. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited and may be a criminal offense. Any views in this message are those of the individual sender, except where the sender specifically states them to be the views of Ross University. _______________________________________________ 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 6469 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Thu Dec 6 10:52:18 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 6 Dec 2012 10:52:18 +0000 Subject: [Xerte] FW: Re: Decision icon repeat Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48CD8ECE@EXCHANGE1.ad.nottingham.ac.uk> You can do it this way, but the interpreted code isn't really fast enough. You might be able to find ways of making the vibrate loop go faster, but compiling it is really the answer. Once you get past about 50 balls it really slows up. From: Tenney Julian Sent: 05 December 2012 17:03 To: 'Xerte discussion list' Subject: RE: [Xerte] Re: Decision icon repeat This is where bubbling events would be handy, cos then you could trap them on rootIcon and deal with target. I could add this to the engine, but I think it would be just as easy to build little vibrating swfs and load them? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 16:55 To: Xerte list Subject: [Xerte] Re: Decision icon repeat How do I deal with 100 objects? 100 event traps? That's what I'm trying to avoid. From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:54:48 +0000 Subject: [Xerte] Re: Decision icon repeat Vibrate forever? Randomly, like pick -3 < x < 3 -3 < y < 3 then apply the new random x y offsets to the object? Then you can use the event trap as shown From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 05 December 2012 15:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat use internal drawings as objects. Animate objects so that they appear to vibrate. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Wed, 5 Dec 2012 15:40:22 +0000 Subject: [Xerte] Re: Decision icon repeat What are you trying to achieve exactly? Is this Brownian motion, or a marble run? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 17:34 To: Xerte list Subject: [Xerte] Re: Decision icon repeat I think we got this far using the event trap. But how about hundreds of objects? How to get a code gate bouncing back and forth type thing. animate left animate right animate left animate right etc ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 17:06:46 +0000 Subject: [Xerte] Re: Decision icon repeat I'd do it by holding an array of coordinates, and looping through that using the interaction icon to trap the completes, incrementing your index, and re-animating See attached. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:47 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Trying to solve that posters animation issue. A loop would have been handy. Animate to next page Animate fro loop. It's trying to demonstrate say, Brownian motion of atoms. So a couple hundred individual drawn items being animated. So what's the easy way I'm blind to? ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 16:30:43 +0000 Subject: [Xerte] Re: Decision icon repeat Only coming through in waves.... From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 16:02 To: Xerte list Subject: [Xerte] Re: Decision icon repeat "No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit," We have a semantic difference. I don't see showing icon 1 then 2 then 3 as "looping" I see passing through the decision icon and repeating the above as looping. At least, that is how AW functioned. I'm sure I did this in the past. But maybe I was in a fever? It's like distant ship's smoke on the horizon. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 15:47:14 +0000 Subject: [Xerte] Re: Decision icon repeat Not sure. It works the way it has for the last 5 years though. Maybe the loops were done by creating the children dynamically protoPage style? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 04 December 2012 12:15 To: Xerte list Subject: [Xerte] Re: Decision icon repeat So it does differ from AW then? And then RepCount is a different var as well then? I am positive I have had it operate a s a looping structure in the past. ________________________________ From: Julian.Tenney at nottingham.ac.uk To: xerte at lists.nottingham.ac.uk Date: Tue, 4 Dec 2012 10:32:21 +0000 Subject: [Xerte] Re: Decision icon repeat No, if you have 10 children and repeat is 3, you will loop through three children and then exit, not 10 children three times and then exit, From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Dave Burnett Sent: 03 December 2012 15:41 To: Xerte list Subject: [Xerte] Re: Decision icon repeat Hi Jonathan. Thanks for looking in to that. The issue is that in Authorware, which Julian based the flow structure of Xerte on, setting a decision icons repeat property meant it would loop through that decision icon and all attached icons that specified number of times. It would essentially repeat the entire attached sequence of icons x times. I know I had this issue a couple years back, and the solution was a bit obtuse, but I can't remember it or track it down in the archives. Dave ________________________________ Date: Mon, 3 Dec 2012 14:05:23 +0000 From: johnathan.kemp at ntlworld.com To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Re: Decision icon repeat Further to my earlier post the Branch property will also affect what happens. The help file reads A setting of 'sequence', 'randomUnused', 'randomAny', or 'calculate'. 'sequence' loops through the children of the decision icon in order. 'randomUnused' loops through the children in a random order, until all the paths are used, or until the repeat property is satisfied. 'randomAny' loops through the children until the repeat property is satisfied, and may visit the same child more than once. 'calculate' allows you to route the flow into a particular page of the decision icon using the path property, which is zero based - to flow into the third page, set branch to calculate, and the path property to 2. The following models use the decision icon and may give further insight into its use. annotatedDiagram.rlm bullets.rlm buttonSequence.rlm categories.rlm columnPage.rlm connectorMenu.rlm customHotspots.rlm dialog.rlm dragDropLabel.rlm inventory.rlm links.rlm list.rlm memory.rlm menu.rlm perspectives.rlm quiz.rlm table.rlm text.rlm textMatch.rlm thumbnailViewer.rlm timeline.rlm transcriptReader.rlm The only one that does not set repeat-"all" in the model code is text.rlm which has repeat="1" and branch="calculate" I don't know if this will help you to resolve your issue. Hope it does :-) Johnathan On 3 December 2012 13:56, Kemp Johnathan > wrote: I have taken a look at the model files to see which pages use the decision icon. After finding that the bullets page uses the decision icon I then ran some tests By default the decision icon in the bullets page is set to all This results in the page listing every bullet. If however you replace the repeat value in the property page with a number e.g. 3 Then only the first three bullets gets listed. So I guess the answer is you put a number in (without any quotes) and the decision icon will run that many times. Hope that helps. You may find that taking a look at the bullets.rlm file in your xerte installs \pages\models\ folder will cast some light on its use. Kind regards Johnathan PS sorry for the delay in replying - very busy on the Connector page documentation at the moment. On 3 December 2012 11:55, Dave Burnett > wrote: No takers? Help says the Repeat property will take All or a number. If I use a number, nothing happens. ________________________________ From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Subject: Decision icon repeat Date: Sun, 2 Dec 2012 08:08:22 -0500 What goes in the property sheet of a decision icon to have it repeat a set number of times? _______________________________________________ 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 _______________________________________________ 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 _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: animate.rlo Type: application/octet-stream Size: 1205 bytes Desc: animate.rlo URL: From E.Cowell at wlv.ac.uk Fri Dec 7 16:47:07 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Fri, 7 Dec 2012 16:47:07 +0000 Subject: [Xerte] Embedding web pages in XOT 1.8 Message-ID: <7E5A35071B997640A6A149C48AC5622A078851@EXCHMBX10X03.unv.wlv.ac.uk> Hello there, I've finally got around to playing with XOT and have been using the embedded navigator template. I'm finding if I set the Xerte window size to "fill screen" and scroll around the iframe it doesn't redraw properly, and leaves black lines (this is in chrome, I haven't checked in other browsers). (This also happens with the play_560 demo of the embedded navigator template). I expect you're aware of this but just thought I'd mention in case. If it's already fixed is there a new version I should download and if so where from? Thanks if you can advise Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Sun Dec 9 17:39:10 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 9 Dec 2012 17:39:10 +0000 Subject: [Xerte] Re: Embedding web pages in XOT 1.8 In-Reply-To: <7E5A35071B997640A6A149C48AC5622A078851@EXCHMBX10X03.unv.wlv.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A078851@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: <3077A153-D4B0-46CA-B162-DE80D2601535@googlemail.com> Hi Liz, I don't think the embedded page scales as the xerte player does. Happy to see if we could code a version to mirror the rescaling. Sorry if this isn't the best news Pat On 7 Dec 2012, at 16:47, "Cowell, Elizabeth" wrote: > Hello there, > > I?ve finally got around to playing with XOT and have been using the embedded navigator template. > > I?m finding if I set the Xerte window size to ?fill screen? and scroll around the iframe it doesn?t redraw properly, and leaves black lines (this is in chrome, I haven?t checked in other browsers). (This also happens with the play_560 demo of the embedded navigator template). I expect you?re aware of this but just thought I?d mention in case. > > If it?s already fixed is there a new version I should download and if so where from? > > Thanks if you can advise > Liz > > Liz Cowell > Learning and Skills Librarian > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk > > > -- > Scanned by iCritical. > > > > > > _______________________________________________ > 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 Andy.Stenhouse at northampton.ac.uk Mon Dec 10 13:20:18 2012 From: Andy.Stenhouse at northampton.ac.uk (Stenhouse Andy) Date: Mon, 10 Dec 2012 13:20:18 +0000 Subject: [Xerte] Re: Embedding web pages in XOT 1.8 In-Reply-To: <3077A153-D4B0-46CA-B162-DE80D2601535@googlemail.com> References: <7E5A35071B997640A6A149C48AC5622A078851@EXCHMBX10X03.unv.wlv.ac.uk> <3077A153-D4B0-46CA-B162-DE80D2601535@googlemail.com> Message-ID: <2B5030FF00A6F94FAA43EEE660404FA03FD2FD61@HELLCAT.nene.ac.uk> Hi Pat, That would be great if you could, as I?d like that for something I wanted to do. Cheers, Andy Stenhouse From: Pat Lockley [mailto:patrick.lockley at googlemail.com] Sent: 09 December 2012 17:39 To: Xerte discussion list Subject: [Xerte] Re: Embedding web pages in XOT 1.8 Hi Liz, I don't think the embedded page scales as the xerte player does. Happy to see if we could code a version to mirror the rescaling. Sorry if this isn't the best news Pat On 7 Dec 2012, at 16:47, "Cowell, Elizabeth" > wrote: Hello there, I?ve finally got around to playing with XOT and have been using the embedded navigator template. I?m finding if I set the Xerte window size to ?fill screen? and scroll around the iframe it doesn?t redraw properly, and leaves black lines (this is in chrome, I haven?t checked in other browsers). (This also happens with the play_560 demo of the embedded navigator template). I expect you?re aware of this but just thought I?d mention in case. If it?s already fixed is there a new version I should download and if so where from? Thanks if you can advise Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte 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 http://www.northampton.ac.uk/news/article/133/the-university-of-northampton-is-no-1-for-value-added--the-guardian. 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From paulo.fm.torres at gmail.com Mon Dec 10 13:16:41 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Mon, 10 Dec 2012 13:16:41 +0000 Subject: [Xerte] =?iso-8859-1?q?Fwd=3A_Can=B4t_install_xerte_in_a_web_server?= References: <0F6D324C-05F1-46F7-8165-A3516DC5A8CB@sapo.pt> Message-ID: > De: Paulo Torres > Assunto: Can?t install xerte in a web server > Data: 7 de Dezembro de 2012 14h16min40s WET > Para: IS-Learning-Team at nottingham.ac.uk > > Good afternoon, > i?ve tried to install xerte in a web server but when > i reach this screen > > i get an error. I type my user name for the mysql database and the password but i get redirected to a page not found. > I?d appreciate some help. > > Best Regards, > Paulo Torres -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ecra.tiff Type: image/tiff Size: 115830 bytes Desc: not available URL: From patrick.lockley at googlemail.com Mon Dec 10 14:04:02 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 10 Dec 2012 14:04:02 +0000 Subject: [Xerte] Re: =?iso-8859-1?q?Fwd=3A_Can=B4t_install_xerte_in_a_web_server?= In-Reply-To: References: <0F6D324C-05F1-46F7-8165-A3516DC5A8CB@sapo.pt> Message-ID: What URL are you trying to access? Pat On Mon, Dec 10, 2012 at 1:16 PM, Paulo wrote: > > > *De: *Paulo Torres > *Assunto: **Can?t install xerte in a web server* > *Data: *7 de Dezembro de 2012 14h16min40s WET > *Para: *IS-Learning-Team at nottingham.ac.uk > > Good afternoon, > i?ve tried to install xerte in a web server but when > i reach this screen > i get an error. I type my user name for the mysql database and the > password but i get redirected to a page not found. > I?d appreciate some help. > > Best Regards, > Paulo Torres > > > > _______________________________________________ > 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 kmthom at ymail.com Mon Dec 10 14:01:43 2012 From: kmthom at ymail.com (Kay Thompson) Date: Mon, 10 Dec 2012 14:01:43 +0000 (GMT) Subject: [Xerte] Xerte Online Toolkits setup problem Message-ID: <1355148103.95149.YahooMailNeo@web132502.mail.ird.yahoo.com> Hello ? I am having problems installing Xerte Online Toolkits onto my PC, and am wondering whether anyone else has experienced similar difficulties and found a solution??I have followed the installation instructions to the letter and have?installed XAMPP and downloaded Xerte Online Toolkits, but am unable to run the setup?utility. When I click on?http://localhost/xertetoolkits/setup/, I get the error message 'Internet Explorer cannot display the webpage'. ? Any suggestions? ? Thank you! ? Kay -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Dec 10 14:05:58 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 10 Dec 2012 14:05:58 +0000 Subject: [Xerte] Re: Xerte Online Toolkits setup problem In-Reply-To: <1355148103.95149.YahooMailNeo@web132502.mail.ird.yahoo.com> References: <1355148103.95149.YahooMailNeo@web132502.mail.ird.yahoo.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48E75C75@EXCHANGE1.ad.nottingham.ac.uk> Is xampp running? Have you started apache and mysql in the control panel? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kay Thompson Sent: 10 December 2012 14:02 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte Online Toolkits setup problem Hello I am having problems installing Xerte Online Toolkits onto my PC, and am wondering whether anyone else has experienced similar difficulties and found a solution? I have followed the installation instructions to the letter and have installed XAMPP and downloaded Xerte Online Toolkits, but am unable to run the setup utility. When I click on http://localhost/xertetoolkits/setup/, I get the error message 'Internet Explorer cannot display the webpage'. Any suggestions? Thank you! Kay -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Mon Dec 10 14:10:12 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 10 Dec 2012 14:10:12 +0000 Subject: [Xerte] Re: Xerte Online Toolkits setup problem In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48E75C75@EXCHANGE1.ad.nottingham.ac.uk> References: <1355148103.95149.YahooMailNeo@web132502.mail.ird.yahoo.com> <12C67A1EEC419342AF5E59DA31562C3F0C48E75C75@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: And if you have skype running, turn it off (close it down) On Mon, Dec 10, 2012 at 2:05 PM, Julian Tenney < Julian.Tenney at nottingham.ac.uk> wrote: > Is xampp running? Have you started apache and mysql in the control panel?* > *** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kay Thompson > *Sent:* 10 December 2012 14:02 > *To:* xerte at lists.nottingham.ac.uk > *Subject:* [Xerte] Xerte Online Toolkits setup problem**** > > ** ** > > Hello**** > > **** > > I am having problems installing Xerte Online Toolkits onto my PC, and am > wondering whether anyone else has experienced similar difficulties and > found a solution? I have followed the installation instructions to the > letter and have installed XAMPP and downloaded Xerte Online Toolkits, but > am unable to run the setup utility. When I click on > http://localhost/xertetoolkits/setup/, I get the error message 'Internet > Explorer cannot display the webpage'. **** > > **** > > Any suggestions?**** > > **** > > Thank you!**** > > **** > > Kay **** > > ** > > **** > > > > > _______________________________________________ > 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 Dec 10 14:25:09 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 10 Dec 2012 14:25:09 +0000 Subject: [Xerte] Re: Embedding web pages in XOT 1.8 In-Reply-To: <2B5030FF00A6F94FAA43EEE660404FA03FD2FD61@HELLCAT.nene.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A078851@EXCHMBX10X03.unv.wlv.ac.uk> <3077A153-D4B0-46CA-B162-DE80D2601535@googlemail.com> <2B5030FF00A6F94FAA43EEE660404FA03FD2FD61@HELLCAT.nene.ac.uk> Message-ID: Ok, so the iframe does resize when you change the xerte player size (in chrome), but the content of the HTML in the iframe can obviously overflow this size. I will ask a question on the dev list and report back. On Mon, Dec 10, 2012 at 1:20 PM, Stenhouse Andy < Andy.Stenhouse at northampton.ac.uk> wrote: > Hi Pat,**** > > That would be great if you could, as I?d like that for something I wanted > to do.**** > > Cheers,**** > > Andy Stenhouse**** > > ** ** > > *From:* Pat Lockley [mailto:patrick.lockley at googlemail.com] > *Sent:* 09 December 2012 17:39 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Embedding web pages in XOT 1.8**** > > ** ** > > Hi Liz,**** > > ** ** > > I don't think the embedded page scales as the xerte player does.**** > > ** ** > > Happy to see if we could code a version to mirror the rescaling.**** > > ** ** > > Sorry if this isn't the best news**** > > ** ** > > Pat > > On 7 Dec 2012, at 16:47, "Cowell, Elizabeth" wrote:** > ** > > Hello there,**** > > **** > > I?ve finally got around to playing with XOT and have been using the > embedded navigator template. **** > > **** > > I?m finding if I set the Xerte window size to ?fill screen? and scroll > around the iframe it doesn?t redraw properly, and leaves black lines (this > is in chrome, I haven?t checked in other browsers). (This also happens with > the play_560 demo of the embedded navigator template). I expect you?re > aware of this but just thought I?d mention in case.**** > > **** > > If it?s already fixed is there a new version I should download and if so > where from? **** > > **** > > Thanks if you can advise**** > > Liz**** > > **** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > **** > > ** ** > > -- > Scanned by iCritical. **** > > > > > **** > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > ** > > *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. > > _______________________________________________ > 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 paulo.fm.torres at gmail.com Mon Dec 10 17:47:42 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Mon, 10 Dec 2012 17:47:42 +0000 Subject: [Xerte] =?iso-8859-1?q?Fwd=3A_Can=B4t_install_xerte_in_a_web_server?= References: <12C67A1EEC419342AF5E59DA31562C3F0C48E75AA5@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <924482B7-88ED-4D77-8511-3A541848DF7B@gmail.com> Good afternoon > Good afternoon, > i?ve tried to install xerte in a web server but when > i reach this screen best regards, Paulo Torres In?cio da mensagem reenviada: > De: Julian Tenney > Assunto: RE: Can?t install xerte in a web server > Data: 10 de Dezembro de 2012 09h54min45s WET > Para: Is-Learning-Team , "paulo.fm.torres at gmail.com" > > Hi, > > Please subscribe to the Xerte mailing list at http://lists.nottingham.ac.uk/mailman/listinfo/xerte and post your question there: there are plenty of people that can help, and it keeps all the technical knowledge in a place others can benefit from it, > > Many thanks, > > Julian > > From: IS-Learning-Team > Sent: 07 December 2012 17:24 > To: Tenney Julian > Subject: FW: Can?t install xerte in a web server > > Hi Julian, this one has come into IS-Learning-Team?s mailbox > > From: Paulo Torres [mailto:paulo.fm.torres at gmail.com] On Behalf Of Paulo Torres > Sent: 07 December 2012 14:17 > To: IS-Learning-Team at nottingham.ac.uk > Subject: Can?t install xerte in a web server > > Good afternoon, > i?ve tried to install xerte in a web server but when > i reach this screen > > i get an error. I type my user name for the mysql database and the password but i get redirected to a page not found. > I?d appreciate some help. > > Best Regards, > Paulo Torres > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 78730 bytes Desc: not available URL: From patrick.lockley at googlemail.com Mon Dec 10 17:57:33 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 10 Dec 2012 17:57:33 +0000 Subject: [Xerte] Re: =?iso-8859-1?q?Fwd=3A_Can=B4t_install_xerte_in_a_web_server?= In-Reply-To: <924482B7-88ED-4D77-8511-3A541848DF7B@gmail.com> References: <12C67A1EEC419342AF5E59DA31562C3F0C48E75AA5@EXCHANGE1.ad.nottingham.ac.uk> <924482B7-88ED-4D77-8511-3A541848DF7B@gmail.com> Message-ID: Hi Paolo, Is the problem when you click next? Thanks Pat On Mon, Dec 10, 2012 at 5:47 PM, Paulo wrote: > Good afternoon > > Good afternoon,**** > i?ve tried to install xerte in a web server but when**** > i reach this screen**** > > best regards, > Paulo Torres > > In?cio da mensagem reenviada: > > *De: *Julian Tenney > *Assunto: **RE: Can?t install xerte in a web server* > *Data: *10 de Dezembro de 2012 09h54min45s WET > *Para: *Is-Learning-Team , " > paulo.fm.torres at gmail.com" > > Hi,**** > ** ** > Please subscribe to the Xerte mailing list at > http://lists.nottingham.ac.uk/mailman/listinfo/xerte and post your > question there: there are plenty of people that can help, and it keeps all > the technical knowledge in a place others can benefit from it,**** > ** ** > Many thanks,**** > ** ** > Julian**** > ** ** > *From:* IS-Learning-Team > *Sent:* 07 December 2012 17:24 > *To:* Tenney Julian > *Subject:* FW: Can?t install xerte in a web server**** > ** ** > Hi Julian, this one has come into IS-Learning-Team?s mailbox**** > ** ** > *From:* Paulo Torres [mailto:paulo.fm.torres at gmail.com > ] *On Behalf Of *Paulo Torres > *Sent:* 07 December 2012 14:17 > *To:* IS-Learning-Team at nottingham.ac.uk > *Subject:* Can?t install xerte in a web server**** > ** ** > Good afternoon,**** > i?ve tried to install xerte in a web server but when**** > i reach this screen**** > **** > i get an error. I type my user name for the mysql database and the > password but i get redirected to a page not found.**** > I?d appreciate some help.**** > ** ** > Best Regards,**** > Paulo Torres**** > > > > > > _______________________________________________ > 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 78730 bytes Desc: not available URL: From patrick.lockley at googlemail.com Mon Dec 10 17:57:33 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 10 Dec 2012 17:57:33 +0000 Subject: [Xerte] Re: =?iso-8859-1?q?Fwd=3A_Can=B4t_install_xerte_in_a_web_server?= In-Reply-To: <924482B7-88ED-4D77-8511-3A541848DF7B@gmail.com> References: <12C67A1EEC419342AF5E59DA31562C3F0C48E75AA5@EXCHANGE1.ad.nottingham.ac.uk> <924482B7-88ED-4D77-8511-3A541848DF7B@gmail.com> Message-ID: Hi Paolo, Is the problem when you click next? Thanks Pat On Mon, Dec 10, 2012 at 5:47 PM, Paulo wrote: > Good afternoon > > Good afternoon,**** > i?ve tried to install xerte in a web server but when**** > i reach this screen**** > > best regards, > Paulo Torres > > In?cio da mensagem reenviada: > > *De: *Julian Tenney > *Assunto: **RE: Can?t install xerte in a web server* > *Data: *10 de Dezembro de 2012 09h54min45s WET > *Para: *Is-Learning-Team , " > paulo.fm.torres at gmail.com" > > Hi,**** > ** ** > Please subscribe to the Xerte mailing list at > http://lists.nottingham.ac.uk/mailman/listinfo/xerte and post your > question there: there are plenty of people that can help, and it keeps all > the technical knowledge in a place others can benefit from it,**** > ** ** > Many thanks,**** > ** ** > Julian**** > ** ** > *From:* IS-Learning-Team > *Sent:* 07 December 2012 17:24 > *To:* Tenney Julian > *Subject:* FW: Can?t install xerte in a web server**** > ** ** > Hi Julian, this one has come into IS-Learning-Team?s mailbox**** > ** ** > *From:* Paulo Torres [mailto:paulo.fm.torres at gmail.com > ] *On Behalf Of *Paulo Torres > *Sent:* 07 December 2012 14:17 > *To:* IS-Learning-Team at nottingham.ac.uk > *Subject:* Can?t install xerte in a web server**** > ** ** > Good afternoon,**** > i?ve tried to install xerte in a web server but when**** > i reach this screen**** > **** > i get an error. I type my user name for the mysql database and the > password but i get redirected to a page not found.**** > I?d appreciate some help.**** > ** ** > Best Regards,**** > Paulo Torres**** > > > > > > _______________________________________________ > 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 78730 bytes Desc: not available URL: From paulo.fm.torres at gmail.com Mon Dec 10 18:15:06 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Mon, 10 Dec 2012 18:15:06 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 6 In-Reply-To: References: Message-ID: Hi Pat, yes the problem is when i click next after inserting de database user name and the passworg. I?m sure that the user name and password are correct, but i get a page not found error. Best regards, Paulo Torres A 10/12/2012, ?s 18:09, xerte-request at lists.nottingham.ac.uk escreveu: > 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: Fwd: Can?t install xerte in a web server (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 10 Dec 2012 17:57:33 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Fwd: Can?t install xerte in a web server > Message-ID: > > Content-Type: text/plain; charset="windows-1252" > > Hi Paolo, > Is the problem when you click next? > Thanks > Pat > > > On Mon, Dec 10, 2012 at 5:47 PM, Paulo wrote: > >> Good afternoon >> >> Good afternoon,**** >> i?ve tried to install xerte in a web server but when**** >> i reach this screen**** >> >> best regards, >> Paulo Torres >> >> In?cio da mensagem reenviada: >> >> *De: *Julian Tenney >> *Assunto: **RE: Can?t install xerte in a web server* >> *Data: *10 de Dezembro de 2012 09h54min45s WET >> *Para: *Is-Learning-Team , " >> paulo.fm.torres at gmail.com" >> >> Hi,**** >> ** ** >> Please subscribe to the Xerte mailing list at >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte and post your >> question there: there are plenty of people that can help, and it keeps all >> the technical knowledge in a place others can benefit from it,**** >> ** ** >> Many thanks,**** >> ** ** >> Julian**** >> ** ** >> *From:* IS-Learning-Team >> *Sent:* 07 December 2012 17:24 >> *To:* Tenney Julian >> *Subject:* FW: Can?t install xerte in a web server**** >> ** ** >> Hi Julian, this one has come into IS-Learning-Team?s mailbox**** >> ** ** >> *From:* Paulo Torres [mailto:paulo.fm.torres at gmail.com >> ] *On Behalf Of *Paulo Torres >> *Sent:* 07 December 2012 14:17 >> *To:* IS-Learning-Team at nottingham.ac.uk >> *Subject:* Can?t install xerte in a web server**** >> ** ** >> Good afternoon,**** >> i?ve tried to install xerte in a web server but when**** >> i reach this screen**** >> **** >> i get an error. I type my user name for the mysql database and the >> password but i get redirected to a page not found.**** >> I?d appreciate some help.**** >> ** ** >> Best Regards,**** >> Paulo Torres**** >> >> >> >> >> >> _______________________________________________ >> 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: > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image001.png > Type: image/png > Size: 78730 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 107, Issue 6 > ************************************* > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Mon Dec 10 18:20:53 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Mon, 10 Dec 2012 18:20:53 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 6 In-Reply-To: References: Message-ID: I can't see why that would happen unless it is a php / MySQL error? Did you run the tests? On Mon, Dec 10, 2012 at 6:15 PM, Paulo wrote: > Hi Pat, > yes the problem is when i click next after inserting de database user name > and the passworg. > I?m sure that the user name and password are correct, but i get a page not > found error. > > Best regards, > Paulo Torres > A 10/12/2012, ?s 18:09, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Fwd: Can?t install xerte in a web server (Pat Lockley) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Mon, 10 Dec 2012 17:57:33 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Fwd: Can?t install xerte in a web server > > Message-ID: > > < > CAO2PinPkAu47HKXvTRR189ZV_uzkyhB8aycqVuLc7NpK6L7LOw at mail.gmail.com> > > Content-Type: text/plain; charset="windows-1252" > > > > Hi Paolo, > > Is the problem when you click next? > > Thanks > > Pat > > > > > > On Mon, Dec 10, 2012 at 5:47 PM, Paulo > wrote: > > > >> Good afternoon > >> > >> Good afternoon,**** > >> i?ve tried to install xerte in a web server but when**** > >> i reach this screen**** > >> > >> best regards, > >> Paulo Torres > >> > >> In?cio da mensagem reenviada: > >> > >> *De: *Julian Tenney > >> *Assunto: **RE: Can?t install xerte in a web server* > >> *Data: *10 de Dezembro de 2012 09h54min45s WET > >> *Para: *Is-Learning-Team , " > >> paulo.fm.torres at gmail.com" > >> > >> Hi,**** > >> ** ** > >> Please subscribe to the Xerte mailing list at > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte and post your > >> question there: there are plenty of people that can help, and it keeps > all > >> the technical knowledge in a place others can benefit from it,**** > >> ** ** > >> Many thanks,**** > >> ** ** > >> Julian**** > >> ** ** > >> *From:* IS-Learning-Team > >> *Sent:* 07 December 2012 17:24 > >> *To:* Tenney Julian > >> *Subject:* FW: Can?t install xerte in a web server**** > >> ** ** > >> Hi Julian, this one has come into IS-Learning-Team?s mailbox**** > >> ** ** > >> *From:* Paulo Torres [mailto:paulo.fm.torres at gmail.com< > paulo.fm.torres at gmail.com> > >> ] *On Behalf Of *Paulo Torres > >> *Sent:* 07 December 2012 14:17 > >> *To:* IS-Learning-Team at nottingham.ac.uk > >> *Subject:* Can?t install xerte in a web server**** > >> ** ** > >> Good afternoon,**** > >> i?ve tried to install xerte in a web server but when**** > >> i reach this screen**** > >> **** > >> i get an error. I type my user name for the mysql database and the > >> password but i get redirected to a page not found.**** > >> I?d appreciate some help.**** > >> ** ** > >> Best Regards,**** > >> Paulo Torres**** > >> > >> > >> > >> > >> > >> _______________________________________________ > >> 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: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121210/0e268eff/attachment-0002.html > > > > -------------- next part -------------- > > A non-text attachment was scrubbed... > > Name: image001.png > > Type: image/png > > Size: 78730 bytes > > Desc: not available > > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121210/0e268eff/attachment-0002.png > > > > > > ------------------------------ > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > End of Xerte Digest, Vol 107, Issue 6 > > ************************************* > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment > > may still contain software viruses which could damage your computer > system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 bell_beauty12 at hotmail.com Wed Dec 12 14:32:12 2012 From: bell_beauty12 at hotmail.com (Suhaila Haji Mohd Hussin) Date: Thu, 13 Dec 2012 02:32:12 +1200 Subject: [Xerte] How to make text superscript In-Reply-To: References: , , , Message-ID: Hello As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? Cheers,Suhaila -------------- next part -------------- An HTML attachment was scrubbed... URL: From Alistair.McNaught at HEAcademy.ac.uk Wed Dec 12 15:05:18 2012 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Wed, 12 Dec 2012 15:05:18 +0000 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: , , , Message-ID: Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? A From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin Sent: 12 December 2012 14:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] How to make text superscript Hello As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? Cheers, Suhaila This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: From paulo.fm.torres at gmail.com Wed Dec 12 15:35:21 2012 From: paulo.fm.torres at gmail.com (Paulo Torres) Date: Wed, 12 Dec 2012 15:35:21 -0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 6 In-Reply-To: References: Message-ID: <00ab01cdd87e$4d5509b0$e7ff1d10$@gmail.com> Hi, I still can?t install xerte on a server. The page page3.php in setup get?s called but then rapidly changes to a page not found error. The file database.php is written but somewhere in the code an error occours. I?d appreciate some help. Best regards, Paulo Torres -----Mensagem original----- De: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de xerte-request at lists.nottingham.ac.uk Enviada: Monday, December 10, 2012 6:09 PM Para: xerte at lists.nottingham.ac.uk Assunto: Xerte Digest, Vol 107, Issue 6 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: Fwd: Can?t install xerte in a web server (Pat Lockley) ---------------------------------------------------------------------- Message: 1 Date: Mon, 10 Dec 2012 17:57:33 +0000 From: Pat Lockley To: Xerte discussion list Subject: [Xerte] Re: Fwd: Can?t install xerte in a web server Message-ID: Content-Type: text/plain; charset="windows-1252" Hi Paolo, Is the problem when you click next? Thanks Pat On Mon, Dec 10, 2012 at 5:47 PM, Paulo wrote: > Good afternoon > > Good afternoon,**** > i?ve tried to install xerte in a web server but when**** i reach this > screen**** > > best regards, > Paulo Torres > > In?cio da mensagem reenviada: > > *De: *Julian Tenney > *Assunto: **RE: Can?t install xerte in a web server* > *Data: *10 de Dezembro de 2012 09h54min45s WET > *Para: *Is-Learning-Team , " > paulo.fm.torres at gmail.com" > > Hi,**** > ** ** > Please subscribe to the Xerte mailing list at > http://lists.nottingham.ac.uk/mailman/listinfo/xerte and post your > question there: there are plenty of people that can help, and it keeps > all the technical knowledge in a place others can benefit from it,**** > ** ** > Many thanks,**** > ** ** > Julian**** > ** ** > *From:* IS-Learning-Team > *Sent:* 07 December 2012 17:24 > *To:* Tenney Julian > *Subject:* FW: Can?t install xerte in a web server**** > ** ** > Hi Julian, this one has come into IS-Learning-Team?s mailbox**** > ** ** > *From:* Paulo Torres > [mailto:paulo.fm.torres at gmail.com > ] *On Behalf Of *Paulo Torres > *Sent:* 07 December 2012 14:17 > *To:* IS-Learning-Team at nottingham.ac.uk > *Subject:* Can?t install xerte in a web server**** > ** ** > Good afternoon,**** > i?ve tried to install xerte in a web server but when**** i reach this > screen**** > **** > i get an error. I type my user name for the mysql database and the > password but i get redirected to a page not found.**** I?d appreciate > some help.**** > ** ** > Best Regards,**** > Paulo Torres**** > > > > > > _______________________________________________ > 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 78730 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 107, Issue 6 ************************************* This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Fay.Cross at nottingham.ac.uk Wed Dec 12 15:54:49 2012 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Wed, 12 Dec 2012 15:54:49 +0000 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: Message-ID: <798E5CE9-32DD-405F-A5AD-6B7DB1E4D6D3@UniofNottm.mail.onmicrosoft.com> An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Wed Dec 12 16:00:45 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 12 Dec 2012 16:00:45 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 6 In-Reply-To: <00ab01cdd87e$4d5509b0$e7ff1d10$@gmail.com> References: <00ab01cdd87e$4d5509b0$e7ff1d10$@gmail.com> Message-ID: Hello, Page 3 changes into a new URL? What URL does it become? Pat On Wed, Dec 12, 2012 at 3:35 PM, Paulo Torres wrote: > Hi, > I still can?t install xerte on a server. > The page page3.php in setup get?s called but then rapidly changes to a page > not found error. > The file database.php is written but somewhere in the code an error > occours. > I?d appreciate some help. > > Best regards, > Paulo Torres > > -----Mensagem original----- > De: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de > xerte-request at lists.nottingham.ac.uk > Enviada: Monday, December 10, 2012 6:09 PM > Para: xerte at lists.nottingham.ac.uk > Assunto: Xerte Digest, Vol 107, Issue 6 > > 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: Fwd: Can?t install xerte in a web server (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 10 Dec 2012 17:57:33 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Fwd: Can?t install xerte in a web server > Message-ID: > < > CAO2PinPkAu47HKXvTRR189ZV_uzkyhB8aycqVuLc7NpK6L7LOw at mail.gmail.com> > Content-Type: text/plain; charset="windows-1252" > > Hi Paolo, > Is the problem when you click next? > Thanks > Pat > > > On Mon, Dec 10, 2012 at 5:47 PM, Paulo wrote: > > > Good afternoon > > > > Good afternoon,**** > > i?ve tried to install xerte in a web server but when**** i reach this > > screen**** > > > > best regards, > > Paulo Torres > > > > In?cio da mensagem reenviada: > > > > *De: *Julian Tenney > > *Assunto: **RE: Can?t install xerte in a web server* > > *Data: *10 de Dezembro de 2012 09h54min45s WET > > *Para: *Is-Learning-Team , " > > paulo.fm.torres at gmail.com" > > > > Hi,**** > > ** ** > > Please subscribe to the Xerte mailing list at > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte and post your > > question there: there are plenty of people that can help, and it keeps > > all the technical knowledge in a place others can benefit from it,**** > > ** ** > > Many thanks,**** > > ** ** > > Julian**** > > ** ** > > *From:* IS-Learning-Team > > *Sent:* 07 December 2012 17:24 > > *To:* Tenney Julian > > *Subject:* FW: Can?t install xerte in a web server**** > > ** ** > > Hi Julian, this one has come into IS-Learning-Team?s mailbox**** > > ** ** > > *From:* Paulo Torres > > [mailto:paulo.fm.torres at gmail.com > > ] *On Behalf Of *Paulo Torres > > *Sent:* 07 December 2012 14:17 > > *To:* IS-Learning-Team at nottingham.ac.uk > > *Subject:* Can?t install xerte in a web server**** > > ** ** > > Good afternoon,**** > > i?ve tried to install xerte in a web server but when**** i reach this > > screen**** > > **** > > i get an error. I type my user name for the mysql database and the > > password but i get redirected to a page not found.**** I?d appreciate > > some help.**** > > ** ** > > Best Regards,**** > > Paulo Torres**** > > > > > > > > > > > > _______________________________________________ > > 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: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121210/0e268eff > /attachment-0002.html> > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image001.png > Type: image/png > Size: 78730 bytes > Desc: not available > URL: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121210/0e268eff > /attachment-0002.png> > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 107, Issue 6 > ************************************* > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 apboyle at liverpool.ac.uk Wed Dec 12 16:20:27 2012 From: apboyle at liverpool.ac.uk (Boyle, Alan) Date: Wed, 12 Dec 2012 16:20:27 +0000 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: , , , Message-ID: Could you use the superscript and subscript characters built in to a Unicode font? http://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts Alan From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin Sent: 12 December 2012 14:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] How to make text superscript Hello As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? Cheers, Suhaila -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Dec 12 21:26:03 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 12 Dec 2012 21:26:03 +0000 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: , , , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48BC79AC@EXCHANGE1.ad.nottingham.ac.uk> you can compile the font into a resources.swf, but it might be massive, and anyway, does the font have all the sub / superscript chars? ________________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Boyle, Alan [apboyle at liverpool.ac.uk] Sent: 12 December 2012 16:20 To: 'Xerte discussion list' Subject: [Xerte] Re: How to make text superscript Could you use the superscript and subscript characters built in to a Unicode font? http://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts Alan From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin Sent: 12 December 2012 14:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] How to make text superscript Hello As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? Cheers, Suhaila From Julian.Tenney at nottingham.ac.uk Thu Dec 13 08:00:19 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 13 Dec 2012 08:00:19 +0000 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: , , , , Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C48BC79B0@EXCHANGE1.ad.nottingham.ac.uk> it will do, but it will dsplay an image of the formula, even if it's just x^2, so it won't display inline ________________________________________ From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught [Alistair.McNaught at HEAcademy.ac.uk] Sent: 12 December 2012 15:05 To: Xerte discussion list Subject: [Xerte] Re: How to make text superscript Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? A From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin Sent: 12 December 2012 14:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] How to make text superscript Hello As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? Cheers, Suhaila This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 From d_b_burnett at hotmail.com Thu Dec 13 12:02:06 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 13 Dec 2012 07:02:06 -0500 Subject: [Xerte] Re: How to make text superscript In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C48BC79B0@EXCHANGE1.ad.nottingham.ac.uk> References: , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48BC79B0@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Alistair, I think the change you are thinking of was just a repointing of the Latex service URL. > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 13 Dec 2012 08:00:19 +0000 > Subject: [Xerte] Re: How to make text superscript > > it will do, but it will dsplay an image of the formula, even if it's just x^2, so it won't display inline > ________________________________________ > From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught [Alistair.McNaught at HEAcademy.ac.uk] > Sent: 12 December 2012 15:05 > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > > Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? > > A > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin > Sent: 12 December 2012 14:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] How to make text superscript > > Hello > > As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? > > Cheers, > Suhaila > > > This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 brane.smitek at fov.uni-mb.si Thu Dec 13 19:32:00 2012 From: brane.smitek at fov.uni-mb.si (=?iso-8859-2?Q?Brane_=A9mitek?=) Date: Thu, 13 Dec 2012 20:32:00 +0100 Subject: [Xerte] Template Message-ID: <000001cdd968$86b92840$942b78c0$@smitek@fov.uni-mb.si> How can I make my own template for Xerte Online Toolkits? What picture format is most suitable for using in learning objects? Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Dec 13 20:21:05 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 13 Dec 2012 20:21:05 +0000 Subject: [Xerte] Re: Template In-Reply-To: <50ca2d8e.a813b40a.08f8.3996SMTPIN_ADDED_BROKEN@mx.google.com> References: <50ca2d8e.a813b40a.08f8.3996SMTPIN_ADDED_BROKEN@mx.google.com> Message-ID: Hi Brane, In 1.9 you can make templates just using php (not xerte templates, but for any type of content) You might want to subscribe to the developer list? Pat On 13 Dec 2012, at 19:32, Brane ?mitek wrote: > How can I make my own template for Xerte Online Toolkits? > > What picture format is most suitable for using in learning objects? > > Kind regards > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si > > > > > > _______________________________________________ > 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 Alistair.McNaught at HEAcademy.ac.uk Thu Dec 13 22:52:16 2012 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Thu, 13 Dec 2012 22:52:16 +0000 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48BC79B0@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: Ah, that will be it. Still works; just from different place. A Sent from my Windows Phone ________________________________ From: Dave Burnett Sent: 13/12/2012 22:40 To: Xerte list Subject: [Xerte] Re: How to make text superscript Alistair, I think the change you are thinking of was just a repointing of the Latex service URL. > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 13 Dec 2012 08:00:19 +0000 > Subject: [Xerte] Re: How to make text superscript > > it will do, but it will dsplay an image of the formula, even if it's just x^2, so it won't display inline > ________________________________________ > From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught [Alistair.McNaught at HEAcademy.ac.uk] > Sent: 12 December 2012 15:05 > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > > Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? > > A > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin > Sent: 12 December 2012 14:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] How to make text superscript > > Hello > > As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? > > Cheers, > Suhaila > > > This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: From d_b_burnett at hotmail.com Thu Dec 13 23:06:52 2012 From: d_b_burnett at hotmail.com (Dave Burnett) Date: Thu, 13 Dec 2012 18:06:52 -0500 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: , ,,, , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48BC79B0@EXCHANGE1.ad.nottingham.ac.uk>, , , Message-ID: But I can't remember what I just went in the kitchen for. From: Alistair.McNaught at HEAcademy.ac.uk To: xerte at lists.nottingham.ac.uk Date: Thu, 13 Dec 2012 22:52:16 +0000 Subject: [Xerte] Re: How to make text superscript Ah, that will be it. Still works; just from different place. A Sent from my Windows Phone From: Dave Burnett Sent: 13/12/2012 22:40 To: Xerte list Subject: [Xerte] Re: How to make text superscript Alistair, I think the change you are thinking of was just a repointing of the Latex service URL. > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 13 Dec 2012 08:00:19 +0000 > Subject: [Xerte] Re: How to make text superscript > > it will do, but it will dsplay an image of the formula, even if it's just x^2, so it won't display inline > ________________________________________ > From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught [Alistair.McNaught at HEAcademy.ac.uk] > Sent: 12 December 2012 15:05 > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > > Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? > > A > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin > Sent: 12 December 2012 14:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] How to make text superscript > > Hello > > As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? > > Cheers, > Suhaila > > > This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 _______________________________________________ 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 paulo.fm.torres at gmail.com Fri Dec 14 05:53:23 2012 From: paulo.fm.torres at gmail.com (Paulo Torres) Date: Fri, 14 Dec 2012 05:53:23 -0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 13 In-Reply-To: References: Message-ID: <000c01cdd9bf$555f9200$001eb600$@gmail.com> Good day, How can i create a user specific workspace? How can I create a user? Best Regards, Paulo Torress -----Mensagem original----- De: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de xerte-request at lists.nottingham.ac.uk Enviada: Thursday, December 13, 2012 10:53 PM Para: xerte at lists.nottingham.ac.uk Assunto: Xerte Digest, Vol 107, 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: How to make text superscript (Dave Burnett) 2. Template (Brane ?mitek) 3. Re: Template (Pat Lockley) 4. Re: How to make text superscript (Alistair McNaught) ---------------------------------------------------------------------- Message: 1 Date: Thu, 13 Dec 2012 07:02:06 -0500 From: Dave Burnett To: Xerte list Subject: [Xerte] Re: How to make text superscript Message-ID: Content-Type: text/plain; charset="iso-8859-1" Alistair, I think the change you are thinking of was just a repointing of the Latex service URL. > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 13 Dec 2012 08:00:19 +0000 > Subject: [Xerte] Re: How to make text superscript > > it will do, but it will dsplay an image of the formula, even if it's > just x^2, so it won't display inline > ________________________________________ > From: xerte-bounces at lists.nottingham.ac.uk > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught > [Alistair.McNaught at HEAcademy.ac.uk] > Sent: 12 December 2012 15:05 > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > > Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? > > A > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > Haji Mohd Hussin > Sent: 12 December 2012 14:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] How to make text superscript > > Hello > > As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? > > Cheers, > Suhaila > > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not > disclose, copy, or distribute information in this email nor take any > action in reliance on its contents: to do so is strictly prohibited > and may be unlawful. Please inform us that this message has gone > astray before deleting it. Please note that views expressed in this > email are those of the author and do not necessarily represent those > of the Higher Education Academy. Please note that this e-mail has been > created in the knowledge that Internet e-mail is not a secure > communications medium. We advise that you understand and observe this > lack of security when e-mailing us. Although we have taken steps to > ensure this e-mail and attachments are free from any virus, we advise > that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy > Registered No 4930131 > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer 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: ------------------------------ Message: 2 Date: Thu, 13 Dec 2012 20:32:00 +0100 From: Brane ?mitek To: Subject: [Xerte] Template Message-ID: <000001cdd968$86b92840$942b78c0$@smitek at fov.uni-mb.si> Content-Type: text/plain; charset="iso-8859-2" How can I make my own template for Xerte Online Toolkits? What picture format is most suitable for using in learning objects? Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Thu, 13 Dec 2012 20:21:05 +0000 From: Pat Lockley To: Xerte discussion list Subject: [Xerte] Re: Template Message-ID: Content-Type: text/plain; charset="utf-8" Hi Brane, In 1.9 you can make templates just using php (not xerte templates, but for any type of content) You might want to subscribe to the developer list? Pat On 13 Dec 2012, at 19:32, Brane ?mitek wrote: > How can I make my own template for Xerte Online Toolkits? > > What picture format is most suitable for using in learning objects? > > Kind regards > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si > > > > > > _______________________________________________ > 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: ------------------------------ Message: 4 Date: Thu, 13 Dec 2012 22:52:16 +0000 From: Alistair McNaught To: Xerte discussion list Subject: [Xerte] Re: How to make text superscript Message-ID: Content-Type: text/plain; charset="iso-8859-1" Ah, that will be it. Still works; just from different place. A Sent from my Windows Phone ________________________________ From: Dave Burnett Sent: 13/12/2012 22:40 To: Xerte list Subject: [Xerte] Re: How to make text superscript Alistair, I think the change you are thinking of was just a repointing of the Latex service URL. > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 13 Dec 2012 08:00:19 +0000 > Subject: [Xerte] Re: How to make text superscript > > it will do, but it will dsplay an image of the formula, even if it's > just x^2, so it won't display inline > ________________________________________ > From: xerte-bounces at lists.nottingham.ac.uk > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught > [Alistair.McNaught at HEAcademy.ac.uk] > Sent: 12 December 2012 15:05 > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > > Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? > > A > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > Haji Mohd Hussin > Sent: 12 December 2012 14:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] How to make text superscript > > Hello > > As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? > > Cheers, > Suhaila > > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not > disclose, copy, or distribute information in this email nor take any > action in reliance on its contents: to do so is strictly prohibited > and may be unlawful. Please inform us that this message has gone > astray before deleting it. Please note that views expressed in this > email are those of the author and do not necessarily represent those > of the Higher Education Academy. Please note that this e-mail has been > created in the knowledge that Internet e-mail is not a secure > communications medium. We advise that you understand and observe this > lack of security when e-mailing us. Although we have taken steps to > ensure this e-mail and attachments are free from any virus, we advise > that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy > Registered No 4930131 > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer 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 email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 107, Issue 13 ************************************** This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 brane.smitek at fov.uni-mb.si Fri Dec 14 06:05:35 2012 From: brane.smitek at fov.uni-mb.si (=?UTF-8?Q?Brane_=C5=A0mitek?=) Date: Fri, 14 Dec 2012 07:05:35 +0100 Subject: [Xerte] Re: Template In-Reply-To: References: <50ca2d8e.a813b40a.08f8.3996SMTPIN_ADDED_BROKEN@mx.google.com> Message-ID: <000c01cdd9c1$09af6ea0$1d0e4be0$@smitek@fov.uni-mb.si> You have in mind new page template? I'm not a good programmer so my PHP knowledge is poor but if I need it I will try to learn. I'm IT university teacher, responsible for elearning material development, but not a programmer. I only want to make my own learning object user window (change colors, logo, maybe navigation buttons etc). For first step colors will be enough. I'm looking in CSS for colors but I didn't find anything. Where is write the initial (on first loading there is blue) combination of colors? Membership in the developer list maybe would be good for me to collect information and additional knowledge to present XOT possibilities to my colleagues. How do I join to developer list? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Thursday, December 13, 2012 9:21 PM To: Xerte discussion list Subject: [Xerte] Re: Template Hi Brane, In 1.9 you can make templates just using php (not xerte templates, but for any type of content) You might want to subscribe to the developer list? Pat On 13 Dec 2012, at 19:32, Brane ?mitek wrote: How can I make my own template for Xerte Online Toolkits? What picture format is most suitable for using in learning objects? Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si _______________________________________________ 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 Fri Dec 14 10:24:20 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 14 Dec 2012 10:24:20 +0000 Subject: [Xerte] Re: Template In-Reply-To: <50cac21b.e3adc20a.367b.2247SMTPIN_ADDED_BROKEN@mx.google.com> References: <50ca2d8e.a813b40a.08f8.3996SMTPIN_ADDED_BROKEN@mx.google.com> <50cac21b.e3adc20a.367b.2247SMTPIN_ADDED_BROKEN@mx.google.com> Message-ID: http://www.nottingham.ac.uk/xerte/community.aspx The developer list sign up is here. Changing the colour of XOT is possible - http://lists.nottingham.ac.uk/pipermail/xerte/2012-February/012827.html On Fri, Dec 14, 2012 at 6:05 AM, Brane ?mitek wrote: > You have in mind new page template? I'm not a good programmer so my PHP > knowledge is poor but if I need it**** > > I will try to learn. I'm IT university teacher, responsible for elearning > material development, but not a programmer.**** > > I only want to make my own learning object user window (change colors, > logo, maybe navigation buttons etc).**** > > For first step colors will be enough. I'm looking in CSS for colors but I > didn't find anything. Where is write**** > > the initial (on first loading there is blue) combination of colors?**** > > ** ** > > Membership in the developer list maybe would be good for me to collect > information and additional knowledge**** > > to present XOT possibilities to my colleagues. How do I join to developer > list?**** > > ** ** > > ** ** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Thursday, December 13, 2012 9:21 PM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Template**** > > ** ** > > Hi Brane,**** > > ** ** > > In 1.9 you can make templates just using php (not xerte templates, but for > any type of content)**** > > ** ** > > You might want to subscribe to the developer list?**** > > ** ** > > Pat > > On 13 Dec 2012, at 19:32, Brane ?mitek wrote: > **** > > How can I make my own template for Xerte Online Toolkits?**** > > What picture format is most suitable for using in learning objects?**** > > Kind regards **** > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA **** > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si **** > > > > **** > > _______________________________________________ > 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 -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Fri Dec 14 10:31:51 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 14 Dec 2012 10:31:51 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 13 In-Reply-To: <000c01cdd9bf$555f9200$001eb600$@gmail.com> References: <000c01cdd9bf$555f9200$001eb600$@gmail.com> Message-ID: XOT has four options 1) Integrate to moodle 2) Integrate to LDAP 3) Use static authentication 4) Provide accounts from somewhere else On Fri, Dec 14, 2012 at 5:53 AM, Paulo Torres wrote: > Good day, > How can i create a user specific workspace? > How can I create a user? > > Best Regards, > Paulo Torress > > -----Mensagem original----- > De: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de > xerte-request at lists.nottingham.ac.uk > Enviada: Thursday, December 13, 2012 10:53 PM > Para: xerte at lists.nottingham.ac.uk > Assunto: Xerte Digest, Vol 107, 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: How to make text superscript (Dave Burnett) > 2. Template (Brane ?mitek) > 3. Re: Template (Pat Lockley) > 4. Re: How to make text superscript (Alistair McNaught) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 13 Dec 2012 07:02:06 -0500 > From: Dave Burnett > To: Xerte list > Subject: [Xerte] Re: How to make text superscript > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > Alistair, I think the change you are thinking of was just a repointing of > the Latex service URL. > > > From: Julian.Tenney at nottingham.ac.uk > > To: xerte at lists.nottingham.ac.uk > > Date: Thu, 13 Dec 2012 08:00:19 +0000 > > Subject: [Xerte] Re: How to make text superscript > > > > it will do, but it will dsplay an image of the formula, even if it's > > just x^2, so it won't display inline > > ________________________________________ > > From: xerte-bounces at lists.nottingham.ac.uk > > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught > > [Alistair.McNaught at HEAcademy.ac.uk] > > Sent: 12 December 2012 15:05 > > To: Xerte discussion list > > Subject: [Xerte] Re: How to make text superscript > > > > Does LaTeX do that? I know we had success with using LaTeX to create > maths > and formulae but I have a feeling that the way that happened may have > changed in the last year? Anyone remember? > > > > A > > > > From: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > > Haji Mohd Hussin > > Sent: 12 December 2012 14:32 > > To: xerte at lists.nottingham.ac.uk > > Subject: [Xerte] How to make text superscript > > > > Hello > > > > As mentioned in the subject, I need to turn certain texts into > superscript > and apparently using html tags for superscript didn't work. Is there > any other way? > > > > Cheers, > > Suhaila > > > > > > This email is confidential and may be privileged. If you are not the > > intended recipient please accept our apologies. Please do not > > disclose, copy, or distribute information in this email nor take any > > action in reliance on its contents: to do so is strictly prohibited > > and may be unlawful. Please inform us that this message has gone > > astray before deleting it. Please note that views expressed in this > > email are those of the author and do not necessarily represent those > > of the Higher Education Academy. Please note that this e-mail has been > > created in the knowledge that Internet e-mail is not a secure > > communications medium. We advise that you understand and observe this > > lack of security when e-mailing us. Although we have taken steps to > > ensure this e-mail and attachments are free from any virus, we advise > > that in keeping with good computing practice the recipient should > > ensure they are actually virus free. The Higher Education Academy > > Registered No 4930131 > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > > attachment may still contain software viruses which could damage your > computer 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/20121213/26eb5158 > /attachment-0001.html> > > ------------------------------ > > Message: 2 > Date: Thu, 13 Dec 2012 20:32:00 +0100 > From: Brane ?mitek > To: > Subject: [Xerte] Template > Message-ID: <000001cdd968$86b92840$942b78c0$@smitek at fov.uni-mb.si> > Content-Type: text/plain; charset="iso-8859-2" > > How can I make my own template for Xerte Online Toolkits? > > What picture format is most suitable for using in learning objects? > > Kind regards > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/9bdcb62b > /attachment-0001.html> > > ------------------------------ > > Message: 3 > Date: Thu, 13 Dec 2012 20:21:05 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Template > Message-ID: > Content-Type: text/plain; charset="utf-8" > > Hi Brane, > > In 1.9 you can make templates just using php (not xerte templates, but for > any type of content) > > You might want to subscribe to the developer list? > > Pat > > On 13 Dec 2012, at 19:32, Brane ?mitek wrote: > > > How can I make my own template for Xerte Online Toolkits? > > > > What picture format is most suitable for using in learning objects? > > > > Kind regards > > > > Branislav SMITEK Ph.D. > > University of Maribor > > FACULTY OF ORGANIZATIONAL SCIENCES > > Kidriceva cesta 55/a > > SI4000 KRANJ > > SLOVENIA > > > > tel: +386 4 237 42 63 > > fax: +386 4 237 42 99 > > e-mail: brane.smitek at fov.uni-mb.si > > > > > > > > > > > > _______________________________________________ > > 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: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/e0cceb74 > /attachment-0001.html> > > ------------------------------ > > Message: 4 > Date: Thu, 13 Dec 2012 22:52:16 +0000 > From: Alistair McNaught > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Ah, that will be it. Still works; just from different place. > > A > > Sent from my Windows Phone > ________________________________ > From: Dave Burnett > Sent: 13/12/2012 22:40 > To: Xerte list > Subject: [Xerte] Re: How to make text superscript > > Alistair, I think the change you are thinking of was just a repointing of > the Latex service URL. > > > > From: Julian.Tenney at nottingham.ac.uk > > To: xerte at lists.nottingham.ac.uk > > Date: Thu, 13 Dec 2012 08:00:19 +0000 > > Subject: [Xerte] Re: How to make text superscript > > > > it will do, but it will dsplay an image of the formula, even if it's > > just x^2, so it won't display inline > > ________________________________________ > > From: xerte-bounces at lists.nottingham.ac.uk > > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught > > [Alistair.McNaught at HEAcademy.ac.uk] > > Sent: 12 December 2012 15:05 > > To: Xerte discussion list > > Subject: [Xerte] Re: How to make text superscript > > > > Does LaTeX do that? I know we had success with using LaTeX to create > maths > and formulae but I have a feeling that the way that happened may have > changed in the last year? Anyone remember? > > > > A > > > > From: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > > Haji Mohd Hussin > > Sent: 12 December 2012 14:32 > > To: xerte at lists.nottingham.ac.uk > > Subject: [Xerte] How to make text superscript > > > > Hello > > > > As mentioned in the subject, I need to turn certain texts into > superscript > and apparently using html tags for superscript didn't work. Is there > any other way? > > > > Cheers, > > Suhaila > > > > > > This email is confidential and may be privileged. If you are not the > > intended recipient please accept our apologies. Please do not > > disclose, copy, or distribute information in this email nor take any > > action in reliance on its contents: to do so is strictly prohibited > > and may be unlawful. Please inform us that this message has gone > > astray before deleting it. Please note that views expressed in this > > email are those of the author and do not necessarily represent those > > of the Higher Education Academy. Please note that this e-mail has been > > created in the knowledge that Internet e-mail is not a secure > > communications medium. We advise that you understand and observe this > > lack of security when e-mailing us. Although we have taken steps to > > ensure this e-mail and attachments are free from any virus, we advise > > that in keeping with good computing practice the recipient should > > ensure they are actually virus free. The Higher Education Academy > > Registered No 4930131 > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > > attachment may still contain software viruses which could damage your > computer 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 email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before > deleting > it. Please note that views expressed in this email are those of the author > and do not necessarily represent those of the Higher Education Academy. > Please note that this e-mail has been created in the knowledge that > Internet > e-mail is not a secure communications medium. We advise that you understand > and observe this lack of security when e-mailing us. Although we have taken > steps to ensure this e-mail and attachments are free from any virus, we > advise that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy > Registered > No 4930131 > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/08bfd609 > /attachment.html> > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 107, Issue 13 > ************************************** > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 paulo.fm.torres at gmail.com Fri Dec 14 16:56:47 2012 From: paulo.fm.torres at gmail.com (Paulo Torres) Date: Fri, 14 Dec 2012 16:56:47 -0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 15 In-Reply-To: References: Message-ID: <001201cdda1c$0222d8b0$06688a10$@gmail.com> Hi Where do I go to set up LDAP Authentication for XOT please. Best Regards, Paulo Torres -----Mensagem original----- De: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de xerte-request at lists.nottingham.ac.uk Enviada: Friday, December 14, 2012 10:35 AM Para: xerte at lists.nottingham.ac.uk Assunto: Xerte Digest, Vol 107, Issue 15 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: Template (Brane ?mitek) 2. Re: Template (Pat Lockley) 3. Re: Xerte Digest, Vol 107, Issue 13 (Pat Lockley) ---------------------------------------------------------------------- Message: 1 Date: Fri, 14 Dec 2012 07:05:35 +0100 From: Brane ?mitek To: "'Xerte discussion list'" Subject: [Xerte] Re: Template Message-ID: <000c01cdd9c1$09af6ea0$1d0e4be0$@smitek at fov.uni-mb.si> Content-Type: text/plain; charset="utf-8" You have in mind new page template? I'm not a good programmer so my PHP knowledge is poor but if I need it I will try to learn. I'm IT university teacher, responsible for elearning material development, but not a programmer. I only want to make my own learning object user window (change colors, logo, maybe navigation buttons etc). For first step colors will be enough. I'm looking in CSS for colors but I didn't find anything. Where is write the initial (on first loading there is blue) combination of colors? Membership in the developer list maybe would be good for me to collect information and additional knowledge to present XOT possibilities to my colleagues. How do I join to developer list? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Thursday, December 13, 2012 9:21 PM To: Xerte discussion list Subject: [Xerte] Re: Template Hi Brane, In 1.9 you can make templates just using php (not xerte templates, but for any type of content) You might want to subscribe to the developer list? Pat On 13 Dec 2012, at 19:32, Brane ?mitek wrote: How can I make my own template for Xerte Online Toolkits? What picture format is most suitable for using in learning objects? Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si _______________________________________________ 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: ------------------------------ Message: 2 Date: Fri, 14 Dec 2012 10:24:20 +0000 From: Pat Lockley To: Xerte discussion list Subject: [Xerte] Re: Template Message-ID: Content-Type: text/plain; charset="utf-8" http://www.nottingham.ac.uk/xerte/community.aspx The developer list sign up is here. Changing the colour of XOT is possible - http://lists.nottingham.ac.uk/pipermail/xerte/2012-February/012827.html On Fri, Dec 14, 2012 at 6:05 AM, Brane ?mitek wrote: > You have in mind new page template? I'm not a good programmer so my > PHP knowledge is poor but if I need it**** > > I will try to learn. I'm IT university teacher, responsible for > elearning material development, but not a programmer.**** > > I only want to make my own learning object user window (change colors, > logo, maybe navigation buttons etc).**** > > For first step colors will be enough. I'm looking in CSS for colors > but I didn't find anything. Where is write**** > > the initial (on first loading there is blue) combination of > colors?**** > > ** ** > > Membership in the developer list maybe would be good for me to collect > information and additional knowledge**** > > to present XOT possibilities to my colleagues. How do I join to > developer > list?**** > > ** ** > > ** ** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Thursday, December 13, 2012 9:21 PM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Template**** > > ** ** > > Hi Brane,**** > > ** ** > > In 1.9 you can make templates just using php (not xerte templates, but > for any type of content)**** > > ** ** > > You might want to subscribe to the developer list?**** > > ** ** > > Pat > > On 13 Dec 2012, at 19:32, Brane ?mitek wrote: > **** > > How can I make my own template for Xerte Online Toolkits?**** > > What picture format is most suitable for using in learning > objects?**** > > Kind regards **** > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA **** > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si **** > > > > **** > > _______________________________________________ > 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 -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Fri, 14 Dec 2012 10:31:51 +0000 From: Pat Lockley To: Xerte discussion list Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 13 Message-ID: Content-Type: text/plain; charset="iso-8859-1" XOT has four options 1) Integrate to moodle 2) Integrate to LDAP 3) Use static authentication 4) Provide accounts from somewhere else On Fri, Dec 14, 2012 at 5:53 AM, Paulo Torres wrote: > Good day, > How can i create a user specific workspace? > How can I create a user? > > Best Regards, > Paulo Torress > > -----Mensagem original----- > De: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de > xerte-request at lists.nottingham.ac.uk > Enviada: Thursday, December 13, 2012 10:53 PM > Para: xerte at lists.nottingham.ac.uk > Assunto: Xerte Digest, Vol 107, 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: How to make text superscript (Dave Burnett) > 2. Template (Brane ?mitek) > 3. Re: Template (Pat Lockley) > 4. Re: How to make text superscript (Alistair McNaught) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 13 Dec 2012 07:02:06 -0500 > From: Dave Burnett > To: Xerte list > Subject: [Xerte] Re: How to make text superscript > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > > Alistair, I think the change you are thinking of was just a repointing > of the Latex service URL. > > > From: Julian.Tenney at nottingham.ac.uk > > To: xerte at lists.nottingham.ac.uk > > Date: Thu, 13 Dec 2012 08:00:19 +0000 > > Subject: [Xerte] Re: How to make text superscript > > > > it will do, but it will dsplay an image of the formula, even if it's > > just x^2, so it won't display inline > > ________________________________________ > > From: xerte-bounces at lists.nottingham.ac.uk > > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair > > McNaught [Alistair.McNaught at HEAcademy.ac.uk] > > Sent: 12 December 2012 15:05 > > To: Xerte discussion list > > Subject: [Xerte] Re: How to make text superscript > > > > Does LaTeX do that? I know we had success with using LaTeX to create > maths > and formulae but I have a feeling that the way that happened may have > changed in the last year? Anyone remember? > > > > A > > > > From: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > > Haji Mohd Hussin > > Sent: 12 December 2012 14:32 > > To: xerte at lists.nottingham.ac.uk > > Subject: [Xerte] How to make text superscript > > > > Hello > > > > As mentioned in the subject, I need to turn certain texts into > superscript > and apparently using html tags for superscript didn't work. Is > there any other way? > > > > Cheers, > > Suhaila > > > > > > This email is confidential and may be privileged. If you are not the > > intended recipient please accept our apologies. Please do not > > disclose, copy, or distribute information in this email nor take any > > action in reliance on its contents: to do so is strictly prohibited > > and may be unlawful. Please inform us that this message has gone > > astray before deleting it. Please note that views expressed in this > > email are those of the author and do not necessarily represent those > > of the Higher Education Academy. Please note that this e-mail has > > been created in the knowledge that Internet e-mail is not a secure > > communications medium. We advise that you understand and observe > > this lack of security when e-mailing us. Although we have taken > > steps to ensure this e-mail and attachments are free from any virus, > > we advise that in keeping with good computing practice the recipient > > should ensure they are actually virus free. The Higher Education > > Academy Registered No 4930131 > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > > addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not > use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > > attachment may still contain software viruses which could damage > > your > computer 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/20121213/26e > b5158 > /attachment-0001.html> > > ------------------------------ > > Message: 2 > Date: Thu, 13 Dec 2012 20:32:00 +0100 > From: Brane ?mitek > To: > Subject: [Xerte] Template > Message-ID: <000001cdd968$86b92840$942b78c0$@smitek at fov.uni-mb.si> > Content-Type: text/plain; charset="iso-8859-2" > > How can I make my own template for Xerte Online Toolkits? > > What picture format is most suitable for using in learning objects? > > Kind regards > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si > > > -------------- next part -------------- An HTML attachment was > scrubbed... > URL: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/9bd > cb62b > /attachment-0001.html> > > ------------------------------ > > Message: 3 > Date: Thu, 13 Dec 2012 20:21:05 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Template > Message-ID: > Content-Type: text/plain; charset="utf-8" > > Hi Brane, > > In 1.9 you can make templates just using php (not xerte templates, but > for any type of content) > > You might want to subscribe to the developer list? > > Pat > > On 13 Dec 2012, at 19:32, Brane ?mitek wrote: > > > How can I make my own template for Xerte Online Toolkits? > > > > What picture format is most suitable for using in learning objects? > > > > Kind regards > > > > Branislav SMITEK Ph.D. > > University of Maribor > > FACULTY OF ORGANIZATIONAL SCIENCES > > Kidriceva cesta 55/a > > SI4000 KRANJ > > SLOVENIA > > > > tel: +386 4 237 42 63 > > fax: +386 4 237 42 99 > > e-mail: brane.smitek at fov.uni-mb.si > > > > > > > > > > > > _______________________________________________ > > 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: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/e0c > ceb74 > /attachment-0001.html> > > ------------------------------ > > Message: 4 > Date: Thu, 13 Dec 2012 22:52:16 +0000 > From: Alistair McNaught > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Ah, that will be it. Still works; just from different place. > > A > > Sent from my Windows Phone > ________________________________ > From: Dave Burnett > Sent: 13/12/2012 22:40 > To: Xerte list > Subject: [Xerte] Re: How to make text superscript > > Alistair, I think the change you are thinking of was just a repointing > of the Latex service URL. > > > > From: Julian.Tenney at nottingham.ac.uk > > To: xerte at lists.nottingham.ac.uk > > Date: Thu, 13 Dec 2012 08:00:19 +0000 > > Subject: [Xerte] Re: How to make text superscript > > > > it will do, but it will dsplay an image of the formula, even if it's > > just x^2, so it won't display inline > > ________________________________________ > > From: xerte-bounces at lists.nottingham.ac.uk > > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair > > McNaught [Alistair.McNaught at HEAcademy.ac.uk] > > Sent: 12 December 2012 15:05 > > To: Xerte discussion list > > Subject: [Xerte] Re: How to make text superscript > > > > Does LaTeX do that? I know we had success with using LaTeX to create > maths > and formulae but I have a feeling that the way that happened may have > changed in the last year? Anyone remember? > > > > A > > > > From: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > > Haji Mohd Hussin > > Sent: 12 December 2012 14:32 > > To: xerte at lists.nottingham.ac.uk > > Subject: [Xerte] How to make text superscript > > > > Hello > > > > As mentioned in the subject, I need to turn certain texts into > superscript > and apparently using html tags for superscript didn't work. Is > there any other way? > > > > Cheers, > > Suhaila > > > > > > This email is confidential and may be privileged. If you are not the > > intended recipient please accept our apologies. Please do not > > disclose, copy, or distribute information in this email nor take any > > action in reliance on its contents: to do so is strictly prohibited > > and may be unlawful. Please inform us that this message has gone > > astray before deleting it. Please note that views expressed in this > > email are those of the author and do not necessarily represent those > > of the Higher Education Academy. Please note that this e-mail has > > been created in the knowledge that Internet e-mail is not a secure > > communications medium. We advise that you understand and observe > > this lack of security when e-mailing us. Although we have taken > > steps to ensure this e-mail and attachments are free from any virus, > > we advise that in keeping with good computing practice the recipient > > should ensure they are actually virus free. The Higher Education > > Academy Registered No 4930131 > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the > > addressee and > may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > > attachment may still contain software viruses which could damage > > your > computer 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 email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not > disclose, copy, or distribute information in this email nor take any > action in reliance on its contents: to do so is strictly prohibited > and may be unlawful. Please inform us that this message has gone > astray before deleting it. Please note that views expressed in this > email are those of the author and do not necessarily represent those > of the Higher Education Academy. > Please note that this e-mail has been created in the knowledge that > Internet e-mail is not a secure communications medium. We advise that > you understand and observe this lack of security when e-mailing us. > Although we have taken steps to ensure this e-mail and attachments are > free from any virus, we advise that in keeping with good computing > practice the recipient should ensure they are actually virus free. The > Higher Education Academy Registered No 4930131 > -------------- next part -------------- An HTML attachment was > scrubbed... > URL: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/08b > fd609 > /attachment.html> > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 107, Issue 13 > ************************************** > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not > use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or > in any attachment. Any views or opinions expressed by the author of > this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer 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: ------------------------------ _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte End of Xerte Digest, Vol 107, Issue 15 ************************************** This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. From patrick.lockley at googlemail.com Fri Dec 14 17:02:13 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 14 Dec 2012 17:02:13 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 15 In-Reply-To: <001201cdda1c$0222d8b0$06688a10$@gmail.com> References: <001201cdda1c$0222d8b0$06688a10$@gmail.com> Message-ID: site_url/management.php where site_url is your address or use phpmyadmin You can add LDAP during setup as well On Fri, Dec 14, 2012 at 4:56 PM, Paulo Torres wrote: > Hi > > Where do I go to set up LDAP Authentication for XOT please. > > Best Regards, > Paulo Torres > > -----Mensagem original----- > De: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de > xerte-request at lists.nottingham.ac.uk > Enviada: Friday, December 14, 2012 10:35 AM > Para: xerte at lists.nottingham.ac.uk > Assunto: Xerte Digest, Vol 107, Issue 15 > > 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: Template (Brane ?mitek) > 2. Re: Template (Pat Lockley) > 3. Re: Xerte Digest, Vol 107, Issue 13 (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 14 Dec 2012 07:05:35 +0100 > From: Brane ?mitek > To: "'Xerte discussion list'" > Subject: [Xerte] Re: Template > Message-ID: <000c01cdd9c1$09af6ea0$1d0e4be0$@smitek at fov.uni-mb.si> > Content-Type: text/plain; charset="utf-8" > > You have in mind new page template? I'm not a good programmer so my PHP > knowledge is poor but if I need it > > I will try to learn. I'm IT university teacher, responsible for elearning > material development, but not a programmer. > > I only want to make my own learning object user window (change colors, > logo, > maybe navigation buttons etc). > > For first step colors will be enough. I'm looking in CSS for colors but I > didn't find anything. Where is write > > the initial (on first loading there is blue) combination of colors? > > > > Membership in the developer list maybe would be good for me to collect > information and additional knowledge > > to present XOT possibilities to my colleagues. How do I join to developer > list? > > > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley > Sent: Thursday, December 13, 2012 9:21 PM > To: Xerte discussion list > Subject: [Xerte] Re: Template > > > > Hi Brane, > > > > In 1.9 you can make templates just using php (not xerte templates, but for > any type of content) > > > > You might want to subscribe to the developer list? > > > > Pat > > On 13 Dec 2012, at 19:32, Brane ?mitek wrote: > > How can I make my own template for Xerte Online Toolkits? > > What picture format is most suitable for using in learning objects? > > Kind regards > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si > > > > > > _______________________________________________ > 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: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121214/12234ec5 > /attachment-0001.html> > > ------------------------------ > > Message: 2 > Date: Fri, 14 Dec 2012 10:24:20 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Template > Message-ID: > < > CAO2PinM9wHZAMAB8JaTnaU2xHFav9tm6GSD4yJPy96MgdqQ++Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > http://www.nottingham.ac.uk/xerte/community.aspx > > The developer list sign up is here. > > Changing the colour of XOT is possible - > http://lists.nottingham.ac.uk/pipermail/xerte/2012-February/012827.html > > > On Fri, Dec 14, 2012 at 6:05 AM, Brane ?mitek > wrote: > > > You have in mind new page template? I'm not a good programmer so my > > PHP knowledge is poor but if I need it**** > > > > I will try to learn. I'm IT university teacher, responsible for > > elearning material development, but not a programmer.**** > > > > I only want to make my own learning object user window (change colors, > > logo, maybe navigation buttons etc).**** > > > > For first step colors will be enough. I'm looking in CSS for colors > > but I didn't find anything. Where is write**** > > > > the initial (on first loading there is blue) combination of > > colors?**** > > > > ** ** > > > > Membership in the developer list maybe would be good for me to collect > > information and additional knowledge**** > > > > to present XOT possibilities to my colleagues. How do I join to > > developer > > list?**** > > > > ** ** > > > > ** ** > > > > ** ** > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > > *Sent:* Thursday, December 13, 2012 9:21 PM > > *To:* Xerte discussion list > > *Subject:* [Xerte] Re: Template**** > > > > ** ** > > > > Hi Brane,**** > > > > ** ** > > > > In 1.9 you can make templates just using php (not xerte templates, but > > for any type of content)**** > > > > ** ** > > > > You might want to subscribe to the developer list?**** > > > > ** ** > > > > Pat > > > > On 13 Dec 2012, at 19:32, Brane ?mitek > wrote: > > **** > > > > How can I make my own template for Xerte Online Toolkits?**** > > > > What picture format is most suitable for using in learning > > objects?**** > > > > Kind regards **** > > > > Branislav SMITEK Ph.D. > > University of Maribor > > FACULTY OF ORGANIZATIONAL SCIENCES > > Kidriceva cesta 55/a > > SI4000 KRANJ > > SLOVENIA **** > > > > tel: +386 4 237 42 63 > > fax: +386 4 237 42 99 > > e-mail: brane.smitek at fov.uni-mb.si **** > > > > > > > > **** > > > > _______________________________________________ > > 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 -------------- > An HTML attachment was scrubbed... > URL: > < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121214/e80990e0 > /attachment-0001.html> > > ------------------------------ > > Message: 3 > Date: Fri, 14 Dec 2012 10:31:51 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Digest, Vol 107, Issue 13 > Message-ID: > yHDy5PspnQD9VRaG4MgrBJgLszhN-7KDcbV4NZFfnQ at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > XOT has four options > > 1) Integrate to moodle > 2) Integrate to LDAP > 3) Use static authentication > 4) Provide accounts from somewhere else > > > On Fri, Dec 14, 2012 at 5:53 AM, Paulo Torres > wrote: > > > Good day, > > How can i create a user specific workspace? > > How can I create a user? > > > > Best Regards, > > Paulo Torress > > > > -----Mensagem original----- > > De: xerte-bounces at lists.nottingham.ac.uk > > [mailto:xerte-bounces at lists.nottingham.ac.uk] Em nome de > > xerte-request at lists.nottingham.ac.uk > > Enviada: Thursday, December 13, 2012 10:53 PM > > Para: xerte at lists.nottingham.ac.uk > > Assunto: Xerte Digest, Vol 107, 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: How to make text superscript (Dave Burnett) > > 2. Template (Brane ?mitek) > > 3. Re: Template (Pat Lockley) > > 4. Re: How to make text superscript (Alistair McNaught) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Thu, 13 Dec 2012 07:02:06 -0500 > > From: Dave Burnett > > To: Xerte list > > Subject: [Xerte] Re: How to make text superscript > > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > > > > > Alistair, I think the change you are thinking of was just a repointing > > of the Latex service URL. > > > > > From: Julian.Tenney at nottingham.ac.uk > > > To: xerte at lists.nottingham.ac.uk > > > Date: Thu, 13 Dec 2012 08:00:19 +0000 > > > Subject: [Xerte] Re: How to make text superscript > > > > > > it will do, but it will dsplay an image of the formula, even if it's > > > just x^2, so it won't display inline > > > ________________________________________ > > > From: xerte-bounces at lists.nottingham.ac.uk > > > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair > > > McNaught [Alistair.McNaught at HEAcademy.ac.uk] > > > Sent: 12 December 2012 15:05 > > > To: Xerte discussion list > > > Subject: [Xerte] Re: How to make text superscript > > > > > > Does LaTeX do that? I know we had success with using LaTeX to create > > maths > > and formulae but I have a feeling that the way that happened may have > > changed in the last year? Anyone remember? > > > > > > A > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > > > Haji Mohd Hussin > > > Sent: 12 December 2012 14:32 > > > To: xerte at lists.nottingham.ac.uk > > > Subject: [Xerte] How to make text superscript > > > > > > Hello > > > > > > As mentioned in the subject, I need to turn certain texts into > > superscript > > and apparently using html tags for superscript didn't work. Is > > there any other way? > > > > > > Cheers, > > > Suhaila > > > > > > > > > This email is confidential and may be privileged. If you are not the > > > intended recipient please accept our apologies. Please do not > > > disclose, copy, or distribute information in this email nor take any > > > action in reliance on its contents: to do so is strictly prohibited > > > and may be unlawful. Please inform us that this message has gone > > > astray before deleting it. Please note that views expressed in this > > > email are those of the author and do not necessarily represent those > > > of the Higher Education Academy. Please note that this e-mail has > > > been created in the knowledge that Internet e-mail is not a secure > > > communications medium. We advise that you understand and observe > > > this lack of security when e-mailing us. Although we have taken > > > steps to ensure this e-mail and attachments are free from any virus, > > > we advise that in keeping with good computing practice the recipient > > > should ensure they are actually virus free. The Higher Education > > > Academy Registered No 4930131 > > > > > > _______________________________________________ > > > Xerte mailing list > > > Xerte at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > This message and any attachment are intended solely for the > > > addressee and > > may contain confidential information. If you have received this message > in > > error, please send it back to me, and immediately delete it. Please do > > not > > use, copy or disclose the information contained in this message or in > > any attachment. Any views or opinions expressed by the author of this > > email do not necessarily reflect the views of the University of > Nottingham. > > > > > > This message has been checked for viruses but the contents of an > > > attachment may still contain software viruses which could damage > > > your > > computer 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/20121213/26e > > b5158 > > /attachment-0001.html> > > > > ------------------------------ > > > > Message: 2 > > Date: Thu, 13 Dec 2012 20:32:00 +0100 > > From: Brane ?mitek > > To: > > Subject: [Xerte] Template > > Message-ID: <000001cdd968$86b92840$942b78c0$@smitek at fov.uni-mb.si> > > Content-Type: text/plain; charset="iso-8859-2" > > > > How can I make my own template for Xerte Online Toolkits? > > > > What picture format is most suitable for using in learning objects? > > > > Kind regards > > Branislav SMITEK Ph.D. > > University of Maribor > > FACULTY OF ORGANIZATIONAL SCIENCES > > Kidriceva cesta 55/a > > SI4000 KRANJ > > SLOVENIA > > tel: +386 4 237 42 63 > > fax: +386 4 237 42 99 > > e-mail: brane.smitek at fov.uni-mb.si > > > > > > -------------- next part -------------- An HTML attachment was > > scrubbed... > > URL: > > < > > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/9bd > > cb62b > > /attachment-0001.html> > > > > ------------------------------ > > > > Message: 3 > > Date: Thu, 13 Dec 2012 20:21:05 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Template > > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > > > Hi Brane, > > > > In 1.9 you can make templates just using php (not xerte templates, but > > for any type of content) > > > > You might want to subscribe to the developer list? > > > > Pat > > > > On 13 Dec 2012, at 19:32, Brane ?mitek > wrote: > > > > > How can I make my own template for Xerte Online Toolkits? > > > > > > What picture format is most suitable for using in learning objects? > > > > > > Kind regards > > > > > > Branislav SMITEK Ph.D. > > > University of Maribor > > > FACULTY OF ORGANIZATIONAL SCIENCES > > > Kidriceva cesta 55/a > > > SI4000 KRANJ > > > SLOVENIA > > > > > > tel: +386 4 237 42 63 > > > fax: +386 4 237 42 99 > > > e-mail: brane.smitek at fov.uni-mb.si > > > > > > > > > > > > > > > > > > _______________________________________________ > > > 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: > > < > > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/e0c > > ceb74 > > /attachment-0001.html> > > > > ------------------------------ > > > > Message: 4 > > Date: Thu, 13 Dec 2012 22:52:16 +0000 > > From: Alistair McNaught > > To: Xerte discussion list > > Subject: [Xerte] Re: How to make text superscript > > Message-ID: > > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Ah, that will be it. Still works; just from different place. > > > > A > > > > Sent from my Windows Phone > > ________________________________ > > From: Dave Burnett > > Sent: 13/12/2012 22:40 > > To: Xerte list > > Subject: [Xerte] Re: How to make text superscript > > > > Alistair, I think the change you are thinking of was just a repointing > > of the Latex service URL. > > > > > > > From: Julian.Tenney at nottingham.ac.uk > > > To: xerte at lists.nottingham.ac.uk > > > Date: Thu, 13 Dec 2012 08:00:19 +0000 > > > Subject: [Xerte] Re: How to make text superscript > > > > > > it will do, but it will dsplay an image of the formula, even if it's > > > just x^2, so it won't display inline > > > ________________________________________ > > > From: xerte-bounces at lists.nottingham.ac.uk > > > [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair > > > McNaught [Alistair.McNaught at HEAcademy.ac.uk] > > > Sent: 12 December 2012 15:05 > > > To: Xerte discussion list > > > Subject: [Xerte] Re: How to make text superscript > > > > > > Does LaTeX do that? I know we had success with using LaTeX to create > > maths > > and formulae but I have a feeling that the way that happened may have > > changed in the last year? Anyone remember? > > > > > > A > > > > > > From: xerte-bounces at lists.nottingham.ac.uk > > > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila > > > Haji Mohd Hussin > > > Sent: 12 December 2012 14:32 > > > To: xerte at lists.nottingham.ac.uk > > > Subject: [Xerte] How to make text superscript > > > > > > Hello > > > > > > As mentioned in the subject, I need to turn certain texts into > > superscript > > and apparently using html tags for superscript didn't work. Is > > there any other way? > > > > > > Cheers, > > > Suhaila > > > > > > > > > This email is confidential and may be privileged. If you are not the > > > intended recipient please accept our apologies. Please do not > > > disclose, copy, or distribute information in this email nor take any > > > action in reliance on its contents: to do so is strictly prohibited > > > and may be unlawful. Please inform us that this message has gone > > > astray before deleting it. Please note that views expressed in this > > > email are those of the author and do not necessarily represent those > > > of the Higher Education Academy. Please note that this e-mail has > > > been created in the knowledge that Internet e-mail is not a secure > > > communications medium. We advise that you understand and observe > > > this lack of security when e-mailing us. Although we have taken > > > steps to ensure this e-mail and attachments are free from any virus, > > > we advise that in keeping with good computing practice the recipient > > > should ensure they are actually virus free. The Higher Education > > > Academy Registered No 4930131 > > > > > > _______________________________________________ > > > Xerte mailing list > > > Xerte at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > This message and any attachment are intended solely for the > > > addressee and > > may contain confidential information. If you have received this > > message in error, please send it back to me, and immediately delete > > it. Please do not use, copy or disclose the information contained in > > this message or in any attachment. Any views or opinions expressed by > > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > > > > > This message has been checked for viruses but the contents of an > > > attachment may still contain software viruses which could damage > > > your > > computer 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 email is confidential and may be privileged. If you are not the > > intended recipient please accept our apologies. Please do not > > disclose, copy, or distribute information in this email nor take any > > action in reliance on its contents: to do so is strictly prohibited > > and may be unlawful. Please inform us that this message has gone > > astray before deleting it. Please note that views expressed in this > > email are those of the author and do not necessarily represent those > > of the Higher Education Academy. > > Please note that this e-mail has been created in the knowledge that > > Internet e-mail is not a secure communications medium. We advise that > > you understand and observe this lack of security when e-mailing us. > > Although we have taken steps to ensure this e-mail and attachments are > > free from any virus, we advise that in keeping with good computing > > practice the recipient should ensure they are actually virus free. The > > Higher Education Academy Registered No 4930131 > > -------------- next part -------------- An HTML attachment was > > scrubbed... > > URL: > > < > > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121213/08b > > fd609 > > /attachment.html> > > > > ------------------------------ > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > End of Xerte Digest, Vol 107, Issue 13 > > ************************************** > > This message and any attachment are intended solely for the addressee > > and may contain confidential information. If you have received this > message in > > error, please send it back to me, and immediately delete it. Please do > > not > > use, copy or disclose the information contained in this message or in > > any attachment. Any views or opinions expressed by the author of this > > email do not necessarily reflect the views of the University of > Nottingham. > > > > This message has been checked for viruses but the contents of an > > attachment may still contain software viruses which could damage your > computer system: > > you are advised to perform your own checks. Email communications with > > the University of Nottingham may be monitored as permitted by UK > legislation. > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee > > and may contain confidential information. If you have received this > message in > > error, please send it back to me, and immediately delete it. Please do > > not use, copy or disclose the information contained in this message or > > in any attachment. Any views or opinions expressed by the author of > > this email do not necessarily reflect the views of the University of > Nottingham. > > > > This message has been checked for viruses but the contents of an > > attachment may still contain software viruses which could damage your > computer 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/20121214/ee9f49ed > /attachment.html> > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 107, Issue 15 > ************************************** > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Oliver.Haslam at uwe.ac.uk Tue Dec 18 15:22:43 2012 From: Oliver.Haslam at uwe.ac.uk (Oliver Haslam) Date: Tue, 18 Dec 2012 15:22:43 +0000 Subject: [Xerte] log in to management.php Message-ID: <31CDB875D4C8E948899F952DE8C500C8390A9FC23B@EGEN-MBX02.campus.ads.uwe.ac.uk> Hi I've installed XOT on my local machine with XAMPP. How do I log in to management.php? What username and password do I use? Thanks Oli -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Tue Dec 18 15:29:03 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 18 Dec 2012 15:29:03 +0000 Subject: [Xerte] Re: log in to management.php In-Reply-To: <31CDB875D4C8E948899F952DE8C500C8390A9FC23B@EGEN-MBX02.campus.ads.uwe.ac.uk> References: <31CDB875D4C8E948899F952DE8C500C8390A9FC23B@EGEN-MBX02.campus.ads.uwe.ac.uk> Message-ID: Hello, Whatever you set it to be. Else, use phpmyadmin and set them in the site details table Pat On Tue, Dec 18, 2012 at 3:22 PM, Oliver Haslam wrote: > Hi**** > > ** ** > > I?ve installed XOT on my local machine with XAMPP. How do I log in to > management.php? What username and password do I use?**** > > ** ** > > Thanks**** > > ** ** > > Oli**** > > > > > _______________________________________________ > 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 Dec 18 15:49:28 2012 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 18 Dec 2012 15:49:28 +0000 Subject: [Xerte] Xerte Online Toolkits v1.9 Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian -------------- next part -------------- An HTML attachment was scrubbed... URL: From Alistair.McNaught at HEAcademy.ac.uk Tue Dec 18 16:55:32 2012 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Tue, 18 Dec 2012 16:55:32 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Great work. We hope to upgrade the TechDis sandpit early in the new year so those who are still trying to persuade tech teams to install it should soon be able to demo what it can do. A Sent from my Windows Phone ________________________________ From: Julian Tenney Sent: 18/12/2012 15:49 To: For Xerte technical developers; Xerte discussion list; A list to facilitate and support teachers using Xerte Online Toolkits Subject: [Xerte] Xerte Online Toolkits v1.9 Good people, As my final job to do before I go home and get stuck into the festivities, it?s with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you?ve got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we?ll continue working on the outstanding ones in the New Year, and aim to reach ?parity? between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you?re doing over the holidays, have a great time, see you in the New Year, Julian This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: From werciley at eadvirtual.com.br Tue Dec 18 17:24:45 2012 From: werciley at eadvirtual.com.br (Werciley Silva) Date: Tue, 18 Dec 2012 15:24:45 -0200 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Hi, Where can I find a Portuguese Language Pack for Xerte? Att. Werciley Silva www.eadvirtual.com.br 2012/12/18 Alistair McNaught > Great work. > We hope to upgrade the TechDis sandpit early in the new year so those who > are still trying to persuade tech teams to install it should soon be able > to demo what it can do. > > A > > Sent from my Windows Phone > ------------------------------ > From: Julian Tenney > Sent: 18/12/2012 15:49 > To: For Xerte technical developers; Xerte discussion list; A list to > facilitate and support teachers using Xerte Online Toolkits > Subject: [Xerte] Xerte Online Toolkits v1.9 > > > Good people, > > > > As my final job to do before I go home and get stuck into the festivities, > it?s with great pleasure I can announce the release of Xerte Online > Toolkits v1.9, which can be downloaded from our new website at > http://www.nottingham.ac.uk/xerte. > > > > Many thanks to all the brilliant people who have contributed to this > release, which brings you the first instalment of the HTML5 runtime, as > well as the usual fixes and enhancements. Installation over a 1.8 install > should be straightforward, but ask if you?ve got any questions. V1.9 > includes nearly 50 HTML5 compatible templates: we?ll continue working on > the outstanding ones in the New Year, and aim to reach ?parity? between the > new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, > at which point HTML5 will become the default option. > > > > Wherever you are, and whatever you?re doing over the holidays, have a > great time, see you in the New Year, > > > > Julian > > > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before > deleting it. Please note that views expressed in this email are those of > the author and do not necessarily represent those of the Higher Education > Academy. Please note that this e-mail has been created in the knowledge > that Internet e-mail is not a secure communications medium. We advise that > you understand and observe this lack of security when e-mailing us. > Although we have taken steps to ensure this e-mail and attachments are free > from any virus, we advise that in keeping with good computing practice the > recipient should ensure they are actually virus free. The Higher Education > Academy Registered No 4930131 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > -- Fone/Fax: 62.3954.8454 http://www.eadvirtual.com.br http://www.eadvirtual.com.br/blog http://www.educacaoadistancia.blog.br http://www.posadistancia.com.br http://www.twitter.com/eadvirtual http://www.facebook.com/ead10 http://br.linkedin.com/in/eadvirtual -------------- next part -------------- An HTML attachment was scrubbed... URL: From werciley at eadvirtual.com.br Tue Dec 18 17:24:45 2012 From: werciley at eadvirtual.com.br (Werciley Silva) Date: Tue, 18 Dec 2012 15:24:45 -0200 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Hi, Where can I find a Portuguese Language Pack for Xerte? Att. Werciley Silva www.eadvirtual.com.br 2012/12/18 Alistair McNaught > Great work. > We hope to upgrade the TechDis sandpit early in the new year so those who > are still trying to persuade tech teams to install it should soon be able > to demo what it can do. > > A > > Sent from my Windows Phone > ------------------------------ > From: Julian Tenney > Sent: 18/12/2012 15:49 > To: For Xerte technical developers; Xerte discussion list; A list to > facilitate and support teachers using Xerte Online Toolkits > Subject: [Xerte] Xerte Online Toolkits v1.9 > > > Good people, > > > > As my final job to do before I go home and get stuck into the festivities, > it?s with great pleasure I can announce the release of Xerte Online > Toolkits v1.9, which can be downloaded from our new website at > http://www.nottingham.ac.uk/xerte. > > > > Many thanks to all the brilliant people who have contributed to this > release, which brings you the first instalment of the HTML5 runtime, as > well as the usual fixes and enhancements. Installation over a 1.8 install > should be straightforward, but ask if you?ve got any questions. V1.9 > includes nearly 50 HTML5 compatible templates: we?ll continue working on > the outstanding ones in the New Year, and aim to reach ?parity? between the > new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, > at which point HTML5 will become the default option. > > > > Wherever you are, and whatever you?re doing over the holidays, have a > great time, see you in the New Year, > > > > Julian > > > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before > deleting it. Please note that views expressed in this email are those of > the author and do not necessarily represent those of the Higher Education > Academy. Please note that this e-mail has been created in the knowledge > that Internet e-mail is not a secure communications medium. We advise that > you understand and observe this lack of security when e-mailing us. > Although we have taken steps to ensure this e-mail and attachments are free > from any virus, we advise that in keeping with good computing practice the > recipient should ensure they are actually virus free. The Higher Education > Academy Registered No 4930131 > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > -- Fone/Fax: 62.3954.8454 http://www.eadvirtual.com.br http://www.eadvirtual.com.br/blog http://www.educacaoadistancia.blog.br http://www.posadistancia.com.br http://www.twitter.com/eadvirtual http://www.facebook.com/ead10 http://br.linkedin.com/in/eadvirtual -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnbijnens1 at gmail.com Tue Dec 18 18:06:13 2012 From: johnbijnens1 at gmail.com (JohnBijnens1) Date: Tue, 18 Dec 2012 19:06:13 +0100 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <0066617F-387B-410E-BE97-042439015494@gmail.com> Thank you all very much for this new version. A Merry Christmas and a Happy New Year to you all. Best regards, John Bijnens Op 18 Dec 2012 om 16:49 heeft Julian Tenney het volgende geschreven: > Good people, > > As my final job to do before I go home and get stuck into the festivities, it?s with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. > > Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you?ve got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we?ll continue working on the outstanding ones in the New Year, and aim to reach ?parity? between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. > > Wherever you are, and whatever you?re doing over the holidays, have a great time, see you in the New Year, > > Julian > > > > _______________________________________________ > 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 Dec 18 18:08:06 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 18 Dec 2012 18:08:06 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <78F70044-EE63-41CC-8185-C131C18F109B@googlemail.com> Hola, There isn't one yet sadly. Would you like to make one? Pat On 18 Dec 2012, at 17:24, Werciley Silva wrote: > Hi, > Where can I find a Portuguese Language Pack for Xerte? > Att. > Werciley Silva > www.eadvirtual.com.br > > 2012/12/18 Alistair McNaught >> Great work. >> We hope to upgrade the TechDis sandpit early in the new year so those who are still trying to persuade tech teams to install it should soon be able to demo what it can do. >> >> A >> >> Sent from my Windows Phone >> From: Julian Tenney >> Sent: 18/12/2012 15:49 >> To: For Xerte technical developers; Xerte discussion list; A list to facilitate and support teachers using Xerte Online Toolkits >> Subject: [Xerte] Xerte Online Toolkits v1.9 >> >> >> Good people, >> >> >> >> As my final job to do before I go home and get stuck into the festivities, it?s with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. >> >> >> >> Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you?ve got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we?ll continue working on the outstanding ones in the New Year, and aim to reach ?parity? between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. >> >> >> >> Wherever you are, and whatever you?re doing over the holidays, have a great time, see you in the New Year, >> >> >> >> Julian >> >> >> >> >> This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > -- > Fone/Fax: 62.3954.8454 > http://www.eadvirtual.com.br > http://www.eadvirtual.com.br/blog > http://www.educacaoadistancia.blog.br > http://www.posadistancia.com.br > http://www.twitter.com/eadvirtual > http://www.facebook.com/ead10 > http://br.linkedin.com/in/eadvirtual > > > _______________________________________________ > 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 werciley at eadvirtual.com.br Tue Dec 18 18:18:21 2012 From: werciley at eadvirtual.com.br (Werciley Silva) Date: Tue, 18 Dec 2012 16:18:21 -0200 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <78F70044-EE63-41CC-8185-C131C18F109B@googlemail.com> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <78F70044-EE63-41CC-8185-C131C18F109B@googlemail.com> Message-ID: Hi Pat, Yes I?d like to make the translation into Portuguese. What file must translate? Att. Werciley Silva 2012/12/18 Pat Lockley > Hola, > > There isn't one yet sadly. > > Would you like to make one? > > Pat > > > On 18 Dec 2012, at 17:24, Werciley Silva > wrote: > > Hi, > Where can I find a Portuguese Language Pack for Xerte? > Att. > Werciley Silva > www.eadvirtual.com.br > > 2012/12/18 Alistair McNaught > >> Great work. >> We hope to upgrade the TechDis sandpit early in the new year so those who >> are still trying to persuade tech teams to install it should soon be able >> to demo what it can do. >> >> A >> >> Sent from my Windows Phone >> ------------------------------ >> From: Julian Tenney >> Sent: 18/12/2012 15:49 >> To: For Xerte technical developers; Xerte discussion list; A list to >> facilitate and support teachers using Xerte Online Toolkits >> Subject: [Xerte] Xerte Online Toolkits v1.9 >> >> >> Good people, >> >> >> >> As my final job to do before I go home and get stuck into the >> festivities, it?s with great pleasure I can announce the release of Xerte >> Online Toolkits v1.9, which can be downloaded from our new website at >> http://www.nottingham.ac.uk/xerte. >> >> >> >> Many thanks to all the brilliant people who have contributed to this >> release, which brings you the first instalment of the HTML5 runtime, as >> well as the usual fixes and enhancements. Installation over a 1.8 install >> should be straightforward, but ask if you?ve got any questions. V1.9 >> includes nearly 50 HTML5 compatible templates: we?ll continue working on >> the outstanding ones in the New Year, and aim to reach ?parity? between the >> new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, >> at which point HTML5 will become the default option. >> >> >> >> Wherever you are, and whatever you?re doing over the holidays, have a >> great time, see you in the New Year, >> >> >> >> Julian >> >> >> >> This email is confidential and may be privileged. If you are not the >> intended recipient please accept our apologies. Please do not disclose, >> copy, or distribute information in this email nor take any action in >> reliance on its contents: to do so is strictly prohibited and may be >> unlawful. Please inform us that this message has gone astray before >> deleting it. Please note that views expressed in this email are those of >> the author and do not necessarily represent those of the Higher Education >> Academy. Please note that this e-mail has been created in the knowledge >> that Internet e-mail is not a secure communications medium. We advise that >> you understand and observe this lack of security when e-mailing us. >> Although we have taken steps to ensure this e-mail and attachments are free >> from any virus, we advise that in keeping with good computing practice the >> recipient should ensure they are actually virus free. The Higher Education >> Academy Registered No 4930131 >> >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> > > > -- > Fone/Fax: 62.3954.8454 > http://www.eadvirtual.com.br > http://www.eadvirtual.com.br/blog > http://www.educacaoadistancia.blog.br > http://www.posadistancia.com.br > http://www.twitter.com/eadvirtual > http://www.facebook.com/ead10 > http://br.linkedin.com/in/eadvirtual > > > _______________________________________________ > 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 > > -- Fone/Fax: 62.3954.8454 http://www.eadvirtual.com.br http://www.eadvirtual.com.br/blog http://www.educacaoadistancia.blog.br http://www.posadistancia.com.br http://www.twitter.com/eadvirtual http://www.facebook.com/ead10 http://br.linkedin.com/in/eadvirtual -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Tue Dec 18 18:23:14 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Tue, 18 Dec 2012 18:23:14 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <78F70044-EE63-41CC-8185-C131C18F109B@googlemail.com> Message-ID: <4A934441-625B-4B91-AED1-4F56E640FA0C@googlemail.com> Hello, Download the zip Look in the languages folder Copy en-gb to pt-br Translate all of those files Tom might email in a bit about his tool? Pat On 18 Dec 2012, at 18:18, Werciley Silva wrote: > Hi Pat, > Yes I?d like to make the translation into Portuguese. What file must translate? > Att. > Werciley Silva > > 2012/12/18 Pat Lockley >> Hola, >> >> There isn't one yet sadly. >> >> Would you like to make one? >> >> Pat >> >> >> On 18 Dec 2012, at 17:24, Werciley Silva wrote: >> >>> Hi, >>> Where can I find a Portuguese Language Pack for Xerte? >>> Att. >>> Werciley Silva >>> www.eadvirtual.com.br >>> >>> 2012/12/18 Alistair McNaught >>>> Great work. >>>> We hope to upgrade the TechDis sandpit early in the new year so those who are still trying to persuade tech teams to install it should soon be able to demo what it can do. >>>> >>>> A >>>> >>>> Sent from my Windows Phone >>>> From: Julian Tenney >>>> Sent: 18/12/2012 15:49 >>>> To: For Xerte technical developers; Xerte discussion list; A list to facilitate and support teachers using Xerte Online Toolkits >>>> Subject: [Xerte] Xerte Online Toolkits v1.9 >>>> >>>> >>>> Good people, >>>> >>>> >>>> >>>> As my final job to do before I go home and get stuck into the festivities, it?s with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. >>>> >>>> >>>> >>>> Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you?ve got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we?ll continue working on the outstanding ones in the New Year, and aim to reach ?parity? between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. >>>> >>>> >>>> >>>> Wherever you are, and whatever you?re doing over the holidays, have a great time, see you in the New Year, >>>> >>>> >>>> >>>> Julian >>>> >>>> >>>> >>>> >>>> This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 >>>> >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> >>> -- >>> Fone/Fax: 62.3954.8454 >>> http://www.eadvirtual.com.br >>> http://www.eadvirtual.com.br/blog >>> http://www.educacaoadistancia.blog.br >>> http://www.posadistancia.com.br >>> http://www.twitter.com/eadvirtual >>> http://www.facebook.com/ead10 >>> http://br.linkedin.com/in/eadvirtual >>> >>> >>> _______________________________________________ >>> 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 > > > > -- > Fone/Fax: 62.3954.8454 > http://www.eadvirtual.com.br > http://www.eadvirtual.com.br/blog > http://www.educacaoadistancia.blog.br > http://www.posadistancia.com.br > http://www.twitter.com/eadvirtual > http://www.facebook.com/ead10 > http://br.linkedin.com/in/eadvirtual > > > _______________________________________________ > 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 teacher.ad at libero.it Tue Dec 18 18:58:41 2012 From: teacher.ad at libero.it (Teacher) Date: Tue, 18 Dec 2012 19:58:41 +0100 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <50D0BCE1.1000908@libero.it> Il 18/12/2012 16:49, Julian Tenney ha scritto: > > Good people, > > As my final job to do before I go home and get stuck into the > festivities, it's with great pleasure I can announce the release of > Xerte Online Toolkits v1.9, which can be downloaded from our new > website at http://www.nottingham.ac.uk/xerte. > > Many thanks to all the brilliant people who have contributed to this > release, which brings you the first instalment of the HTML5 runtime, > as well as the usual fixes and enhancements. Installation over a 1.8 > install should be straightforward, but ask if you've got any > questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll > continue working on the outstanding ones in the New Year, and aim to > reach 'parity' between the new HTML5 runtime, and the existing > Flash-based runtime before Easter 2013, at which point HTML5 will > become the default option. > > Wherever you are, and whatever you're doing over the holidays, have a > great time, see you in the New Year, > > Julian > > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Alistair.McNaught at HEAcademy.ac.uk Tue Dec 18 20:23:25 2012 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Tue, 18 Dec 2012 20:23:25 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <50D0BCE1.1000908@libero.it> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> Message-ID: Here it is: http://www.nottingham.ac.uk/xerte/downloads/setup.exe [cid:image001.png at 01CDDD5D.86DDC3F0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Teacher Sent: 18 December 2012 18:59 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Il 18/12/2012 16:49, Julian Tenney ha scritto: Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 116399 bytes Desc: image001.png URL: From teacher.ad at libero.it Wed Dec 19 05:53:48 2012 From: teacher.ad at libero.it (Teacher) Date: Wed, 19 Dec 2012 06:53:48 +0100 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> Message-ID: <50D1566C.2020503@libero.it> Il 18/12/2012 21:23, Alistair McNaught ha scritto: > > Here it is: > > http://www.nottingham.ac.uk/xerte/downloads/setup.exe > > *From:*xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Teacher > *Sent:* 18 December 2012 18:59 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Xerte Online Toolkits v1.9 > > Il 18/12/2012 16:49, Julian Tenney ha scritto: > > Good people, > > As my final job to do before I go home and get stuck into the > festivities, it's with great pleasure I can announce the release > of Xerte Online Toolkits v1.9, which can be downloaded from our > new website at http://www.nottingham.ac.uk/xerte. > > Many thanks to all the brilliant people who have contributed to > this release, which brings you the first instalment of the HTML5 > runtime, as well as the usual fixes and enhancements. Installation > over a 1.8 install should be straightforward, but ask if you've > got any questions. V1.9 includes nearly 50 HTML5 compatible > templates: we'll continue working on the outstanding ones in the > New Year, and aim to reach 'parity' between the new HTML5 runtime, > and the existing Flash-based runtime before Easter 2013, at which > point HTML5 will become the default option. > > Wherever you are, and whatever you're doing over the holidays, > have a great time, see you in the New Year, > > Julian > > > > > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > If I go to download page, with the link of XOT I can downloading only > the Xerte 2.18. > > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not > disclose, copy, or distribute information in this email nor take any > action in reliance on its contents: to do so is strictly prohibited > and may be unlawful. Please inform us that this message has gone > astray before deleting it. Please note that views expressed in this > email are those of the author and do not necessarily represent those > of the Higher Education Academy. Please note that this e-mail has been > created in the knowledge that Internet e-mail is not a secure > communications medium. We advise that you understand and observe this > lack of security when e-mailing us. Although we have taken steps to > ensure this e-mail and attachments are free from any virus, we advise > that in keeping with good computing practice the recipient should > ensure they are actually virus free. The Higher Education Academy > Registered No 4930131 > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte But the file Setup.exe install the XERTE 2.18 and not the xerte online toolkit. Where can I find the xertetoolkits.zip of version 1.9? -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 116399 bytes Desc: not available URL: From Oliver.Haslam at uwe.ac.uk Wed Dec 19 10:03:32 2012 From: Oliver.Haslam at uwe.ac.uk (Oliver Haslam) Date: Wed, 19 Dec 2012 10:03:32 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> Message-ID: <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> First of all, many many thanks for all the hard work developing XOT v1.9. I've been trying to get XOT taken on here for ages and I'm hoping v1.9 will finally help make that possible. I'm looking forward to trying it. The link in the previous email below and on the new Xerte website, however, seems to be for Xerte v2.18. Where can I download XOT v1.9? [cid:image003.png at 01CDDDD0.19D44450] Oli From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 18 December 2012 20:23 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Here it is: http://www.nottingham.ac.uk/xerte/downloads/setup.exe [cid:image004.png at 01CDDDD0.19D44450] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Teacher Sent: 18 December 2012 18:59 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Il 18/12/2012 16:49, Julian Tenney ha scritto: Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.emz Type: application/octet-stream Size: 34408 bytes Desc: image002.emz URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.png Type: image/png Size: 53861 bytes Desc: image003.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.png Type: image/png Size: 116399 bytes Desc: image004.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: oledata.mso Type: application/octet-stream Size: 40305 bytes Desc: oledata.mso URL: From patrick.lockley at googlemail.com Wed Dec 19 10:09:30 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 19 Dec 2012 10:09:30 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> Message-ID: http://www.nottingham.ac.uk/xerte/index.aspx right hand side, top button On Wed, Dec 19, 2012 at 10:03 AM, Oliver Haslam wrote: > First of all, many many thanks for all the hard work developing XOT v1.9. > I?ve been trying to get XOT taken on here for ages and I?m hoping v1.9 will > finally help make that possible. I?m looking forward to trying it.**** > > ** ** > > The link in the previous email below and on the new Xerte website, > however, seems to be for Xerte v2.18.**** > > ** ** > > Where can I download XOT v1.9?**** > > ** ** > > ******** > > Oli**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Alistair McNaught > *Sent:* 18 December 2012 20:23 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Xerte Online Toolkits v1.9**** > > ** ** > > Here it is:**** > > **** > > http://www.nottingham.ac.uk/xerte/downloads/setup.exe**** > > **** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [ > mailto:xerte-bounces at lists.nottingham.ac.uk] > *On Behalf Of *Teacher > *Sent:* 18 December 2012 18:59 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: Xerte Online Toolkits v1.9**** > > **** > > Il 18/12/2012 16:49, Julian Tenney ha scritto:**** > > Good people,**** > > **** > > As my final job to do before I go home and get stuck into the festivities, > it?s with great pleasure I can announce the release of Xerte Online > Toolkits v1.9, which can be downloaded from our new website at > http://www.nottingham.ac.uk/xerte. **** > > **** > > Many thanks to all the brilliant people who have contributed to this > release, which brings you the first instalment of the HTML5 runtime, as > well as the usual fixes and enhancements. Installation over a 1.8 install > should be straightforward, but ask if you?ve got any questions. V1.9 > includes nearly 50 HTML5 compatible templates: we?ll continue working on > the outstanding ones in the New Year, and aim to reach ?parity? between the > new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, > at which point HTML5 will become the default option.**** > > **** > > Wherever you are, and whatever you?re doing over the holidays, have a > great time, see you in the New Year,**** > > **** > > Julian**** > > > > > > > **** > > _______________________________________________**** > > Xerte mailing list**** > > Xerte at lists.nottingham.ac.uk**** > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > If I go to download page, with the link of XOT I can downloading only the > Xerte 2.18. > > **** > > This email is confidential and may be privileged. If you are not the > intended recipient please accept our apologies. Please do not disclose, > copy, or distribute information in this email nor take any action in > reliance on its contents: to do so is strictly prohibited and may be > unlawful. Please inform us that this message has gone astray before > deleting it. Please note that views expressed in this email are those of > the author and do not necessarily represent those of the Higher Education > Academy. Please note that this e-mail has been created in the knowledge > that Internet e-mail is not a secure communications medium. We advise that > you understand and observe this lack of security when e-mailing us. > Although we have taken steps to ensure this e-mail and attachments are free > from any virus, we advise that in keeping with good computing practice the > recipient should ensure they are actually virus free. The Higher Education > Academy Registered No 4930131 **** > > _______________________________________________ > 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.png Type: image/png Size: 53861 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.png Type: image/png Size: 116399 bytes Desc: not available URL: From Oliver.Haslam at uwe.ac.uk Wed Dec 19 10:15:48 2012 From: Oliver.Haslam at uwe.ac.uk (Oliver Haslam) Date: Wed, 19 Dec 2012 10:15:48 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> Message-ID: <31CDB875D4C8E948899F952DE8C500C8390A9FC47C@EGEN-MBX02.campus.ads.uwe.ac.uk> According to the Xerte Setup Wizard (see screenshot in previous email) that button downloads Xerte v2.18. Is it wrong, perhaps? How do I know which version I have once it is installed? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 December 2012 10:10 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 http://www.nottingham.ac.uk/xerte/index.aspx right hand side, top button On Wed, Dec 19, 2012 at 10:03 AM, Oliver Haslam > wrote: First of all, many many thanks for all the hard work developing XOT v1.9. I've been trying to get XOT taken on here for ages and I'm hoping v1.9 will finally help make that possible. I'm looking forward to trying it. The link in the previous email below and on the new Xerte website, however, seems to be for Xerte v2.18. Where can I download XOT v1.9? [cid:image001.png at 01CDDDD1.D0E58AE0] Oli From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 18 December 2012 20:23 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Here it is: http://www.nottingham.ac.uk/xerte/downloads/setup.exe [cid:image002.png at 01CDDDD1.D0E58AE0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Teacher Sent: 18 December 2012 18:59 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Il 18/12/2012 16:49, Julian Tenney ha scritto: Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 _______________________________________________ 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 53861 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 116399 bytes Desc: image002.png URL: From ronm at mitchellmedia.co.uk Wed Dec 19 10:32:28 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 19 Dec 2012 10:32:28 -0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <31CDB875D4C8E948899F952DE8C500C8390A9FC47C@EGEN-MBX02.campus.ads.uwe.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> <31CDB875D4C8E948899F952DE8C500C8390A9FC47C@EGEN-MBX02.campus.ads.uwe.ac.uk> Message-ID: <05fa01cdddd4$25a4b950$70ee2bf0$@co.uk> Xerte Online Toolkits is not a .exe it's a zip which needs to be extracted to a web server. As Pat said the link is the top right link on http://www.nottingham.ac.uk/xerte and points to http://www.nottingham.ac.uk/xerte/downloads/xertetoolkits.zip HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Oliver Haslam Sent: 19 December 2012 10:16 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 According to the Xerte Setup Wizard (see screenshot in previous email) that button downloads Xerte v2.18. Is it wrong, perhaps? How do I know which version I have once it is installed? From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 19 December 2012 10:10 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 http://www.nottingham.ac.uk/xerte/index.aspx right hand side, top button On Wed, Dec 19, 2012 at 10:03 AM, Oliver Haslam wrote: First of all, many many thanks for all the hard work developing XOT v1.9. I've been trying to get XOT taken on here for ages and I'm hoping v1.9 will finally help make that possible. I'm looking forward to trying it. The link in the previous email below and on the new Xerte website, however, seems to be for Xerte v2.18. Where can I download XOT v1.9? Oli From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 18 December 2012 20:23 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Here it is: http://www.nottingham.ac.uk/xerte/downloads/setup.exe From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Teacher Sent: 18 December 2012 18:59 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Il 18/12/2012 16:49, Julian Tenney ha scritto: Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 _______________________________________________ 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 53861 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 116399 bytes Desc: not available URL: From brane.smitek at fov.uni-mb.si Wed Dec 19 10:30:38 2012 From: brane.smitek at fov.uni-mb.si (=?iso-8859-2?Q?Brane_=A9mitek?=) Date: Wed, 19 Dec 2012 11:30:38 +0100 Subject: [Xerte] XOT 1.9 Message-ID: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> I've installed XOT 1.9 version from scratch. I've imported two saved projects in Workspace withou any problems. Third one causes me a problem. I get message: Where I have to change the limit for importing large ZIP files into Workspace. Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 13377 bytes Desc: not available URL: From ronm at mitchellmedia.co.uk Wed Dec 19 10:36:21 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 19 Dec 2012 10:36:21 -0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> Message-ID: <060001cdddd4$b1c11a00$15434e00$@co.uk> Just to clarify the link Alistair shared below from the Nottingham downloads page at http://www.nottingham.ac.uk/xerte/downloads.aspx is an error at the moment. The button says Xerte Online Toolkits 1.9 but actually points to the Xerte developer download which is a setup.exe. The correct link to download Xerte Online Toolkits 1.9 can be found top right of http://www.nottingham.ac.uk/xerte and points to http://www.nottingham.ac.uk/xerte/downloads/xertetoolkits.zip HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Oliver Haslam Sent: 19 December 2012 10:04 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 First of all, many many thanks for all the hard work developing XOT v1.9. I've been trying to get XOT taken on here for ages and I'm hoping v1.9 will finally help make that possible. I'm looking forward to trying it. The link in the previous email below and on the new Xerte website, however, seems to be for Xerte v2.18. Where can I download XOT v1.9? Oli From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 18 December 2012 20:23 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Here it is: http://www.nottingham.ac.uk/xerte/downloads/setup.exe From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Teacher Sent: 18 December 2012 18:59 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Il 18/12/2012 16:49, Julian Tenney ha scritto: Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 53332 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.png Type: image/png Size: 116399 bytes Desc: not available URL: From Oliver.Haslam at uwe.ac.uk Wed Dec 19 10:44:45 2012 From: Oliver.Haslam at uwe.ac.uk (Oliver Haslam) Date: Wed, 19 Dec 2012 10:44:45 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <060001cdddd4$b1c11a00$15434e00$@co.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> <060001cdddd4$b1c11a00$15434e00$@co.uk> Message-ID: <31CDB875D4C8E948899F952DE8C500C8390A9FC4C9@EGEN-MBX02.campus.ads.uwe.ac.uk> Thanks for the clarification, Ron. Helps a lot. Oli From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 December 2012 10:36 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Just to clarify the link Alistair shared below from the Nottingham downloads page at http://www.nottingham.ac.uk/xerte/downloads.aspx is an error at the moment. The button says Xerte Online Toolkits 1.9 but actually points to the Xerte developer download which is a setup.exe. The correct link to download Xerte Online Toolkits 1.9 can be found top right of http://www.nottingham.ac.uk/xerte and points to http://www.nottingham.ac.uk/xerte/downloads/xertetoolkits.zip HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Oliver Haslam Sent: 19 December 2012 10:04 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 First of all, many many thanks for all the hard work developing XOT v1.9. I've been trying to get XOT taken on here for ages and I'm hoping v1.9 will finally help make that possible. I'm looking forward to trying it. The link in the previous email below and on the new Xerte website, however, seems to be for Xerte v2.18. Where can I download XOT v1.9? [cid:image001.png at 01CDDDD5.DC00B9A0] Oli From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 18 December 2012 20:23 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Here it is: http://www.nottingham.ac.uk/xerte/downloads/setup.exe [cid:image002.png at 01CDDDD5.DC00B9A0] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Teacher Sent: 18 December 2012 18:59 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Il 18/12/2012 16:49, Julian Tenney ha scritto: Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 53332 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 116399 bytes Desc: image002.png URL: From patrick.lockley at googlemail.com Wed Dec 19 10:46:52 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 19 Dec 2012 10:46:52 +0000 Subject: [Xerte] Re: XOT 1.9 In-Reply-To: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> References: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> Message-ID: php.ini on your server (it isn't a XOT setting) On Wed, Dec 19, 2012 at 10:30 AM, Brane ?mitek wrote: > I've installed XOT 1.9 version from scratch. I've imported two saved > projects in Workspace withou any problems.**** > > Third one causes me a problem. I get message:**** > > ** ** > > **** > > Where I have to change the limit for importing large ZIP files into > Workspace.**** > > ** ** > > ** ** > > Kind regards **** > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA **** > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si **** > > ** ** > > _______________________________________________ > 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 i.donkervoort at tor.nl Wed Dec 19 11:35:02 2012 From: i.donkervoort at tor.nl (Inge Donkervoort) Date: Wed, 19 Dec 2012 12:35:02 +0100 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <4A934441-625B-4B91-AED1-4F56E640FA0C@googlemail.com> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <78F70044-EE63-41CC-8185-C131C18F109B@googlemail.com> <4A934441-625B-4B91-AED1-4F56E640FA0C@googlemail.com> Message-ID: <50D1A666.6080803@tor.nl> Hi Werciley, Good to hear that you want to make a translation in Portugees. I will send you an email later this week about translating. Regards, Inge 12Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Op 18-12-2012 19:23, Pat Lockley schreef: > Hello, > > Download the zip > > Look in the languages folder > > Copy en-gb to pt-br > > Translate all of those files > > Tom might email in a bit about his tool? > > Pat > > On 18 Dec 2012, at 18:18, Werciley Silva > wrote: > >> Hi Pat, >> Yes I?d like to make the translation into Portuguese. What file must >> translate? >> Att. >> Werciley Silva >> >> 2012/12/18 Pat Lockley > > >> >> Hola, >> >> There isn't one yet sadly. >> >> Would you like to make one? >> >> Pat >> >> >> On 18 Dec 2012, at 17:24, Werciley Silva >> > >> wrote: >> >>> Hi, >>> Where can I find a Portuguese Language Pack for Xerte? >>> Att. >>> Werciley Silva >>> www.eadvirtual.com.br >>> >>> 2012/12/18 Alistair McNaught >> > >>> >>> Great work. >>> We hope to upgrade the TechDis sandpit early in the new year >>> so those who are still trying to persuade tech teams to >>> install it should soon be able to demo what it can do. >>> >>> A >>> >>> Sent from my Windows Phone >>> ------------------------------------------------------------------------ >>> From: Julian Tenney >>> Sent: 18/12/2012 15:49 >>> To: For Xerte technical developers; Xerte discussion list; A >>> list to facilitate and support teachers using Xerte Online >>> Toolkits >>> Subject: [Xerte] Xerte Online Toolkits v1.9 >>> >>> >>> Good people, >>> >>> As my final job to do before I go home and get stuck into >>> the festivities, it's with great pleasure I can announce the >>> release of Xerte Online Toolkits v1.9, which can be >>> downloaded from our new website at >>> http://www.nottingham.ac.uk/xerte. >>> >>> Many thanks to all the brilliant people who have contributed >>> to this release, which brings you the first instalment of >>> the HTML5 runtime, as well as the usual fixes and >>> enhancements. Installation over a 1.8 install should be >>> straightforward, but ask if you've got any questions. V1.9 >>> includes nearly 50 HTML5 compatible templates: we'll >>> continue working on the outstanding ones in the New Year, >>> and aim to reach 'parity' between the new HTML5 runtime, and >>> the existing Flash-based runtime before Easter 2013, at >>> which point HTML5 will become the default option. >>> >>> Wherever you are, and whatever you're doing over the >>> holidays, have a great time, see you in the New Year, >>> >>> Julian >>> >>> >>> >>> >>> This email is confidential and may be privileged. If you are >>> not the intended recipient please accept our apologies. >>> Please do not disclose, copy, or distribute information in >>> this email nor take any action in reliance on its contents: >>> to do so is strictly prohibited and may be unlawful. Please >>> inform us that this message has gone astray before deleting >>> it. Please note that views expressed in this email are those >>> of the author and do not necessarily represent those of the >>> Higher Education Academy. Please note that this e-mail has >>> been created in the knowledge that Internet e-mail is not a >>> secure communications medium. We advise that you understand >>> and observe this lack of security when e-mailing us. >>> Although we have taken steps to ensure this e-mail and >>> attachments are free from any virus, we advise that in >>> keeping with good computing practice the recipient should >>> ensure they are actually virus free. The Higher Education >>> Academy Registered No 4930131 >>> >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> >>> >>> -- >>> Fone/Fax: 62.3954.8454 >>> http://www.eadvirtual.com.br >>> http://www.eadvirtual.com.br/blog >>> http://www.educacaoadistancia.blog.br >>> http://www.posadistancia.com.br >>> http://www.twitter.com/eadvirtual >>> http://www.facebook.com/ead10 >>> http://br.linkedin.com/in/eadvirtual >>> >>> >>> _______________________________________________ >>> 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 >> >> >> >> >> -- >> Fone/Fax: 62.3954.8454 >> http://www.eadvirtual.com.br >> http://www.eadvirtual.com.br/blog >> http://www.educacaoadistancia.blog.br >> http://www.posadistancia.com.br >> http://www.twitter.com/eadvirtual >> http://www.facebook.com/ead10 >> http://br.linkedin.com/in/eadvirtual >> >> >> _______________________________________________ >> 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 -------------- An HTML attachment was scrubbed... URL: From werciley at eadvirtual.com.br Wed Dec 19 11:38:34 2012 From: werciley at eadvirtual.com.br (Werciley Silva) Date: Wed, 19 Dec 2012 09:38:34 -0200 Subject: [Xerte] Portuguese Language Message-ID: Ok. Inge. Thanks. Werciley Silva 2012/12/19 Inge Donkervoort > Hi Werciley, > > Good to hear that you want to make a translation in Portugees. I will send > you an email later this week about translating. > > Regards, > Inge > > 1 2 Change > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > > Op 18-12-2012 19:23, Pat Lockley schreef: > > Hello, > > Download the zip > > Look in the languages folder > > Copy en-gb to pt-br > > Translate all of those files > > Tom might email in a bit about his tool? > > Pat > > On 18 Dec 2012, at 18:18, Werciley Silva > wrote: > > Hi Pat, > Yes I?d like to make the translation into Portuguese. What file must > translate? > Att. > Werciley Silva > > 2012/12/18 Pat Lockley > >> Hola, >> >> There isn't one yet sadly. >> >> Would you like to make one? >> >> Pat >> >> >> On 18 Dec 2012, at 17:24, Werciley Silva >> wrote: >> >> Hi, >> Where can I find a Portuguese Language Pack for Xerte? >> Att. >> Werciley Silva >> www.eadvirtual.com.br >> >> 2012/12/18 Alistair McNaught >> >>> Great work. >>> We hope to upgrade the TechDis sandpit early in the new year so those >>> who are still trying to persuade tech teams to install it should soon be >>> able to demo what it can do. >>> >>> A >>> >>> Sent from my Windows Phone >>> ------------------------------ >>> From: Julian Tenney >>> Sent: 18/12/2012 15:49 >>> To: For Xerte technical developers; Xerte discussion list; A list to >>> facilitate and support teachers using Xerte Online Toolkits >>> Subject: [Xerte] Xerte Online Toolkits v1.9 >>> >>> >>> Good people, >>> >>> >>> >>> As my final job to do before I go home and get stuck into the >>> festivities, it?s with great pleasure I can announce the release of Xerte >>> Online Toolkits v1.9, which can be downloaded from our new website at >>> http://www.nottingham.ac.uk/xerte. >>> >>> >>> >>> Many thanks to all the brilliant people who have contributed to this >>> release, which brings you the first instalment of the HTML5 runtime, as >>> well as the usual fixes and enhancements. Installation over a 1.8 install >>> should be straightforward, but ask if you?ve got any questions. V1.9 >>> includes nearly 50 HTML5 compatible templates: we?ll continue working on >>> the outstanding ones in the New Year, and aim to reach ?parity? between the >>> new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, >>> at which point HTML5 will become the default option. >>> >>> >>> >>> Wherever you are, and whatever you?re doing over the holidays, have a >>> great time, see you in the New Year, >>> >>> >>> >>> Julian >>> >>> >>> >>> This email is confidential and may be privileged. If you are not the >>> intended recipient please accept our apologies. Please do not disclose, >>> copy, or distribute information in this email nor take any action in >>> reliance on its contents: to do so is strictly prohibited and may be >>> unlawful. Please inform us that this message has gone astray before >>> deleting it. Please note that views expressed in this email are those of >>> the author and do not necessarily represent those of the Higher Education >>> Academy. Please note that this e-mail has been created in the knowledge >>> that Internet e-mail is not a secure communications medium. We advise that >>> you understand and observe this lack of security when e-mailing us. >>> Although we have taken steps to ensure this e-mail and attachments are free >>> from any virus, we advise that in keeping with good computing practice the >>> recipient should ensure they are actually virus free. The Higher Education >>> Academy Registered No 4930131 >>> >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >> >> >> -- >> Fone/Fax: 62.3954.8454 >> http://www.eadvirtual.com.br >> http://www.eadvirtual.com.br/blog >> http://www.educacaoadistancia.blog.br >> http://www.posadistancia.com.br >> http://www.twitter.com/eadvirtual >> http://www.facebook.com/ead10 >> http://br.linkedin.com/in/eadvirtual >> >> >> _______________________________________________ >> 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 >> >> > > > -- > Fone/Fax: 62.3954.8454 > http://www.eadvirtual.com.br > http://www.eadvirtual.com.br/blog > http://www.educacaoadistancia.blog.br > http://www.posadistancia.com.br > http://www.twitter.com/eadvirtual > http://www.facebook.com/ead10 > http://br.linkedin.com/in/eadvirtual > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > > _______________________________________________ > Xerte mailing listXerte at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > -- Fone/Fax: 62.3954.8454 http://www.eadvirtual.com.br http://www.eadvirtual.com.br/blog http://www.educacaoadistancia.blog.br http://www.posadistancia.com.br http://www.twitter.com/eadvirtual http://www.facebook.com/ead10 http://br.linkedin.com/in/eadvirtual -------------- next part -------------- An HTML attachment was scrubbed... URL: From Alistair.McNaught at HEAcademy.ac.uk Wed Dec 19 12:05:53 2012 From: Alistair.McNaught at HEAcademy.ac.uk (Alistair McNaught) Date: Wed, 19 Dec 2012 12:05:53 +0000 Subject: [Xerte] Re: Xerte Online Toolkits v1.9 In-Reply-To: <060001cdddd4$b1c11a00$15434e00$@co.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0C4912ED55@EXCHANGE1.ad.nottingham.ac.uk> <50D0BCE1.1000908@libero.it> <31CDB875D4C8E948899F952DE8C500C8390A9FC45A@EGEN-MBX02.campus.ads.uwe.ac.uk> <060001cdddd4$b1c11a00$15434e00$@co.uk> Message-ID: Oops.. that's what comes of being enthusiastic but technically challenged :) Sorry for propagating errors. However do have a Happy Christmas A From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 19 December 2012 10:36 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Just to clarify the link Alistair shared below from the Nottingham downloads page at http://www.nottingham.ac.uk/xerte/downloads.aspx is an error at the moment. The button says Xerte Online Toolkits 1.9 but actually points to the Xerte developer download which is a setup.exe. The correct link to download Xerte Online Toolkits 1.9 can be found top right of http://www.nottingham.ac.uk/xerte and points to http://www.nottingham.ac.uk/xerte/downloads/xertetoolkits.zip HTH Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Oliver Haslam Sent: 19 December 2012 10:04 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 First of all, many many thanks for all the hard work developing XOT v1.9. I've been trying to get XOT taken on here for ages and I'm hoping v1.9 will finally help make that possible. I'm looking forward to trying it. The link in the previous email below and on the new Xerte website, however, seems to be for Xerte v2.18. Where can I download XOT v1.9? [cid:image001.png at 01CDDDE1.2FFA3800] Oli From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught Sent: 18 December 2012 20:23 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Here it is: http://www.nottingham.ac.uk/xerte/downloads/setup.exe [cid:image002.png at 01CDDDE1.2FFA3800] From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Teacher Sent: 18 December 2012 18:59 To: Xerte discussion list Subject: [Xerte] Re: Xerte Online Toolkits v1.9 Il 18/12/2012 16:49, Julian Tenney ha scritto: Good people, As my final job to do before I go home and get stuck into the festivities, it's with great pleasure I can announce the release of Xerte Online Toolkits v1.9, which can be downloaded from our new website at http://www.nottingham.ac.uk/xerte. Many thanks to all the brilliant people who have contributed to this release, which brings you the first instalment of the HTML5 runtime, as well as the usual fixes and enhancements. Installation over a 1.8 install should be straightforward, but ask if you've got any questions. V1.9 includes nearly 50 HTML5 compatible templates: we'll continue working on the outstanding ones in the New Year, and aim to reach 'parity' between the new HTML5 runtime, and the existing Flash-based runtime before Easter 2013, at which point HTML5 will become the default option. Wherever you are, and whatever you're doing over the holidays, have a great time, see you in the New Year, Julian _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte If I go to download page, with the link of XOT I can downloading only the Xerte 2.18. This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 53332 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 116399 bytes Desc: image002.png URL: From DPerry at hull-college.ac.uk Wed Dec 19 15:32:27 2012 From: DPerry at hull-college.ac.uk (David Perry) Date: Wed, 19 Dec 2012 15:32:27 +0000 Subject: [Xerte] Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Message-ID: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> Hi all Has anyone got a working set of LDAP settings for a Netware-based network? We've left the bind password blank as we don't authenticate to our LDAP servers, but not sure what to set the filter and other bind values for - we use cn for username, knownAs for the full name, dn for their location within the tree (e.g. cn=username,ou=admin,ou=site,o=hull-college) and have set the basedn to be o=hull_coll (the same as we do for moodle). This is for the latest version. The previous one we were running had the LDAP code hacked to ignore the database settings for it, but it doesn't look as straightforward to do this in the latest version. Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email? ********************************************************************** This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Any views expressed in this message are solely the views of the individual and do not represent the views of the College. Nothing in this message should be construed as creating a contract. Hull College owns the email infrastructure, including the contents. Hull College is committed to sustainability, please reflect before printing this email. ********************************************************************** From ronm at mitchellmedia.co.uk Wed Dec 19 15:58:06 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 19 Dec 2012 15:58:06 -0000 Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network In-Reply-To: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> References: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> Message-ID: <06b601cdde01$a30aa5d0$e91ff170$@co.uk> Did you upgrade or create a new install? If you upgraded run upgrade.php to transfer ldap details from the site details table to the ldap table. Then try different details via management.php with that open in one browser and testing login in a different browser. Check that the details are being stored in the ldap table. I don't know the specifics of Netware but the doc attached might help with the differences from 1.7 to 1.9. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 15:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Hi all Has anyone got a working set of LDAP settings for a Netware-based network? We've left the bind password blank as we don't authenticate to our LDAP servers, but not sure what to set the filter and other bind values for - we use cn for username, knownAs for the full name, dn for their location within the tree (e.g. cn=username,ou=admin,ou=site,o=hull-college) and have set the basedn to be o=hull_coll (the same as we do for moodle). This is for the latest version. The previous one we were running had the LDAP code hacked to ignore the database settings for it, but it doesn't look as straightforward to do this in the latest version. Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email? ********************************************************************** This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Any views expressed in this message are solely the views of the individual and do not represent the views of the College. Nothing in this message should be construed as creating a contract. Hull College owns the email infrastructure, including the contents. Hull College is committed to sustainability, please reflect before printing this email. ********************************************************************** _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- A non-text attachment was scrubbed... Name: anonymised_xot_Ldap_notes.pdf Type: application/pdf Size: 193399 bytes Desc: not available URL: From DPerry at hull-college.ac.uk Wed Dec 19 16:14:38 2012 From: DPerry at hull-college.ac.uk (David Perry) Date: Wed, 19 Dec 2012 16:14:38 +0000 Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network In-Reply-To: <06b601cdde01$a30aa5d0$e91ff170$@co.uk> References: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> <06b601cdde01$a30aa5d0$e91ff170$@co.uk> Message-ID: <50D1E7EE02000026000CD3E1@hull-college.ac.uk> Ron This is based on a clean install (the upgrade didn't completely work). Your example is interesting, thanks. We can't bind to a specific ou= because our users are scattered around them based on which physical site and department they are in, all we can say is 'they are somewhere within o=hull_coll'. My colleague remember having used a curly brackets notation previously to invoke sub-context searches, but not sure here if you can just say '{cn=}'. What does knownname mean? What should be there? And is your example for hooking up to an AD system? Does it search sub-contexts? If so we can try and get access to an AD server. And what's this sAMAccount name for in ldap_filter_attr? Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email?>>> "Ron Mitchell" 19/12/2012 15:58 >>> Did you upgrade or create a new install? If you upgraded run upgrade.php to transfer ldap details from the site details table to the ldap table. Then try different details via management.php with that open in one browser and testing login in a different browser. Check that the details are being stored in the ldap table. I don't know the specifics of Netware but the doc attached might help with the differences from 1.7 to 1.9. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 15:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Hi all Has anyone got a working set of LDAP settings for a Netware-based network? We've left the bind password blank as we don't authenticate to our LDAP servers, but not sure what to set the filter and other bind values for - we use cn for username, knownAs for the full name, dn for their location within the tree (e.g. cn=username,ou=admin,ou=site,o=hull-college) and have set the basedn to be o=hull_coll (the same as we do for moodle). This is for the latest version. The previous one we were running had the LDAP code hacked to ignore the database settings for it, but it doesn't look as straightforward to do this in the latest version. Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email? ********************************************************************** This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Any views expressed in this message are solely the views of the individual and do not represent the views of the College. Nothing in this message should be construed as creating a contract. Hull College owns the email infrastructure, including the contents. Hull College is committed to sustainability, please reflect before printing this email. ********************************************************************** _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. From ronm at mitchellmedia.co.uk Wed Dec 19 16:41:02 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 19 Dec 2012 16:41:02 -0000 Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network In-Reply-To: <50D1E7EE02000026000CD3E1@hull-college.ac.uk> References: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> <06b601cdde01$a30aa5d0$e91ff170$@co.uk> <50D1E7EE02000026000CD3E1@hull-college.ac.uk> Message-ID: <06c301cdde07$a2b6aab0$e8240010$@co.uk> Dave to be honest these were just notes I made when installing on a college server a while back. But a few thoughts/comments... Yes I think curly brackets could be used previously but I'm not sure if that has changed now that the settings are stored in a separate ldap table I don't know what knownname is for either. That column in the database is set to not allow nulls but I couldn't find where it is used. It didn't exist in the sitedetails table where ldap details were stored previously. The ldap code is now inside \library\Xerte\Authentication\Ldap.php so you might find some pointers there but I would try different settings via management.php before messing with that. If you have your moodle working with ldap the settings you use there should map directly to the xot ldap table. Alternatively you could always use moodle for authentication? That's detailed in the readme in the root of the zip. Perhaps Pat or David from the dev team might comment further. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 16:15 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Ron This is based on a clean install (the upgrade didn't completely work). Your example is interesting, thanks. We can't bind to a specific ou= because our users are scattered around them based on which physical site and department they are in, all we can say is 'they are somewhere within o=hull_coll'. My colleague remember having used a curly brackets notation previously to invoke sub-context searches, but not sure here if you can just say '{cn=}'. What does knownname mean? What should be there? And is your example for hooking up to an AD system? Does it search sub-contexts? If so we can try and get access to an AD server. And what's this sAMAccount name for in ldap_filter_attr? Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email?>>> "Ron Mitchell" 19/12/2012 15:58 >>> Did you upgrade or create a new install? If you upgraded run upgrade.php to transfer ldap details from the site details table to the ldap table. Then try different details via management.php with that open in one browser and testing login in a different browser. Check that the details are being stored in the ldap table. I don't know the specifics of Netware but the doc attached might help with the differences from 1.7 to 1.9. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 15:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Hi all Has anyone got a working set of LDAP settings for a Netware-based network? We've left the bind password blank as we don't authenticate to our LDAP servers, but not sure what to set the filter and other bind values for - we use cn for username, knownAs for the full name, dn for their location within the tree (e.g. cn=username,ou=admin,ou=site,o=hull-college) and have set the basedn to be o=hull_coll (the same as we do for moodle). This is for the latest version. The previous one we were running had the LDAP code hacked to ignore the database settings for it, but it doesn't look as straightforward to do this in the latest version. Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email? ********************************************************************** This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Any views expressed in this message are solely the views of the individual and do not represent the views of the College. Nothing in this message should be construed as creating a contract. Hull College owns the email infrastructure, including the contents. Hull College is committed to sustainability, please reflect before printing this email. ********************************************************************** _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. From DPerry at hull-college.ac.uk Wed Dec 19 16:55:51 2012 From: DPerry at hull-college.ac.uk (David Perry) Date: Wed, 19 Dec 2012 16:55:51 +0000 Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network In-Reply-To: <06c301cdde07$a2b6aab0$e8240010$@co.uk> References: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> <06b601cdde01$a30aa5d0$e91ff170$@co.uk> <50D1E7EE02000026000CD3E1@hull-college.ac.uk> <06c301cdde07$a2b6aab0$e8240010$@co.uk> Message-ID: <50D1F19702000026000CD3F5@hull-college.ac.uk> Ron We were using our moodle ldap settings as a reference and that still didn't help. When Steve gets in tomorrow, he's going to try a clean install on our moodle server (previously XOT has been on a separate one) which is an approach our line manager likes the sound of. Dev team - The ldap documentation definitely needs work, ideally some real world examples (with passwords and actual usernames changed obviously). And searching subcontexts is critical for us (and anywhere that has a large AD/eDirectory tree that has to be organised by department and user type due to complex network security on folders etc). Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email?>>> "Ron Mitchell" 19/12/2012 16:41 >>> Dave to be honest these were just notes I made when installing on a college server a while back. But a few thoughts/comments... Yes I think curly brackets could be used previously but I'm not sure if that has changed now that the settings are stored in a separate ldap table I don't know what knownname is for either. That column in the database is set to not allow nulls but I couldn't find where it is used. It didn't exist in the sitedetails table where ldap details were stored previously. The ldap code is now inside \library\Xerte\Authentication\Ldap.php so you might find some pointers there but I would try different settings via management.php before messing with that. If you have your moodle working with ldap the settings you use there should map directly to the xot ldap table. Alternatively you could always use moodle for authentication? That's detailed in the readme in the root of the zip. Perhaps Pat or David from the dev team might comment further. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 16:15 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Ron This is based on a clean install (the upgrade didn't completely work). Your example is interesting, thanks. We can't bind to a specific ou= because our users are scattered around them based on which physical site and department they are in, all we can say is 'they are somewhere within o=hull_coll'. My colleague remember having used a curly brackets notation previously to invoke sub-context searches, but not sure here if you can just say '{cn=}'. What does knownname mean? What should be there? And is your example for hooking up to an AD system? Does it search sub-contexts? If so we can try and get access to an AD server. And what's this sAMAccount name for in ldap_filter_attr? Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email?>>> "Ron Mitchell" 19/12/2012 15:58 >>> Did you upgrade or create a new install? If you upgraded run upgrade.php to transfer ldap details from the site details table to the ldap table. Then try different details via management.php with that open in one browser and testing login in a different browser. Check that the details are being stored in the ldap table. I don't know the specifics of Netware but the doc attached might help with the differences from 1.7 to 1.9. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 15:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Hi all Has anyone got a working set of LDAP settings for a Netware-based network? We've left the bind password blank as we don't authenticate to our LDAP servers, but not sure what to set the filter and other bind values for - we use cn for username, knownAs for the full name, dn for their location within the tree (e.g. cn=username,ou=admin,ou=site,o=hull-college) and have set the basedn to be o=hull_coll (the same as we do for moodle). This is for the latest version. The previous one we were running had the LDAP code hacked to ignore the database settings for it, but it doesn't look as straightforward to do this in the latest version. Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email? ********************************************************************** This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Any views expressed in this message are solely the views of the individual and do not represent the views of the College. Nothing in this message should be construed as creating a contract. Hull College owns the email infrastructure, including the contents. Hull College is committed to sustainability, please reflect before printing this email. ********************************************************************** _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. From patrick.lockley at googlemail.com Wed Dec 19 17:15:44 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 19 Dec 2012 17:15:44 +0000 Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network In-Reply-To: <06c301cdde07$a2b6aab0$e8240010$@co.uk> References: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> <06b601cdde01$a30aa5d0$e91ff170$@co.uk> <50D1E7EE02000026000CD3E1@hull-college.ac.uk> <06c301cdde07$a2b6aab0$e8240010$@co.uk> Message-ID: Since the auth change I don't have any ideas on how LDAP works to be honest (and I have no LDAP of my own to test against, or remember how it works). I would look in the PHP and see where they are used. On Wed, Dec 19, 2012 at 4:41 PM, Ron Mitchell wrote: > Dave > to be honest these were just notes I made when installing on a college > server a while back. But a few thoughts/comments... > > Yes I think curly brackets could be used previously but I'm not sure if > that > has changed now that the settings are stored in a separate ldap table > > I don't know what knownname is for either. That column in the database is > set to not allow nulls but I couldn't find where it is used. It didn't > exist > in the sitedetails table where ldap details were stored previously. > > The ldap code is now inside \library\Xerte\Authentication\Ldap.php so you > might find some pointers there but I would try different settings via > management.php before messing with that. > > If you have your moodle working with ldap the settings you use there should > map directly to the xot ldap table. Alternatively you could always use > moodle for authentication? That's detailed in the readme in the root of the > zip. > > Perhaps Pat or David from the dev team might comment further. > > HTH > Ron > > > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry > Sent: 19 December 2012 16:15 > To: 'Xerte discussion list' > Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell > network > > Ron > > This is based on a clean install (the upgrade didn't completely work). > > Your example is interesting, thanks. > > We can't bind to a specific ou= because our users are scattered around them > based on which physical site and department they are in, all we can say is > 'they are somewhere within o=hull_coll'. My colleague remember having used > a > curly brackets notation previously to invoke sub-context searches, but not > sure here if you can just say '{cn=}'. > > What does knownname mean? What should be there? > > And is your example for hooking up to an AD system? Does it search > sub-contexts? If so we can try and get access to an AD server. > > And what's this sAMAccount name for in ldap_filter_attr? > > Thanks, > Dave > > David Perry > eLearning Technologist, eLearning Team (L34 - Library) Hull College Group > Wilberforce Drive, Queen's Gardens, Hull > HU1 3DG > Extension 2230 / Direct Dial 01482 381930 > > > > > > * * * Think about the environment - Do you really need to print this > email?>>> "Ron Mitchell" 19/12/2012 15:58 >>> > Did > you upgrade or create a new install? > If you upgraded run upgrade.php to transfer ldap details from the site > details table to the ldap table. > Then try different details via management.php with that open in one browser > and testing login in a different browser. > Check that the details are being stored in the ldap table. > > I don't know the specifics of Netware but the doc attached might help with > the differences from 1.7 to 1.9. > > HTH > Ron > > -----Original Message----- > From: xerte-bounces at lists.nottingham.ac.uk > [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry > Sent: 19 December 2012 15:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Xerte Online Toolkit v1.9 - LDAP settings for a Novell > network > > Hi all > > Has anyone got a working set of LDAP settings for a Netware-based network? > We've left the bind password blank as we don't authenticate to our LDAP > servers, but not sure what to set the filter and other bind values for - we > use cn for username, knownAs for the full name, dn for their location > within > the tree (e.g. cn=username,ou=admin,ou=site,o=hull-college) and have set > the > basedn to be o=hull_coll (the same as we do for moodle). > > This is for the latest version. The previous one we were running had the > LDAP code hacked to ignore the database settings for it, but it doesn't > look > as straightforward to do this in the latest version. > > > Thanks, > Dave > > David Perry > eLearning Technologist, eLearning Team (L34 - Library) Hull College Group > Wilberforce Drive, Queen's Gardens, Hull > HU1 3DG > Extension 2230 / Direct Dial 01482 381930 > > > > * * * Think about the environment - Do you really need to print this email? > > > ********************************************************************** > This message is sent in confidence for the addressee only. It may contain > confidential or sensitive information. The contents are not to be > disclosed > to anyone other than the addressee. Unauthorised recipients are requested > to preserve this confidentiality and to advise us of any errors in > transmission. Any views expressed in this message are solely the views of > the individual and do not represent the views of the College. Nothing in > this message should be construed as creating a contract. > > Hull College owns the email infrastructure, including the contents. > > Hull College is committed to sustainability, please reflect before printing > this email. > ********************************************************************** > > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not > use, copy or disclose the information contained in this message or in any > attachment. Any views or opinions expressed by the author of this email do > not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 ronm at mitchellmedia.co.uk Wed Dec 19 17:26:20 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 19 Dec 2012 17:26:20 -0000 Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network In-Reply-To: <50D1F19702000026000CD3F5@hull-college.ac.uk> References: <50D1DE0B02000026000CD3DA@hull-college.ac.uk> <06b601cdde01$a30aa5d0$e91ff170$@co.uk> <50D1E7EE02000026000CD3E1@hull-college.ac.uk> <06c301cdde07$a2b6aab0$e8240010$@co.uk> <50D1F19702000026000CD3F5@hull-college.ac.uk> Message-ID: <06cd01cdde0d$f6ab3950$e401abf0$@co.uk> Hi Dave despite how great, successful and popular the tools are the development team is very small in comparison to other well known open source tools. A very small team at the university together with a few more of us in the community. We don't all have regular access to LDAP servers etc to test on and there's obviously a myriad of possibilities and variations out there. Also what often happens is that some people get support from this list, find a solution that works for them but then rarely share those results back to the list. So the knowledgebase specific to ldap doesn't necessarily grow. The reason I suggested moodle integration is that's far easier as long as both are on the same server so can share the Moodle session. Just add the path to your moodle config via management.php and then set to moodle authenictaion in auth_config.php and then anyone visiting XOT are prompted to login to moodle first whatever authentication moodle is using. The benefit with that also is that you can have a mix of ldap and manual accounts etc. Let us know how you get on. Regards Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 16:56 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Ron We were using our moodle ldap settings as a reference and that still didn't help. When Steve gets in tomorrow, he's going to try a clean install on our moodle server (previously XOT has been on a separate one) which is an approach our line manager likes the sound of. Dev team - The ldap documentation definitely needs work, ideally some real world examples (with passwords and actual usernames changed obviously). And searching subcontexts is critical for us (and anywhere that has a large AD/eDirectory tree that has to be organised by department and user type due to complex network security on folders etc). Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email?>>> "Ron Mitchell" 19/12/2012 16:41 >>> Dave to be honest these were just notes I made when installing on a college server a while back. But a few thoughts/comments... Yes I think curly brackets could be used previously but I'm not sure if that has changed now that the settings are stored in a separate ldap table I don't know what knownname is for either. That column in the database is set to not allow nulls but I couldn't find where it is used. It didn't exist in the sitedetails table where ldap details were stored previously. The ldap code is now inside \library\Xerte\Authentication\Ldap.php so you might find some pointers there but I would try different settings via management.php before messing with that. If you have your moodle working with ldap the settings you use there should map directly to the xot ldap table. Alternatively you could always use moodle for authentication? That's detailed in the readme in the root of the zip. Perhaps Pat or David from the dev team might comment further. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 16:15 To: 'Xerte discussion list' Subject: [Xerte] Re: Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Ron This is based on a clean install (the upgrade didn't completely work). Your example is interesting, thanks. We can't bind to a specific ou= because our users are scattered around them based on which physical site and department they are in, all we can say is 'they are somewhere within o=hull_coll'. My colleague remember having used a curly brackets notation previously to invoke sub-context searches, but not sure here if you can just say '{cn=}'. What does knownname mean? What should be there? And is your example for hooking up to an AD system? Does it search sub-contexts? If so we can try and get access to an AD server. And what's this sAMAccount name for in ldap_filter_attr? Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email?>>> "Ron Mitchell" 19/12/2012 15:58 >>> Did you upgrade or create a new install? If you upgraded run upgrade.php to transfer ldap details from the site details table to the ldap table. Then try different details via management.php with that open in one browser and testing login in a different browser. Check that the details are being stored in the ldap table. I don't know the specifics of Netware but the doc attached might help with the differences from 1.7 to 1.9. HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of David Perry Sent: 19 December 2012 15:32 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] Xerte Online Toolkit v1.9 - LDAP settings for a Novell network Hi all Has anyone got a working set of LDAP settings for a Netware-based network? We've left the bind password blank as we don't authenticate to our LDAP servers, but not sure what to set the filter and other bind values for - we use cn for username, knownAs for the full name, dn for their location within the tree (e.g. cn=username,ou=admin,ou=site,o=hull-college) and have set the basedn to be o=hull_coll (the same as we do for moodle). This is for the latest version. The previous one we were running had the LDAP code hacked to ignore the database settings for it, but it doesn't look as straightforward to do this in the latest version. Thanks, Dave David Perry eLearning Technologist, eLearning Team (L34 - Library) Hull College Group Wilberforce Drive, Queen's Gardens, Hull HU1 3DG Extension 2230 / Direct Dial 01482 381930 * * * Think about the environment - Do you really need to print this email? ********************************************************************** This message is sent in confidence for the addressee only. It may contain confidential or sensitive information. The contents are not to be disclosed to anyone other than the addressee. Unauthorised recipients are requested to preserve this confidentiality and to advise us of any errors in transmission. Any views expressed in this message are solely the views of the individual and do not represent the views of the College. Nothing in this message should be construed as creating a contract. Hull College owns the email infrastructure, including the contents. Hull College is committed to sustainability, please reflect before printing this email. ********************************************************************** _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. From E.Cowell at wlv.ac.uk Thu Dec 20 00:16:58 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 00:16:58 +0000 Subject: [Xerte] resize problem with XOT 1.8 stops it working Message-ID: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> hello there, I've found out that when I export content from XOT as html and load it in a browser it fails to resize the window properly when you select a new screen size. this seems to result in a truncation of the flash object as it is then contained in a div too small to display it and so you can't access the menu bars and it is unusable / unplayable. ie the HTML for the div containing the flash object after the flash object resize still has the dimensions set to 600 by 800 even tho the flash object is larger. at least that's what it seems to be at a quick glance. strangely if you host the same exported code on a local host xampp server and do the resize the javascript does then change the div size correctly. so when testing everything works ok until exported to a host on a real server. no idea what's going on but is there a fix for this? I looked back at some older content I did with xerte and it has the same problem. thanks if you can assist regards Liz Cowell skills development team university of Wolverhampton Sent from my iPhone-- Scanned by iCritical. From patrick.lockley at googlemail.com Thu Dec 20 00:20:37 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 00:20:37 +0000 Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working In-Reply-To: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> References: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> Message-ID: I can't see why XAMPP would behave differently to another server? Any JS errors? On Thu, Dec 20, 2012 at 12:16 AM, Cowell, Elizabeth wrote: > hello there, > > I've found out that when I export content from XOT as html and load it in > a browser it fails to resize the window properly when you select a new > screen size. this seems to result in a truncation of the flash object as it > is then contained in a div too small to display it and so you can't access > the menu bars and it is unusable / unplayable. > > ie the HTML for the div containing the flash object after the flash object > resize still has the dimensions set to 600 by 800 even tho the flash object > is larger. at least that's what it seems to be at a quick glance. > > strangely if you host the same exported code on a local host xampp server > and do the resize the javascript does then change the div size correctly. > so when testing everything works ok until exported to a host on a real > server. no idea what's going on but is there a fix for this? > > I looked back at some older content I did with xerte and it has the same > problem. > > > thanks if you can assist > > regards > > Liz Cowell > skills development team > university of Wolverhampton > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 E.Cowell at wlv.ac.uk Thu Dec 20 01:01:23 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 01:01:23 +0000 Subject: [Xerte] upgrading to 1.9 Message-ID: hello again, I noticed 1.9 is out so I've downloaded this to see of this problem with resizing has been fixed. my question is how do I apply it to my current 1.8 install and keep all my data. should I just unzip it over the same xerte toolkit subdirectory of htdocs? will it require running setup again and if so how so I ensure my previous data is kept intact ? many thanks if you can advise Liz Cowell Sent from my iPhone-- Scanned by iCritical. From ronm at mitchellmedia.co.uk Thu Dec 20 06:54:39 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 20 Dec 2012 06:54:39 +0000 Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working In-Reply-To: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> References: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> Message-ID: <3847083D-9CAC-4C3A-BDB2-F2CF2740F931@mitchellmedia.co.uk> This is almost certainly Flash player security I can't check right now but you need to add the path to your LO or drive as a trusted location. Right click in the middle of the LO and select something like settings advanced trusted locations HTH Ron Sent from my iPad On 20 Dec 2012, at 00:16, "Cowell, Elizabeth" wrote: > hello there, > > I've found out that when I export content from XOT as html and load it in a browser it fails to resize the window properly when you select a new screen size. this seems to result in a truncation of the flash object as it is then contained in a div too small to display it and so you can't access the menu bars and it is unusable / unplayable. > > ie the HTML for the div containing the flash object after the flash object resize still has the dimensions set to 600 by 800 even tho the flash object is larger. at least that's what it seems to be at a quick glance. > > strangely if you host the same exported code on a local host xampp server and do the resize the javascript does then change the div size correctly. so when testing everything works ok until exported to a host on a real server. no idea what's going on but is there a fix for this? > > I looked back at some older content I did with xerte and it has the same problem. > > > thanks if you can assist > > regards > > Liz Cowell > skills development team > university of Wolverhampton > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 E.Cowell at wlv.ac.uk Thu Dec 20 09:21:00 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 09:21:00 +0000 Subject: [Xerte] New templates created with wrong ID in 1.9 Message-ID: <7E5A35071B997640A6A149C48AC5622A0807C5@EXCHMBX10X03.unv.wlv.ac.uk> Hello, I put 1.9 on my system today, and created a new project. When it attempts to display the template, it uses an id of the template id * 1 million, plus 800655. [cid:image001.jpg at 01CDDE93.51CBC540] It's ok when I then close this window and then go on to edit it directly, in this case the template id being 4. Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 43879 bytes Desc: image001.jpg URL: From E.Cowell at wlv.ac.uk Thu Dec 20 09:26:44 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 09:26:44 +0000 Subject: [Xerte] Can't export to zip in 1.9? Message-ID: <7E5A35071B997640A6A149C48AC5622A08081E@EXCHMBX10X03.unv.wlv.ac.uk> Hello again, Trying to export content to a zip using the archive export option. The export window just displays php... [cid:image001.jpg at 01CDDE94.1FAF7150] Regards, Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 89250 bytes Desc: image001.jpg URL: From patrick.lockley at googlemail.com Thu Dec 20 09:21:25 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 09:21:25 +0000 Subject: [Xerte] Re: upgrading to 1.9 In-Reply-To: References: Message-ID: <664832CD-509F-42D8-8A79-0CC0716A18D7@googlemail.com> Hello, You should be able to copy the files from the zip (not unzip over the top). Copy all of the languages, modules and website_code folders over In the root folder, copy all files bar database.php But back everything up first On 20 Dec 2012, at 01:01, "Cowell, Elizabeth" wrote: > hello again, > > I noticed 1.9 is out so I've downloaded this to see of this problem with resizing has been fixed. my question is how do I apply it to my current 1.8 install and keep all my data. should I just unzip it over the same xerte toolkit subdirectory of htdocs? will it require running setup again and if so how so I ensure my previous data is kept intact ? > > many thanks if you can advise > > Liz Cowell > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Dec 20 09:46:32 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 09:46:32 +0000 Subject: [Xerte] Re: New templates created with wrong ID in 1.9 In-Reply-To: <7E5A35071B997640A6A149C48AC5622A0807C5@EXCHMBX10X03.unv.wlv.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A0807C5@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: Flush your browser cache and it should be ok On Thu, Dec 20, 2012 at 9:21 AM, Cowell, Elizabeth wrote: > Hello,**** > > ** ** > > I put 1.9 on my system today, and created a new project. When it attempts > to display the template, it uses an id of the template id * 1 million, plus > 800655. **** > > ** ** > > **** > > ** ** > > It?s ok when I then close this window and then go on to edit it directly, > in this case the template id being 4. **** > > ** ** > > Liz**** > > ** ** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > ** ** > > -- > Scanned by iCritical. > > > _______________________________________________ > 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 Thu Dec 20 09:46:58 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 09:46:58 +0000 Subject: [Xerte] Re: Can't export to zip in 1.9? In-Reply-To: <7E5A35071B997640A6A149C48AC5622A08081E@EXCHMBX10X03.unv.wlv.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A08081E@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: Screen shot? On Thu, Dec 20, 2012 at 9:26 AM, Cowell, Elizabeth wrote: > Hello again,**** > > ** ** > > Trying to export content to a zip using the archive export option. The > export window just displays php?**** > > ** ** > > ** ** > > **** > > ** ** > > ** ** > > Regards,**** > > ** ** > > Liz**** > > ** ** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > ** ** > > -- > Scanned by iCritical. > > > _______________________________________________ > 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 E.Cowell at wlv.ac.uk Thu Dec 20 10:52:00 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 10:52:00 +0000 Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron Message-ID: <7E5A35071B997640A6A149C48AC5622A08095B@EXCHMBX10X03.unv.wlv.ac.uk> Hi Pat, I flushed the cache, no difference. When I poked around the scripts I found a line of code that seems to explicitly append the editor size to the template id when creating a new tutorial? Its in new_template.php : echo trim($new_template_id); // this bit appends the editor_size ? echo "," . $xerte_toolkits_site->learning_objects->{$row_template_type['template_framework'] . "_" . $row_template_type['template_name']}->editor_size; Hope this helps? Regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 20 December 2012 09:47 To: Xerte discussion list Subject: [Xerte] Re: New templates created with wrong ID in 1.9 Flush your browser cache and it should be ok On Thu, Dec 20, 2012 at 9:21 AM, Cowell, Elizabeth > wrote: Hello, I put 1.9 on my system today, and created a new project. When it attempts to display the template, it uses an id of the template id * 1 million, plus 800655. It's ok when I then close this window and then go on to edit it directly, in this case the template id being 4. Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: From brane.smitek at fov.uni-mb.si Thu Dec 20 10:50:17 2012 From: brane.smitek at fov.uni-mb.si (=?utf-8?Q?Brane_=C5=A0mitek?=) Date: Thu, 20 Dec 2012 11:50:17 +0100 Subject: [Xerte] Re: XOT 1.9 In-Reply-To: References: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> Message-ID: <00db01cdde9f$ccc52190$664f64b0$@fov.uni-mb.si> I changed C:\xampp\php\php.ini parameters memory_limit = 200M post_max_size = 100M upload_max_filesize = 80M but I still get mentioned error. lep pozdrav doc. dr. Branislav ?MITEK UMb FAKULTETA ZA ORGANIZACIJSKE VEDE Kidri?eva cesta 55/a 4000 KRANJ tel: 04 237 42 63 fax: 04 237 42 99 e-mail: brane.smitek at fov.uni-mb.si From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Wednesday, December 19, 2012 11:47 AM To: Xerte discussion list Subject: [Xerte] Re: XOT 1.9 php.ini on your server (it isn't a XOT setting) On Wed, Dec 19, 2012 at 10:30 AM, Brane ?mitek wrote: I've installed XOT 1.9 version from scratch. I've imported two saved projects in Workspace withou any problems. Third one causes me a problem. I get message: Where I have to change the limit for importing large ZIP files into Workspace. Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si _______________________________________________ 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 Thu Dec 20 10:59:13 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 10:59:13 +0000 Subject: [Xerte] Re: XOT 1.9 In-Reply-To: <00db01cdde9f$ccc52190$664f64b0$@fov.uni-mb.si> References: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> <00db01cdde9f$ccc52190$664f64b0$@fov.uni-mb.si> Message-ID: Restarted Apache? On Thu, Dec 20, 2012 at 10:50 AM, Brane ?mitek wrote: > I changed C:\xampp\php\php.ini parameters**** > > ** ** > > memory_limit = 200M**** > > post_max_size = 100M**** > > upload_max_filesize = 80M**** > > ** ** > > but I still get mentioned error.**** > > ** ** > > ** ** > > lep pozdrav**** > > **** > > doc. dr. Branislav ?MITEK > UMb FAKULTETA ZA ORGANIZACIJSKE VEDE > Kidri?eva cesta 55/a > 4000 KRANJ > > tel: 04 237 42 63 > fax: 04 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Wednesday, December 19, 2012 11:47 AM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: XOT 1.9**** > > ** ** > > php.ini on your server (it isn't a XOT setting)**** > > ** ** > > On Wed, Dec 19, 2012 at 10:30 AM, Brane ?mitek > wrote:**** > > I've installed XOT 1.9 version from scratch. I've imported two saved > projects in Workspace withou any problems.**** > > Third one causes me a problem. I get message:**** > > **** > > **** > > Where I have to change the limit for importing large ZIP files into > Workspace.**** > > **** > > **** > > Kind regards **** > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA **** > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si **** > > **** > > > _______________________________________________ > 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 -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Dec 20 10:58:47 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 10:58:47 +0000 Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron In-Reply-To: <7E5A35071B997640A6A149C48AC5622A08095B@EXCHMBX10X03.unv.wlv.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A08095B@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: Hi Liz, Yes it does, because the new window open code should use those values. The javascript knows this and should use this when opening a window. I added the PHP in for this purpose. Look at the window.open code in website_code/scripts/template_management.js Pat On Thu, Dec 20, 2012 at 10:52 AM, Cowell, Elizabeth wrote: > Hi Pat,**** > > ** ** > > I flushed the cache, no difference. When I poked around the scripts I > found a line of code that seems to explicitly append the editor size to the > template id when creating a new tutorial?**** > > ** ** > > Its in new_template.php :**** > > ** ** > > ** ** > > echo trim($new_template_id);**** > > // this bit appends the editor_size ?**** > > echo "," . > $xerte_toolkits_site->learning_objects->{$row_template_type['template_framework'] > . "_" . $row_template_type['template_name']}->editor_size;**** > > ** ** > > Hope this helps? **** > > ** ** > > Regards**** > > ** ** > > Liz**** > > ** ** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 20 December 2012 09:47 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: New templates created with wrong ID in 1.9**** > > ** ** > > Flush your browser cache and it should be ok**** > > ** ** > > On Thu, Dec 20, 2012 at 9:21 AM, Cowell, Elizabeth > wrote:**** > > Hello,**** > > **** > > I put 1.9 on my system today, and created a new project. When it attempts > to display the template, it uses an id of the template id * 1 million, plus > 800655. **** > > **** > > **** > > **** > > It?s ok when I then close this window and then go on to edit it directly, > in this case the template id being 4. **** > > **** > > Liz**** > > **** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > **** > > ** ** > > -- > Scanned by iCritical. **** > > ** ** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > ** ** > > -- > Scanned by iCritical. > > > > > > _______________________________________________ > 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 brane.smitek at fov.uni-mb.si Thu Dec 20 11:17:08 2012 From: brane.smitek at fov.uni-mb.si (=?iso-8859-2?Q?Brane_=A9mitek?=) Date: Thu, 20 Dec 2012 12:17:08 +0100 Subject: [Xerte] Re: XOT 1.9 In-Reply-To: References: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> <00db01cdde9f$ccc52190$664f64b0$@fov.uni-mb.si> Message-ID: <010301cddea3$8cc7c3f0$a6574bd0$@fov.uni-mb.si> Yes. Now importing started, percents (uploading) run in status row, there is a message wainting on http://hostname and after that without any error process is finished but in my workspace is no new template. Importing two smaller ZIP files (approx. 10MB) are closed without problems. ZIP file caused problem has 62MB. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Thursday, December 20, 2012 11:59 AM To: Xerte discussion list Subject: [Xerte] Re: XOT 1.9 Restarted Apache? On Thu, Dec 20, 2012 at 10:50 AM, Brane ?mitek wrote: I changed C:\xampp\php\php.ini parameters memory_limit = 200M post_max_size = 100M upload_max_filesize = 80M but I still get mentioned error. lep pozdrav doc. dr. Branislav ?MITEK UMb FAKULTETA ZA ORGANIZACIJSKE VEDE Kidri?eva cesta 55/a 4000 KRANJ tel: 04 237 42 63 fax: 04 237 42 99 e-mail: brane.smitek at fov.uni-mb.si From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Wednesday, December 19, 2012 11:47 AM To: Xerte discussion list Subject: [Xerte] Re: XOT 1.9 php.ini on your server (it isn't a XOT setting) On Wed, Dec 19, 2012 at 10:30 AM, Brane ?mitek wrote: I've installed XOT 1.9 version from scratch. I've imported two saved projects in Workspace withou any problems. Third one causes me a problem. I get message: Where I have to change the limit for importing large ZIP files into Workspace. Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Dec 20 11:22:04 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 11:22:04 +0000 Subject: [Xerte] Re: XOT 1.9 In-Reply-To: <010301cddea3$8cc7c3f0$a6574bd0$@fov.uni-mb.si> References: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> <00db01cdde9f$ccc52190$664f64b0$@fov.uni-mb.si> <010301cddea3$8cc7c3f0$a6574bd0$@fov.uni-mb.si> Message-ID: Try increasing the memory limit? If the smaller files upload it isn't the XOT code On Thu, Dec 20, 2012 at 11:17 AM, Brane ?mitek wrote: > Yes. **** > > Now importing started, percents (uploading) run in status row, there is a > message wainting on http://hostname**** > > and after that without any error process is finished but in my workspace > is no new template. **** > > Importing two smaller ZIP files (approx. 10MB) are closed without problems. > **** > > ZIP file caused problem has 62MB.**** > > ** ** > > ** ** > > ** ** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Thursday, December 20, 2012 11:59 AM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: XOT 1.9**** > > ** ** > > Restarted Apache?**** > > ** ** > > On Thu, Dec 20, 2012 at 10:50 AM, Brane ?mitek > wrote:**** > > I changed C:\xampp\php\php.ini parameters**** > > **** > > memory_limit = 200M**** > > post_max_size = 100M**** > > upload_max_filesize = 80M**** > > **** > > but I still get mentioned error.**** > > **** > > **** > > lep pozdrav**** > > **** > > doc. dr. Branislav ?MITEK > UMb FAKULTETA ZA ORGANIZACIJSKE VEDE > Kidri?eva cesta 55/a > 4000 KRANJ > > tel: 04 237 42 63 > fax: 04 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Wednesday, December 19, 2012 11:47 AM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: XOT 1.9**** > > **** > > php.ini on your server (it isn't a XOT setting)**** > > **** > > On Wed, Dec 19, 2012 at 10:30 AM, Brane ?mitek > wrote:**** > > I've installed XOT 1.9 version from scratch. I've imported two saved > projects in Workspace withou any problems.**** > > Third one causes me a problem. I get message:**** > > **** > > Where I have to change the limit for importing large ZIP files into > Workspace.**** > > **** > > **** > > Kind regards **** > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA **** > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si **** > > **** > > > _______________________________________________ > 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 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From E.Cowell at wlv.ac.uk Thu Dec 20 11:30:02 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 11:30:02 +0000 Subject: [Xerte] FW: Can't export to zip in 1.9? Message-ID: <7E5A35071B997640A6A149C48AC5622A080A3E@EXCHMBX10X03.unv.wlv.ac.uk> Hi Pat, I've reforwarded this email, as don't know why it didn't have the screen print in it?. Also attached it separately. Hopefully it'll make sense now. Regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: Cowell, Elizabeth Sent: 20 December 2012 09:27 To: Xerte discussion list (xerte at lists.nottingham.ac.uk) Subject: Can't export to zip in 1.9? Hello again, Trying to export content to a zip using the archive export option. The export window just displays php... [cid:image001.jpg at 01CDDE94.1FAF7150] Regards, Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 89250 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Doc1.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 103045 bytes Desc: Doc1.docx URL: From brane.smitek at fov.uni-mb.si Thu Dec 20 11:57:30 2012 From: brane.smitek at fov.uni-mb.si (=?utf-8?Q?Brane_=C5=A0mitek?=) Date: Thu, 20 Dec 2012 12:57:30 +0100 Subject: [Xerte] Re: XOT 1.9 In-Reply-To: References: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> <00db01cdde9f$ccc52190$664f64b0$@fov.uni-mb.si> <010301cddea3$8cc7c3f0$a6574bd0$@fov.uni-mb.si> Message-ID: <014001cddea9$30446380$90cd2a80$@fov.uni-mb.si> My PHP.INI is now memory_limit = 500M post_max_size = 400M upload_max_filesize = 300M but the situation is the same. Is it possible that ZIP file has something strange inside. Is any other solution to import XOT 1.8 project to XOT 1.9. I've made completely new installation of XOT (also database tables) 1.9 but I want to use previous projects. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Thursday, December 20, 2012 12:22 PM To: Xerte discussion list Subject: [Xerte] Re: XOT 1.9 Try increasing the memory limit? If the smaller files upload it isn't the XOT code On Thu, Dec 20, 2012 at 11:17 AM, Brane ?mitek wrote: Yes. Now importing started, percents (uploading) run in status row, there is a message wainting on http://hostname and after that without any error process is finished but in my workspace is no new template. Importing two smaller ZIP files (approx. 10MB) are closed without problems. ZIP file caused problem has 62MB. From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Thursday, December 20, 2012 11:59 AM To: Xerte discussion list Subject: [Xerte] Re: XOT 1.9 Restarted Apache? On Thu, Dec 20, 2012 at 10:50 AM, Brane ?mitek wrote: I changed C:\xampp\php\php.ini parameters memory_limit = 200M post_max_size = 100M upload_max_filesize = 80M but I still get mentioned error. lep pozdrav doc. dr. Branislav ?MITEK UMb FAKULTETA ZA ORGANIZACIJSKE VEDE Kidri?eva cesta 55/a 4000 KRANJ tel: 04 237 42 63 fax: 04 237 42 99 e-mail: brane.smitek at fov.uni-mb.si From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: Wednesday, December 19, 2012 11:47 AM To: Xerte discussion list Subject: [Xerte] Re: XOT 1.9 php.ini on your server (it isn't a XOT setting) On Wed, Dec 19, 2012 at 10:30 AM, Brane ?mitek wrote: I've installed XOT 1.9 version from scratch. I've imported two saved projects in Workspace withou any problems. Third one causes me a problem. I get message: Where I have to change the limit for importing large ZIP files into Workspace. Kind regards Branislav SMITEK Ph.D. University of Maribor FACULTY OF ORGANIZATIONAL SCIENCES Kidriceva cesta 55/a SI4000 KRANJ SLOVENIA tel: +386 4 237 42 63 fax: +386 4 237 42 99 e-mail: brane.smitek at fov.uni-mb.si _______________________________________________ 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: From patrick.lockley at googlemail.com Thu Dec 20 11:50:56 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 11:50:56 +0000 Subject: [Xerte] Re: FW: Can't export to zip in 1.9? In-Reply-To: <7E5A35071B997640A6A149C48AC5622A080A3E@EXCHMBX10X03.unv.wlv.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A080A3E@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: hmmmm it looks like there is an open php tag is export php? Could you check? On Thu, Dec 20, 2012 at 11:30 AM, Cowell, Elizabeth wrote: > Hi Pat, **** > > ** ** > > I?ve reforwarded this email, as don?t know why it didn?t have the screen > print in it?. Also attached it separately. **** > > ** ** > > Hopefully it?ll make sense now.**** > > ** ** > > Regards**** > > ** ** > > Liz**** > > ** ** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > ** ** > > *From:* Cowell, Elizabeth > *Sent:* 20 December 2012 09:27 > *To:* Xerte discussion list (xerte at lists.nottingham.ac.uk) > *Subject:* Can't export to zip in 1.9?**** > > ** ** > > Hello again,**** > > ** ** > > Trying to export content to a zip using the archive export option. The > export window just displays php?**** > > ** ** > > ** ** > > **** > > ** ** > > ** ** > > Regards,**** > > ** ** > > Liz**** > > ** ** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > ** ** > > _______________________________________________ > 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 Thu Dec 20 12:09:54 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 12:09:54 +0000 Subject: [Xerte] Re: XOT 1.9 In-Reply-To: <014001cddea9$30446380$90cd2a80$@fov.uni-mb.si> References: <011801cdddd3$e37f2150$aa7d63f0$@fov.uni-mb.si> <00db01cdde9f$ccc52190$664f64b0$@fov.uni-mb.si> <010301cddea3$8cc7c3f0$a6574bd0$@fov.uni-mb.si> <014001cddea9$30446380$90cd2a80$@fov.uni-mb.si> Message-ID: Create a new project, then on 1.8 look in user-files for that project's ID number Copy that folder over the new one in 1.9 so Make a new template - remember the ID Copy 2-guest-Nottingham folder contents over the new folder On Thu, Dec 20, 2012 at 11:57 AM, Brane ?mitek wrote: > My PHP.INI is now**** > > memory_limit = 500M > post_max_size = 400M > upload_max_filesize = 300M**** > > but the situation is the same. **** > > Is it possible that ZIP file has something strange inside.**** > > Is any other solution to import XOT 1.8 project to XOT 1.9. > I've made completely new installation of XOT (also database tables) 1.9 > but I want to use > previous projects.**** > > ** ** > > ** ** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Thursday, December 20, 2012 12:22 PM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: XOT 1.9**** > > ** ** > > Try increasing the memory limit?**** > > If the smaller files upload it isn't the XOT code**** > > ** ** > > On Thu, Dec 20, 2012 at 11:17 AM, Brane ?mitek > wrote:**** > > Yes. **** > > Now importing started, percents (uploading) run in status row, there is a > message wainting on http://hostname**** > > and after that without any error process is finished but in my workspace > is no new template. **** > > Importing two smaller ZIP files (approx. 10MB) are closed without problems. > **** > > ZIP file caused problem has 62MB.**** > > **** > > **** > > **** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Thursday, December 20, 2012 11:59 AM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: XOT 1.9**** > > **** > > Restarted Apache?**** > > **** > > On Thu, Dec 20, 2012 at 10:50 AM, Brane ?mitek > wrote:**** > > I changed C:\xampp\php\php.ini parameters**** > > **** > > memory_limit = 200M**** > > post_max_size = 100M**** > > upload_max_filesize = 80M**** > > **** > > but I still get mentioned error.**** > > **** > > **** > > lep pozdrav**** > > **** > > doc. dr. Branislav ?MITEK > UMb FAKULTETA ZA ORGANIZACIJSKE VEDE > Kidri?eva cesta 55/a > 4000 KRANJ > > tel: 04 237 42 63 > fax: 04 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* Wednesday, December 19, 2012 11:47 AM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: XOT 1.9**** > > **** > > php.ini on your server (it isn't a XOT setting)**** > > **** > > On Wed, Dec 19, 2012 at 10:30 AM, Brane ?mitek > wrote:**** > > I've installed XOT 1.9 version from scratch. I've imported two saved > projects in Workspace withou any problems.**** > > Third one causes me a problem. I get message:**** > > **** > > Where I have to change the limit for importing large ZIP files into > Workspace.**** > > **** > > **** > > Kind regards **** > > Branislav SMITEK Ph.D. > University of Maribor > FACULTY OF ORGANIZATIONAL SCIENCES > Kidriceva cesta 55/a > SI4000 KRANJ > SLOVENIA **** > > tel: +386 4 237 42 63 > fax: +386 4 237 42 99 > e-mail: brane.smitek at fov.uni-mb.si **** > > **** > > > _______________________________________________ > 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**** > > ** ** > > > > > _______________________________________________ > 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 E.Cowell at wlv.ac.uk Thu Dec 20 12:13:16 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 12:13:16 +0000 Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron In-Reply-To: References: <7E5A35071B997640A6A149C48AC5622A08095B@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: <7E5A35071B997640A6A149C48AC5622A080B68@EXCHMBX10X03.unv.wlv.ac.uk> Hi Pat, All I noticed was that the line of code I mentioned wasn't in 1.8 whereas it is in 1.9, and the screenshot of a create new project in 1.9 shows the edit.php being handed it as follows: [cid:image003.jpg at 01CDDEAB.64F95C50] I'm afraid I don't know my way around your code, but I had a quick glance as I was just trying to find some fixes to see if I could run with 1.9 when I setup Xerte for our team, but this together with the export problem probably mean I'll stick with 1.8 which seems ok apart from the resize window problem I am seeing on some pc's which is making Xerte content held on our website unplayable on them (which I am also trying to get to work). So whilst I'd like the latest version I will probably stick with 1.8 for now and try and put in some workarounds. Best Regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 20 December 2012 10:59 To: Xerte discussion list Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron Hi Liz, Yes it does, because the new window open code should use those values. The javascript knows this and should use this when opening a window. I added the PHP in for this purpose. Look at the window.open code in website_code/scripts/template_management.js Pat On Thu, Dec 20, 2012 at 10:52 AM, Cowell, Elizabeth > wrote: Hi Pat, I flushed the cache, no difference. When I poked around the scripts I found a line of code that seems to explicitly append the editor size to the template id when creating a new tutorial? Its in new_template.php : echo trim($new_template_id); // this bit appends the editor_size ? echo "," . $xerte_toolkits_site->learning_objects->{$row_template_type['template_framework'] . "_" . $row_template_type['template_name']}->editor_size; Hope this helps? Regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 20 December 2012 09:47 To: Xerte discussion list Subject: [Xerte] Re: New templates created with wrong ID in 1.9 Flush your browser cache and it should be ok On Thu, Dec 20, 2012 at 9:21 AM, Cowell, Elizabeth > wrote: Hello, I put 1.9 on my system today, and created a new project. When it attempts to display the template, it uses an id of the template id * 1 million, plus 800655. It's ok when I then close this window and then go on to edit it directly, in this case the template id being 4. Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 38111 bytes Desc: image003.jpg URL: From patrick.lockley at googlemail.com Thu Dec 20 12:31:46 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 12:31:46 +0000 Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron In-Reply-To: <7E5A35071B997640A6A149C48AC5622A080B68@EXCHMBX10X03.unv.wlv.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A08095B@EXCHMBX10X03.unv.wlv.ac.uk> <7E5A35071B997640A6A149C48AC5622A080B68@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: Which export link did you click on (for reference)? It works on my local copy but I can check later On Thu, Dec 20, 2012 at 12:13 PM, Cowell, Elizabeth wrote: > Hi Pat,**** > > ** ** > > ** ** > > All I noticed was that the line of code I mentioned wasn?t in 1.8 whereas > it is in 1.9, and the screenshot of a create new project in 1.9 shows the > edit.php being handed it as follows: **** > > ** ** > > **** > > ** ** > > ** ** > > I?m afraid I don?t know my way around your code, but I had a quick glance > as I was just trying to find some fixes to see if I could run with 1.9 when > I setup Xerte for our team, but this together with the export problem > probably mean I?ll stick with 1.8 which seems ok apart from the resize > window problem I am seeing on some pc?s which is making Xerte content held > on our website unplayable on them (which I am also trying to get to work). > **** > > ** ** > > So whilst I?d like the latest version I will probably stick with 1.8 for > now and try and put in some workarounds.**** > > ** ** > > Best Regards**** > > ** ** > > Liz**** > > ** ** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 20 December 2012 10:59 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: New templates created with wrong ID in 1.9 @ > Pat/Ron**** > > ** ** > > Hi Liz,**** > > Yes it does, because the new window open code should use those values. The > javascript knows this and should use this when opening a window.**** > > I added the PHP in for this purpose. Look at the window.open code in > website_code/scripts/template_management.js > > Pat**** > > ** ** > > On Thu, Dec 20, 2012 at 10:52 AM, Cowell, Elizabeth > wrote:**** > > Hi Pat,**** > > **** > > I flushed the cache, no difference. When I poked around the scripts I > found a line of code that seems to explicitly append the editor size to the > template id when creating a new tutorial?**** > > **** > > Its in new_template.php :**** > > **** > > **** > > echo trim($new_template_id);**** > > // this bit appends the editor_size ?**** > > echo "," . > $xerte_toolkits_site->learning_objects->{$row_template_type['template_framework'] > . "_" . $row_template_type['template_name']}->editor_size;**** > > **** > > Hope this helps? **** > > **** > > Regards**** > > **** > > Liz**** > > **** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 20 December 2012 09:47 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: New templates created with wrong ID in 1.9**** > > **** > > Flush your browser cache and it should be ok**** > > **** > > On Thu, Dec 20, 2012 at 9:21 AM, Cowell, Elizabeth > wrote:**** > > Hello,**** > > **** > > I put 1.9 on my system today, and created a new project. When it attempts > to display the template, it uses an id of the template id * 1 million, plus > 800655. **** > > **** > > **** > > It?s ok when I then close this window and then go on to edit it directly, > in this case the template id being 4. **** > > **** > > Liz**** > > **** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > **** > > **** > > -- > Scanned by iCritical. **** > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > **** > > ** ** > > -- > Scanned by iCritical. **** > > > > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > ** ** > > -- > Scanned by iCritical. > > > _______________________________________________ > 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 E.Cowell at wlv.ac.uk Thu Dec 20 12:57:57 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 12:57:57 +0000 Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron In-Reply-To: References: <7E5A35071B997640A6A149C48AC5622A08095B@EXCHMBX10X03.unv.wlv.ac.uk> <7E5A35071B997640A6A149C48AC5622A080B68@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: <7E5A35071B997640A6A149C48AC5622A080D33@EXCHMBX10X03.unv.wlv.ac.uk> The second one (the full one). Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 20 December 2012 12:32 To: Xerte discussion list Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron Which export link did you click on (for reference)? It works on my local copy but I can check later On Thu, Dec 20, 2012 at 12:13 PM, Cowell, Elizabeth > wrote: Hi Pat, All I noticed was that the line of code I mentioned wasn't in 1.8 whereas it is in 1.9, and the screenshot of a create new project in 1.9 shows the edit.php being handed it as follows: I'm afraid I don't know my way around your code, but I had a quick glance as I was just trying to find some fixes to see if I could run with 1.9 when I setup Xerte for our team, but this together with the export problem probably mean I'll stick with 1.8 which seems ok apart from the resize window problem I am seeing on some pc's which is making Xerte content held on our website unplayable on them (which I am also trying to get to work). So whilst I'd like the latest version I will probably stick with 1.8 for now and try and put in some workarounds. Best Regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 20 December 2012 10:59 To: Xerte discussion list Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron Hi Liz, Yes it does, because the new window open code should use those values. The javascript knows this and should use this when opening a window. I added the PHP in for this purpose. Look at the window.open code in website_code/scripts/template_management.js Pat On Thu, Dec 20, 2012 at 10:52 AM, Cowell, Elizabeth > wrote: Hi Pat, I flushed the cache, no difference. When I poked around the scripts I found a line of code that seems to explicitly append the editor size to the template id when creating a new tutorial? Its in new_template.php : echo trim($new_template_id); // this bit appends the editor_size ? echo "," . $xerte_toolkits_site->learning_objects->{$row_template_type['template_framework'] . "_" . $row_template_type['template_name']}->editor_size; Hope this helps? Regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Pat Lockley Sent: 20 December 2012 09:47 To: Xerte discussion list Subject: [Xerte] Re: New templates created with wrong ID in 1.9 Flush your browser cache and it should be ok On Thu, Dec 20, 2012 at 9:21 AM, Cowell, Elizabeth > wrote: Hello, I put 1.9 on my system today, and created a new project. When it attempts to display the template, it uses an id of the template id * 1 million, plus 800655. It's ok when I then close this window and then go on to edit it directly, in this case the template id being 4. Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: From E.Cowell at wlv.ac.uk Thu Dec 20 13:09:53 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 13:09:53 +0000 Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working In-Reply-To: <3847083D-9CAC-4C3A-BDB2-F2CF2740F931@mitchellmedia.co.uk> References: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> <3847083D-9CAC-4C3A-BDB2-F2CF2740F931@mitchellmedia.co.uk> Message-ID: <7E5A35071B997640A6A149C48AC5622A080D88@EXCHMBX10X03.unv.wlv.ac.uk> Hi Ron, Well I'm really puzzled. When I looked at the flash player security options they seemed to be for developers testing content based locally accessing external sites (or vice versa). The code I am testing is hosted on our website, not locally. It seems as if the DoFScommand isn't being called when the flash object resizes, but tbh I am reaching the limit of my knowledge/time to look at this area. So if you can offer any advice or a fix it would be really appreciated, as I am just trying to get a body of content authored to get our team on board using Xerte. If they become aware that it might not run on every student laptop, they will may not want to go with it. And it works fine from my PC at work, but not on my laptop. There seem to be no appropriate flash settings to alter??, as I say my main concern is that if it doesn't work for me on a laptop, how would our students access the content we offer from their laptops. Thanks if you can help Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 20 December 2012 06:55 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working This is almost certainly Flash player security I can't check right now but you need to add the path to your LO or drive as a trusted location. Right click in the middle of the LO and select something like settings advanced trusted locations HTH Ron Sent from my iPad On 20 Dec 2012, at 00:16, "Cowell, Elizabeth" wrote: > hello there, > > I've found out that when I export content from XOT as html and load it in a browser it fails to resize the window properly when you select a new screen size. this seems to result in a truncation of the flash object as it is then contained in a div too small to display it and so you can't access the menu bars and it is unusable / unplayable. > > ie the HTML for the div containing the flash object after the flash object resize still has the dimensions set to 600 by 800 even tho the flash object is larger. at least that's what it seems to be at a quick glance. > > strangely if you host the same exported code on a local host xampp server and do the resize the javascript does then change the div size correctly. so when testing everything works ok until exported to a host on a real server. no idea what's going on but is there a fix for this? > > I looked back at some older content I did with xerte and it has the same problem. > > > thanks if you can assist > > regards > > Liz Cowell > skills development team > university of Wolverhampton > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. From E.Cowell at wlv.ac.uk Thu Dec 20 16:01:34 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Thu, 20 Dec 2012 16:01:34 +0000 Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working In-Reply-To: <7E5A35071B997640A6A149C48AC5622A080D88@EXCHMBX10X03.unv.wlv.ac.uk> References: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> <3847083D-9CAC-4C3A-BDB2-F2CF2740F931@mitchellmedia.co.uk> <7E5A35071B997640A6A149C48AC5622A080D88@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: <7E5A35071B997640A6A149C48AC5622A081006@EXCHMBX10X03.unv.wlv.ac.uk> Hi Ron, Further to that, I have tested out running content from our student machines, and they also don't resize when running windows 7 and internet explorer, but do work with windows 7 and firefox, so not sure if its to do with the flashplayer/browser interaction? (I am also wondering whether I should be looking at Xenith as an alternative but haven't kept abreast of how far it is as yet...) Best regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Cowell, Elizabeth Sent: 20 December 2012 13:10 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Ron, Well I'm really puzzled. When I looked at the flash player security options they seemed to be for developers testing content based locally accessing external sites (or vice versa). The code I am testing is hosted on our website, not locally. It seems as if the DoFScommand isn't being called when the flash object resizes, but tbh I am reaching the limit of my knowledge/time to look at this area. So if you can offer any advice or a fix it would be really appreciated, as I am just trying to get a body of content authored to get our team on board using Xerte. If they become aware that it might not run on every student laptop, they will may not want to go with it. And it works fine from my PC at work, but not on my laptop. There seem to be no appropriate flash settings to alter??, as I say my main concern is that if it doesn't work for me on a laptop, how would our students access the content we offer from their laptops. Thanks if you can help Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 20 December 2012 06:55 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working This is almost certainly Flash player security I can't check right now but you need to add the path to your LO or drive as a trusted location. Right click in the middle of the LO and select something like settings advanced trusted locations HTH Ron Sent from my iPad On 20 Dec 2012, at 00:16, "Cowell, Elizabeth" wrote: > hello there, > > I've found out that when I export content from XOT as html and load it in a browser it fails to resize the window properly when you select a new screen size. this seems to result in a truncation of the flash object as it is then contained in a div too small to display it and so you can't access the menu bars and it is unusable / unplayable. > > ie the HTML for the div containing the flash object after the flash object resize still has the dimensions set to 600 by 800 even tho the flash object is larger. at least that's what it seems to be at a quick glance. > > strangely if you host the same exported code on a local host xampp server and do the resize the javascript does then change the div size correctly. so when testing everything works ok until exported to a host on a real server. no idea what's going on but is there a fix for this? > > I looked back at some older content I did with xerte and it has the same problem. > > > thanks if you can assist > > regards > > Liz Cowell > skills development team > university of Wolverhampton > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. From Paul.Swanson at harlandfs.com Thu Dec 20 16:20:13 2012 From: Paul.Swanson at harlandfs.com (Paul Swanson) Date: Thu, 20 Dec 2012 16:20:13 +0000 Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working In-Reply-To: <7E5A35071B997640A6A149C48AC5622A081006@EXCHMBX10X03.unv.wlv.ac.uk> References: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> <3847083D-9CAC-4C3A-BDB2-F2CF2740F931@mitchellmedia.co.uk> <7E5A35071B997640A6A149C48AC5622A080D88@EXCHMBX10X03.unv.wlv.ac.uk> <7E5A35071B997640A6A149C48AC5622A081006@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: When using Internet Explorer, is it running in Compatibility Mode? Try it with and without Compatibility Mode on. I would expect IE 9 with Compatibility Mode off to work better than with it on. Paul Swanson Internal Business Systems Analyst Internal Business Intelligence Harland Financial Solutions (800) 274-7280 Ext. 2462 Paul.Swanson at harlandfs.com -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Cowell, Elizabeth Sent: Thursday, December 20, 2012 8:02 AM To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Ron, Further to that, I have tested out running content from our student machines, and they also don't resize when running windows 7 and internet explorer, but do work with windows 7 and firefox, so not sure if its to do with the flashplayer/browser interaction? (I am also wondering whether I should be looking at Xenith as an alternative but haven't kept abreast of how far it is as yet...) Best regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Cowell, Elizabeth Sent: 20 December 2012 13:10 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Ron, Well I'm really puzzled. When I looked at the flash player security options they seemed to be for developers testing content based locally accessing external sites (or vice versa). The code I am testing is hosted on our website, not locally. It seems as if the DoFScommand isn't being called when the flash object resizes, but tbh I am reaching the limit of my knowledge/time to look at this area. So if you can offer any advice or a fix it would be really appreciated, as I am just trying to get a body of content authored to get our team on board using Xerte. If they become aware that it might not run on every student laptop, they will may not want to go with it. And it works fine from my PC at work, but not on my laptop. There seem to be no appropriate flash settings to alter??, as I say my main concern is that if it doesn't work for me on a laptop, how would our students access the content we offer from their laptops. Thanks if you can help Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 20 December 2012 06:55 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working This is almost certainly Flash player security I can't check right now but you need to add the path to your LO or drive as a trusted location. Right click in the middle of the LO and select something like settings advanced trusted locations HTH Ron Sent from my iPad On 20 Dec 2012, at 00:16, "Cowell, Elizabeth" wrote: > hello there, > > I've found out that when I export content from XOT as html and load it in a browser it fails to resize the window properly when you select a new screen size. this seems to result in a truncation of the flash object as it is then contained in a div too small to display it and so you can't access the menu bars and it is unusable / unplayable. > > ie the HTML for the div containing the flash object after the flash object resize still has the dimensions set to 600 by 800 even tho the flash object is larger. at least that's what it seems to be at a quick glance. > > strangely if you host the same exported code on a local host xampp server and do the resize the javascript does then change the div size correctly. so when testing everything works ok until exported to a host on a real server. no idea what's going on but is there a fix for this? > > I looked back at some older content I did with xerte and it has the same problem. > > > thanks if you can assist > > regards > > Liz Cowell > skills development team > university of Wolverhampton > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 Thu Dec 20 17:40:58 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 20 Dec 2012 17:40:58 -0000 Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working In-Reply-To: <7E5A35071B997640A6A149C48AC5622A081006@EXCHMBX10X03.unv.wlv.ac.uk> References: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> <3847083D-9CAC-4C3A-BDB2-F2CF2740F931@mitchellmedia.co.uk> <7E5A35071B997640A6A149C48AC5622A080D88@EXCHMBX10X03.unv.wlv.ac.uk> <7E5A35071B997640A6A149C48AC5622A081006@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: <00d101cdded9$2c80cb00$85826100$@co.uk> Hi Liz there may be two different things here but I was responding to your point about not being able to resize whilst viewing locally via index.htm Here's a screenshot showing where to get to the trusted location settings. You can either add a folder path or just a drive letter but the latter in theory has more risk. Viewing an LO via a web server url including localhost shouldn't be affected by the trusted location setting so if that's not working either then it's a separate issue. Let us know if the above fixes the issue HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Cowell, Elizabeth Sent: 20 December 2012 16:02 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Ron, Further to that, I have tested out running content from our student machines, and they also don't resize when running windows 7 and internet explorer, but do work with windows 7 and firefox, so not sure if its to do with the flashplayer/browser interaction? (I am also wondering whether I should be looking at Xenith as an alternative but haven't kept abreast of how far it is as yet...) Best regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [ mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Cowell, Elizabeth Sent: 20 December 2012 13:10 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Ron, Well I'm really puzzled. When I looked at the flash player security options they seemed to be for developers testing content based locally accessing external sites (or vice versa). The code I am testing is hosted on our website, not locally. It seems as if the DoFScommand isn't being called when the flash object resizes, but tbh I am reaching the limit of my knowledge/time to look at this area. So if you can offer any advice or a fix it would be really appreciated, as I am just trying to get a body of content authored to get our team on board using Xerte. If they become aware that it might not run on every student laptop, they will may not want to go with it. And it works fine from my PC at work, but not on my laptop. There seem to be no appropriate flash settings to alter??, as I say my main concern is that if it doesn't work for me on a laptop, how would our students access the content we offer from their laptops. Thanks if you can help Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [ mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 20 December 2012 06:55 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working This is almost certainly Flash player security I can't check right now but you need to add the path to your LO or drive as a trusted location. Right click in the middle of the LO and select something like settings advanced trusted locations HTH Ron Sent from my iPad On 20 Dec 2012, at 00:16, "Cowell, Elizabeth" < E.Cowell at wlv.ac.uk> wrote: > hello there, > > I've found out that when I export content from XOT as html and load it in a browser it fails to resize the window properly when you select a new screen size. this seems to result in a truncation of the flash object as it is then contained in a div too small to display it and so you can't access the menu bars and it is unusable / unplayable. > > ie the HTML for the div containing the flash object after the flash object resize still has the dimensions set to 600 by 800 even tho the flash object is larger. at least that's what it seems to be at a quick glance. > > strangely if you host the same exported code on a local host xampp server and do the resize the javascript does then change the div size correctly. so when testing everything works ok until exported to a host on a real server. no idea what's going on but is there a fix for this? > > I looked back at some older content I did with xerte and it has the same problem. > > > thanks if you can assist > > regards > > Liz Cowell > skills development team > university of Wolverhampton > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 72700 bytes Desc: not available URL: From patrick.lockley at googlemail.com Thu Dec 20 23:33:03 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 20 Dec 2012 23:33:03 +0000 Subject: [Xerte] Re: New templates created with wrong ID in 1.9 @ Pat/Ron In-Reply-To: <7E5A35071B997640A6A149C48AC5622A080D33@EXCHMBX10X03.unv.wlv.ac.uk> References: <7E5A35071B997640A6A149C48AC5622A08095B@EXCHMBX10X03.unv.wlv.ac.uk> <7E5A35071B997640A6A149C48AC5622A080B68@EXCHMBX10X03.unv.wlv.ac.uk> <7E5A35071B997640A6A149C48AC5622A080D33@EXCHMBX10X03.unv.wlv.ac.uk> Message-ID: I did a fresh XAMPP install and a new database No problems with any export option? On Thu, Dec 20, 2012 at 12:57 PM, Cowell, Elizabeth wrote: > The second one (the full one).**** > > ** ** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > ** ** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 20 December 2012 12:32 > > *To:* Xerte discussion list > *Subject:* [Xerte] Re: New templates created with wrong ID in 1.9 @ > Pat/Ron**** > > ** ** > > Which export link did you click on (for reference)? > > > It works on my local copy but I can check later**** > > ** ** > > On Thu, Dec 20, 2012 at 12:13 PM, Cowell, Elizabeth > wrote:**** > > Hi Pat,**** > > **** > > **** > > All I noticed was that the line of code I mentioned wasn?t in 1.8 whereas > it is in 1.9, and the screenshot of a create new project in 1.9 shows the > edit.php being handed it as follows: **** > > **** > > **** > > **** > > **** > > I?m afraid I don?t know my way around your code, but I had a quick glance > as I was just trying to find some fixes to see if I could run with 1.9 when > I setup Xerte for our team, but this together with the export problem > probably mean I?ll stick with 1.8 which seems ok apart from the resize > window problem I am seeing on some pc?s which is making Xerte content held > on our website unplayable on them (which I am also trying to get to work). > **** > > **** > > So whilst I?d like the latest version I will probably stick with 1.8 for > now and try and put in some workarounds.**** > > **** > > Best Regards**** > > **** > > Liz**** > > **** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 20 December 2012 10:59 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: New templates created with wrong ID in 1.9 @ > Pat/Ron**** > > **** > > Hi Liz,**** > > Yes it does, because the new window open code should use those values. The > javascript knows this and should use this when opening a window.**** > > I added the PHP in for this purpose. Look at the window.open code in > website_code/scripts/template_management.js > > Pat**** > > **** > > On Thu, Dec 20, 2012 at 10:52 AM, Cowell, Elizabeth > wrote:**** > > Hi Pat,**** > > **** > > I flushed the cache, no difference. When I poked around the scripts I > found a line of code that seems to explicitly append the editor size to the > template id when creating a new tutorial?**** > > **** > > Its in new_template.php :**** > > **** > > **** > > echo trim($new_template_id);**** > > // this bit appends the editor_size ?**** > > echo "," . > $xerte_toolkits_site->learning_objects->{$row_template_type['template_framework'] > . "_" . $row_template_type['template_name']}->editor_size;**** > > **** > > Hope this helps? **** > > **** > > Regards**** > > **** > > Liz**** > > **** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > **** > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Pat Lockley > *Sent:* 20 December 2012 09:47 > *To:* Xerte discussion list > *Subject:* [Xerte] Re: New templates created with wrong ID in 1.9**** > > **** > > Flush your browser cache and it should be ok**** > > **** > > On Thu, Dec 20, 2012 at 9:21 AM, Cowell, Elizabeth > wrote:**** > > Hello,**** > > **** > > I put 1.9 on my system today, and created a new project. When it attempts > to display the template, it uses an id of the template id * 1 million, plus > 800655. **** > > **** > > **** > > It?s ok when I then close this window and then go on to edit it directly, > in this case the template id being 4. **** > > **** > > Liz**** > > **** > > Liz Cowell **** > > Learning and Skills Librarian**** > > Learning & Information Services > University of Wolverhampton > Tel: 01902 322385 > Email: E.Cowell at wlv.ac.uk**** > > **** > > **** > > -- > Scanned by iCritical. **** > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > **** > > **** > > -- > Scanned by iCritical. **** > > > > **** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > **** > > ** ** > > -- > Scanned by iCritical. **** > > ** ** > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte**** > > ** ** > > -- > Scanned by iCritical. > > > > > > _______________________________________________ > 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.Yperman at khlim.be Fri Dec 21 08:36:18 2012 From: Patrick.Yperman at khlim.be (Yperman Patrick) Date: Fri, 21 Dec 2012 08:36:18 +0000 Subject: [Xerte] login_library.php is empty Message-ID: <10AC561ED86B264CB87D4F9E865013522BBA4395@MOONRACER.khlim.local> Hi All, I'm trying to setup Xerte on a website and ran into some problems. I did a full install from version V 1.8 I followed the instructions in the manual and everything was installed successfully The Xerte website works. I can create new courses and view them, work with IFRAME integration in our LMS, etc. The website that hosts xerte doesn't support LDAP Since I want to setup some password protection for the site a have setup a password on the /httpdocs (root) folder of my site I made sure that the same users are also created via management.php According to the instructions in the installation manual I have to work with switch.php and put in the usernames and passwords In the version 1.8 which I downloaded there was no switch.php On the mailing list I found a switch.php and downloaded it and made the necessary changes Running that file gave a blank screen After some investigation I found that login_library.php was empty That fact that in the first place there was no switch.php present and the fact that login_library.php is empty gives me the impression that I did something wrong or that I use the wrong options. Please advise what to do next What do I want to accomplish? * Setup Xerte on a webserver * Give lectors access to Xerte by using a password, so they can work together on courses * Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option * We don't want the courses being publicly available Thanks in advance for helping me ... Patrick Yperman Lector Handelswetenschappen en Bedrijfskunde Nieuw: HRM, KMO,Media & Event en Vastgoed KHLim Associatie K.U.Leuven Katholieke Hogeschool Limburg Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 999 bytes Desc: image001.gif URL: From ronm at mitchellmedia.co.uk Fri Dec 21 08:53:25 2012 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Fri, 21 Dec 2012 08:53:25 -0000 Subject: [Xerte] Re: login_library.php is empty In-Reply-To: <10AC561ED86B264CB87D4F9E865013522BBA4395@MOONRACER.khlim.local> References: <10AC561ED86B264CB87D4F9E865013522BBA4395@MOONRACER.khlim.local> Message-ID: <014b01cddf58$a449f9c0$ecdded40$@co.uk> There's not account creation via management.php apart from the single admin account so how are you creating users? It sounds like your install was working probably with the default guest access so I suggest you do the following: 1. Backup your database and directory in case of problems 2. Download 1.9 http://www.nottingham.ac.uk/xerte/downloads/xertetoolkits.zip extract that and copy the files over the top of your 1.8 install 3. Test it's working with the default guest account e.g. create and view an LO 4. Edit auth_config.php and set authentication to static by un-commenting static and commenting out guest 5. Edit \library\Xerte\Authentication\Static.php and add your required accounts and passwords - use the four default accounts for reference before removing or changing those 6. Revisit your install and test the logins 7. Let us know how that went Ron From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Yperman Patrick Sent: 21 December 2012 08:36 To: xerte at lists.nottingham.ac.uk Subject: [Xerte] login_library.php is empty Hi All, I'm trying to setup Xerte on a website and ran into some problems. I did a full install from version V 1.8 I followed the instructions in the manual and everything was installed successfully The Xerte website works. I can create new courses and view them, work with IFRAME integration in our LMS, etc. The website that hosts xerte doesn't support LDAP Since I want to setup some password protection for the site a have setup a password on the /httpdocs (root) folder of my site I made sure that the same users are also created via management.php According to the instructions in the installation manual I have to work with switch.php and put in the usernames and passwords In the version 1.8 which I downloaded there was no switch.php On the mailing list I found a switch.php and downloaded it and made the necessary changes Running that file gave a blank screen After some investigation I found that login_library.php was empty That fact that in the first place there was no switch.php present and the fact that login_library.php is empty gives me the impression that I did something wrong or that I use the wrong options. Please advise what to do next What do I want to accomplish? . Setup Xerte on a webserver . Give lectors access to Xerte by using a password, so they can work together on courses . Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option . We don't want the courses being publicly available Thanks in advance for helping me . Patrick Yperman Lector Handelswetenschappen en Bedrijfskunde Nieuw: HRM, KMO,Media & Event en Vastgoed KHLim Associatie K.U.Leuven Katholieke Hogeschool Limburg Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be cid:054362321 at 10112009-2A73 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 999 bytes Desc: not available URL: From E.Cowell at wlv.ac.uk Fri Dec 21 14:59:47 2012 From: E.Cowell at wlv.ac.uk (Cowell, Elizabeth) Date: Fri, 21 Dec 2012 14:59:47 +0000 Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working In-Reply-To: <00d101cdded9$2c80cb00$85826100$@co.uk> References: <0CA7E61E-3218-4E1B-B3A6-1F2AAD7F768D@wlv.ac.uk> <3847083D-9CAC-4C3A-BDB2-F2CF2740F931@mitchellmedia.co.uk> <7E5A35071B997640A6A149C48AC5622A080D88@EXCHMBX10X03.unv.wlv.ac.uk> <7E5A35071B997640A6A149C48AC5622A081006@EXCHMBX10X03.unv.wlv.ac.uk> <00d101cdded9$2c80cb00$85826100$@co.uk> Message-ID: <7E5A35071B997640A6A149C48AC5622A0818E1@EXCHMBX10X03.unv.wlv.ac.uk> Hi Ron, So sorry, I originally confused the two issues being part of the same thing. The actual issue which is a concern is that it's not working when viewing an LO hosted on our web server. It fails to reset the window size correctly on the following browsers in windows 7 : * Chrome 23 (with flash 10) * IE 9 with Flash 11 (but it works with flash 10) (exact details given in the attached word document). As IE with flash 11 is the standard browser config on all our student machines it's a little bit of a potential problem. However, if we could set Xerte to disable changing the screen size in some way then perhaps we would have a good workaround? I don't know if its possible to disable the menu bar options along the bottom? Also I will set the default window size to be full screen. I don't know if this helps resolve things, thanks for your help. (am off until the new year now so happy new year to you all). Regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 20 December 2012 17:41 To: 'Xerte discussion list' Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Liz there may be two different things here but I was responding to your point about not being able to resize whilst viewing locally via index.htm Here's a screenshot showing where to get to the trusted location settings. You can either add a folder path or just a drive letter but the latter in theory has more risk. [cid:image001.jpg at 01CDDF77.AD2AFBB0] Viewing an LO via a web server url including localhost shouldn't be affected by the trusted location setting so if that's not working either then it's a separate issue. Let us know if the above fixes the issue HTH Ron -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Cowell, Elizabeth Sent: 20 December 2012 16:02 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Ron, Further to that, I have tested out running content from our student machines, and they also don't resize when running windows 7 and internet explorer, but do work with windows 7 and firefox, so not sure if its to do with the flashplayer/browser interaction? (I am also wondering whether I should be looking at Xenith as an alternative but haven't kept abreast of how far it is as yet...) Best regards Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Cowell, Elizabeth Sent: 20 December 2012 13:10 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working Hi Ron, Well I'm really puzzled. When I looked at the flash player security options they seemed to be for developers testing content based locally accessing external sites (or vice versa). The code I am testing is hosted on our website, not locally. It seems as if the DoFScommand isn't being called when the flash object resizes, but tbh I am reaching the limit of my knowledge/time to look at this area. So if you can offer any advice or a fix it would be really appreciated, as I am just trying to get a body of content authored to get our team on board using Xerte. If they become aware that it might not run on every student laptop, they will may not want to go with it. And it works fine from my PC at work, but not on my laptop. There seem to be no appropriate flash settings to alter??, as I say my main concern is that if it doesn't work for me on a laptop, how would our students access the content we offer from their laptops. Thanks if you can help Liz Liz Cowell Learning and Skills Librarian Learning & Information Services University of Wolverhampton Tel: 01902 322385 Email: E.Cowell at wlv.ac.uk -----Original Message----- From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 20 December 2012 06:55 To: Xerte discussion list Subject: [Xerte] Re: resize problem with XOT 1.8 stops it working This is almost certainly Flash player security I can't check right now but you need to add the path to your LO or drive as a trusted location. Right click in the middle of the LO and select something like settings advanced trusted locations HTH Ron Sent from my iPad On 20 Dec 2012, at 00:16, "Cowell, Elizabeth" > wrote: > hello there, > > I've found out that when I export content from XOT as html and load it in a browser it fails to resize the window properly when you select a new screen size. this seems to result in a truncation of the flash object as it is then contained in a div too small to display it and so you can't access the menu bars and it is unusable / unplayable. > > ie the HTML for the div containing the flash object after the flash object resize still has the dimensions set to 600 by 800 even tho the flash object is larger. at least that's what it seems to be at a quick glance. > > strangely if you host the same exported code on a local host xampp server and do the resize the javascript does then change the div size correctly. so when testing everything works ok until exported to a host on a real server. no idea what's going on but is there a fix for this? > > I looked back at some older content I did with xerte and it has the same problem. > > > thanks if you can assist > > regards > > Liz Cowell > skills development team > university of Wolverhampton > > Sent from my iPhone-- > Scanned by iCritical. > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with > the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. _______________________________________________ Xerte mailing list Xerte at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system: you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 72700 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: xerteresize.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 697076 bytes Desc: xerteresize.docx URL: From bell_beauty12 at hotmail.com Fri Dec 21 16:05:37 2012 From: bell_beauty12 at hotmail.com (Suhaila Haji Mohd Hussin) Date: Sat, 22 Dec 2012 04:05:37 +1200 Subject: [Xerte] Re: How to make text superscript In-Reply-To: References: , ,,, , , , , , , , , , , , , <12C67A1EEC419342AF5E59DA31562C3F0C48BC79B0@EXCHANGE1.ad.nottingham.ac.uk>, Message-ID: After reading through the conversation list, I'm still not clear if there's a way to apply superscript on Xerte? I had a look at Unicode subscripts and superscripts block table but I don't understand on how to use the table. I want to put in 2s Or is there any other faster yet efficient way to do this? Cheers,Suhaila From: d_b_burnett at hotmail.com To: xerte at lists.nottingham.ac.uk Date: Thu, 13 Dec 2012 07:02:06 -0500 Subject: [Xerte] Re: How to make text superscript Alistair, I think the change you are thinking of was just a repointing of the Latex service URL. > From: Julian.Tenney at nottingham.ac.uk > To: xerte at lists.nottingham.ac.uk > Date: Thu, 13 Dec 2012 08:00:19 +0000 > Subject: [Xerte] Re: How to make text superscript > > it will do, but it will dsplay an image of the formula, even if it's just x^2, so it won't display inline > ________________________________________ > From: xerte-bounces at lists.nottingham.ac.uk [xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Alistair McNaught [Alistair.McNaught at HEAcademy.ac.uk] > Sent: 12 December 2012 15:05 > To: Xerte discussion list > Subject: [Xerte] Re: How to make text superscript > > Does LaTeX do that? I know we had success with using LaTeX to create maths and formulae but I have a feeling that the way that happened may have changed in the last year? Anyone remember? > > A > > From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Suhaila Haji Mohd Hussin > Sent: 12 December 2012 14:32 > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] How to make text superscript > > Hello > > As mentioned in the subject, I need to turn certain texts into superscript and apparently using html tags for superscript didn't work. Is there any other way? > > Cheers, > Suhaila > > > This email is confidential and may be privileged. If you are not the intended recipient please accept our apologies. Please do not disclose, copy, or distribute information in this email nor take any action in reliance on its contents: to do so is strictly prohibited and may be unlawful. Please inform us that this message has gone astray before deleting it. Please note that views expressed in this email are those of the author and do not necessarily represent those of the Higher Education Academy. Please note that this e-mail has been created in the knowledge that Internet e-mail is not a secure communications medium. We advise that you understand and observe this lack of security when e-mailing us. Although we have taken steps to ensure this e-mail and attachments are free from any virus, we advise that in keeping with good computing practice the recipient should ensure they are actually virus free. The Higher Education Academy Registered No 4930131 > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may 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 knowledgeware at kccsoft.com Sat Dec 22 23:03:44 2012 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Sat, 22 Dec 2012 15:03:44 -0800 Subject: [Xerte] tabbed column wizard Message-ID: <000901cde098$97fc2f30$c7f48d90$@kccsoft.com> I'm trying to club the 'tabbed column' wizard page into submission inside xerte desktop, but it is winning. My page 'name' (title) doesn't appear and I don't see how I can control the image sizes (the images are all identically sized). Anyone know where I can set these things? This page was created in desktop xerte using the 'tabbed column' wizard. I created a subdirectory called 'tabbedColumn'. Do I need to create separate directories for each wizard page I use.if I use another tabbed column page can I put it into the same 'tabbedColumn' directory or do I need to create unique directories for each wizard page? Do these directories (which contain their own rlm/xml files) need to be moved to the server when the piece is packaged.or does the packing import them into the main piece? Thanks RonM2 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 56153 bytes Desc: not available URL: From johnathan.kemp at ntlworld.com Sun Dec 23 10:35:54 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sun, 23 Dec 2012 10:35:54 +0000 Subject: [Xerte] Re: tabbed column wizard In-Reply-To: <000901cde098$97fc2f30$c7f48d90$@kccsoft.com> References: <000901cde098$97fc2f30$c7f48d90$@kccsoft.com> Message-ID: Hello Ron, Before I can provide more detailed help I need to clarify a couple of points. 1) Are you using the latest version of Xerte? This version has a menu option "Pages / Create New Pages Project" or are you using the original page wizards that came as a separate zip file that was not part of the Xerte download. 2) Which page are you using? There is a Column Page, a Tabbed Navigator Page, a Tabbed Navigator + page, but not a Tabbed Column page. Both the original page wizards and the new Pages Project individual Page Templates (still sometimes confusingly referred to as Wizards) both suffer from the same issue. They are based on pages from XOT and XOT can put some code in the main project to be called by individual pages. A good example of this is the code to support narration of an audio file when the page loads. To overcome this problem when I created the original pageWizards.zip download I also made available additional downloads to provide the code to support these features. However with the latest version of Xerte the original page wizards are now obsolete. If you have the latest version of Xerte then create a new project by selecting from the Xerte Menu "Pages / Create New Pages Project". This will create a new empty project that has all the additional code to support every one of the individual Page Templates. If you then select the interface icon and then click on the "Pages" menu a drop down list of all the available page types will be displayed. Select the page type you want to add to your project and the page will be added to your project (the creation of a folder for the page will be handled automatically) Then you can double click on the new page you have added to open the page's wizard form. I am sorry that at present the option to create a new pages project is not available from the File / New menu, which can lead to confusion. I am hopeful that this will be tidied up in the New Year. Please try the above and if you can't get things working let me know which version of Xerte you are using and which page and I will help you to get things working. Kind regards Johnathan On 22 December 2012 23:03, KnowledgeWare wrote: > I?m trying to club the ?tabbed column? wizard page into submission inside > xerte desktop, but it is winning. My page ?name? (title) doesn?t appear > and I don?t see how I can control the image sizes (the images are all > identically sized). Anyone know where I can set these things? > > > > This page was created in desktop xerte using the ?tabbed column? wizard. I > created a subdirectory called ?tabbedColumn?. Do I need to create separate > directories for each wizard page I use?if I use another tabbed column page > can I put it into the same ?tabbedColumn? directory or do I need to create > unique directories for each wizard page? Do these directories (which > contain their own rlm/xml files) need to be moved to the server when the > piece is packaged?or does the packing import them into the main piece? > > > > Thanks > > RonM2 > > > > > _______________________________________________ > 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 knowledgeware at kccsoft.com Sun Dec 23 21:22:39 2012 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Sun, 23 Dec 2012 13:22:39 -0800 Subject: [Xerte] Re: tabbed column wizard In-Reply-To: References: <000901cde098$97fc2f30$c7f48d90$@kccsoft.com> Message-ID: <006701cde153$a352f330$e9f8d990$@kccsoft.com> Hello Jonathan: Thanks for that info.. Sorry to confuse the issue.. I was using xerte desktop 2.17 templates/navigators/column page. And yes, this was from the .zip download for page templates. Can I ask - what is the correct way to upgrade to v2.18? Would I install over top of the 2.17 install or should it be removed first? And - what about my existing projects which might have used the .zip template pages - will they still run/exist or will I need to rebuild those pages again? BTW I think you had a new page for multiple movies that showed a thumbnail along the top of the page - did that make it in to 2.18? I'm itching to get my hands on that one. Thanks RonM2 Merry Xmas! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: Sunday, December 23, 2012 2:36 AM To: Xerte discussion list Subject: [Xerte] Re: tabbed column wizard Hello Ron, Before I can provide more detailed help I need to clarify a couple of points. 1) Are you using the latest version of Xerte? This version has a menu option "Pages / Create New Pages Project" or are you using the original page wizards that came as a separate zip file that was not part of the Xerte download. 2) Which page are you using? There is a Column Page, a Tabbed Navigator Page, a Tabbed Navigator + page, but not a Tabbed Column page. Both the original page wizards and the new Pages Project individual Page Templates (still sometimes confusingly referred to as Wizards) both suffer from the same issue. They are based on pages from XOT and XOT can put some code in the main project to be called by individual pages. A good example of this is the code to support narration of an audio file when the page loads. To overcome this problem when I created the original pageWizards.zip download I also made available additional downloads to provide the code to support these features. However with the latest version of Xerte the original page wizards are now obsolete. If you have the latest version of Xerte then create a new project by selecting from the Xerte Menu "Pages / Create New Pages Project". This will create a new empty project that has all the additional code to support every one of the individual Page Templates. If you then select the interface icon and then click on the "Pages" menu a drop down list of all the available page types will be displayed. Select the page type you want to add to your project and the page will be added to your project (the creation of a folder for the page will be handled automatically) Then you can double click on the new page you have added to open the page's wizard form. I am sorry that at present the option to create a new pages project is not available from the File / New menu, which can lead to confusion. I am hopeful that this will be tidied up in the New Year. Please try the above and if you can't get things working let me know which version of Xerte you are using and which page and I will help you to get things working. Kind regards Johnathan On 22 December 2012 23:03, KnowledgeWare wrote: I'm trying to club the 'tabbed column' wizard page into submission inside xerte desktop, but it is winning. My page 'name' (title) doesn't appear and I don't see how I can control the image sizes (the images are all identically sized). Anyone know where I can set these things? This page was created in desktop xerte using the 'tabbed column' wizard. I created a subdirectory called 'tabbedColumn'. Do I need to create separate directories for each wizard page I use.if I use another tabbed column page can I put it into the same 'tabbedColumn' directory or do I need to create unique directories for each wizard page? Do these directories (which contain their own rlm/xml files) need to be moved to the server when the piece is packaged.or does the packing import them into the main piece? Thanks RonM2 _______________________________________________ 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 12412 bytes Desc: not available URL: From johnathan.kemp at ntlworld.com Sun Dec 23 22:51:42 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sun, 23 Dec 2012 22:51:42 +0000 Subject: [Xerte] Re: tabbed column wizard In-Reply-To: <006701cde153$a352f330$e9f8d990$@kccsoft.com> References: <000901cde098$97fc2f30$c7f48d90$@kccsoft.com> <006701cde153$a352f330$e9f8d990$@kccsoft.com> Message-ID: Hello RonM2, To make the following email a bit clearer and to avoid confusion, let me start with a few definitions - Page Wizards - the individual page templates that were provided by the pageWizards.zip file. - Pages Project - the new type of project available in the latest version of Xerte that makes available individual page templates without the necessity to install the pageWizards from the pageWizards.zip file. - Page Template - the individual page templates that are made available when you create a "Pages" type of project in the latest version of Xerte. (The Page Wizards are now deprecated, as the Page Templates offered by the new "Pages" type of project are effectively an improved way of delivering the functionality offered by the Page Wizards) Can I ask - what is the correct way to upgrade to v2.18? Would I install over top of the 2.17 install or should it be removed first? With respect to installation I don't think Xerte is to sensitive about whether you install over the top or not. What I suggest you do is to rename your current Xerte folder and then install the new version of Xerte to the default folder, or just install the new version into a different folder to that of your current installation.. You should then be able to have desktop short-cuts to both versions of Xerte, so that you can test out the new one whilst keeping access to your current one. Once you are satisfied you are happy with the changes introduced into the latest version of Xerte you can then delete your current installation. And ? what about my existing projects which might have used the .zip template pages ? will they still run/exist or will I need to rebuild those pages again? Any project created with the original page wizards will continue to work just as it does now with the latest version of Xerte. The new individual Page Templates are only available in "Pages" type projects so for legacy Page Wizard based projects you will need to install the Page Wizards from the pageWizards.zip file into your Xerte installation if you want to add new pages to your legacy projects. BTW I think you had a new page for multiple movies that showed a thumbnail along the top of the page ? did that make it in to 2.18? I think you are referring to the Multiple Perspectives page, which can be found amongst the Media page types available when you create a new "Pages" type of project.. If you want to create a new project in the latest version of Xerte, that offers functionality similar but better than the original Page Wizards, then you need to use the menu option "Pages / Create New Page Project". This will create a new project which already includes the code that is shared across more than one page. Once the project is created you select the Interface icon and then click on the Pages menu to see a list of the groups of Page Types e.g. Charts, Connectors, Games, etc. Point at one of the group titles and a list of Page Types will be displayed. Click on a Page Type name and a page of that type will be added to your project. Xerte will handle the creation of any necessary folders for you. There is a Page Template available for every page that is available in XOT (and a few that are not available in XOT). I was using xerte desktop 2.17 templates/navigators/column page. The Column page in the Pages projects is simple enough to use. To add a column you click on the New Nested Page link in the Page's Form. Every Nested Page added gives you an additional column. The nested pages have a number of optional properties which allow you to add an image (or I think also a .swf file) When you have installed the latest version of xerte remember to take a look at "Help" folder of your new installation. There are a number of pdf files to introduce you to some of the new page types. Note these may be slightly out of date now, but should still prove useful. If all the new stuff in Xerte 2.18 makes you feel like Christmas has arrived, the good news is it has, so remember to put Xerte down and have some Christmas fun :-) Merry Christmas and a Happy New Year Johnathan On 23 December 2012 21:22, KnowledgeWare wrote: > Hello Jonathan: > > > > Thanks for that info?. Sorry to confuse the issue.. I was using xerte > desktop 2.17 templates/navigators/column page. And yes, this was from the > .zip download for page templates. > > > > Can I ask - what is the correct way to upgrade to v2.18? Would I install > over top of the 2.17 install or should it be removed first? And ? what > about my existing projects which might have used the .zip template pages ? > will they still run/exist or will I need to rebuild those pages again? > > > > BTW I think you had a new page for multiple movies that showed a thumbnail > along the top of the page ? did that make it in to 2.18? I?m itching to get > my hands on that one? > > > > Thanks > > RonM2 > > Merry Xmas! > > > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* Sunday, December 23, 2012 2:36 AM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: tabbed column wizard > > > > Hello Ron, > > > > Before I can provide more detailed help I need to clarify a couple of > points. > > > > 1) Are you using the latest version of Xerte? This version has a menu > option "Pages / Create New Pages Project" or are you using the original > page wizards that came as a separate zip file that was not part of the > Xerte download. > > 2) Which page are you using? There is a Column Page, a Tabbed Navigator > Page, a Tabbed Navigator + page, but not a Tabbed Column page. > > > > Both the original page wizards and the new Pages Project individual Page > Templates (still sometimes confusingly referred to as Wizards) both suffer > from the same issue. They are based on pages from XOT and XOT can put some > code in the main project to be called by individual pages. A good example > of this is the code to support narration of an audio file when the page > loads. To overcome this problem when I created the original pageWizards.zip > download I also made available additional downloads to provide the code to > support these features. However with the latest version of Xerte the > original page wizards are now obsolete. > > > > If you have the latest version of Xerte then create a new project by > selecting from the Xerte Menu "Pages / Create New Pages Project". This will > create a new empty project that has all the additional code to support > every one of the individual Page Templates. If you then select the > interface icon and then click on the "Pages" menu a drop down list of all > the available page types will be displayed. Select the page type you want > to add to your project and the page will be added to your project (the > creation of a folder for the page will be handled automatically) Then you > can double click on the new page you have added to open the page's wizard > form. > > > > I am sorry that at present the option to create a new pages project is not > available from the File / New menu, which can lead to confusion. I am > hopeful that this will be tidied up in the New Year. > > > > Please try the above and if you can't get things working let me know which > version of Xerte you are using and which page and I will help you to get > things working. > > > > Kind regards > > > > Johnathan > > > > On 22 December 2012 23:03, KnowledgeWare > wrote: > > I?m trying to club the ?tabbed column? wizard page into submission inside > xerte desktop, but it is winning. My page ?name? (title) doesn?t appear > and I don?t see how I can control the image sizes (the images are all > identically sized). Anyone know where I can set these things? > > > > This page was created in desktop xerte using the ?tabbed column? wizard. I > created a subdirectory called ?tabbedColumn?. Do I need to create separate > directories for each wizard page I use?if I use another tabbed column page > can I put it into the same ?tabbedColumn? directory or do I need to create > unique directories for each wizard page? Do these directories (which > contain their own rlm/xml files) need to be moved to the server when the > piece is packaged?or does the packing import them into the main piece? > > > > Thanks > > RonM2 > > > > > _______________________________________________ > 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 -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Sun Dec 23 23:03:17 2012 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sun, 23 Dec 2012 23:03:17 +0000 Subject: [Xerte] Re: tabbed column wizard In-Reply-To: <006701cde153$a352f330$e9f8d990$@kccsoft.com> References: <000901cde098$97fc2f30$c7f48d90$@kccsoft.com> <006701cde153$a352f330$e9f8d990$@kccsoft.com> Message-ID: Hello Again RonM2, I just noticed the images you had attached, they were hidden by default. I have not made much use of the Column page. Whilst I created the Page Wizards and developed the individual Page Templates for the Pages projects much of my work consisted of modifications to create a single set of model files that would work in both Xerte and XOT environments. So whilst some of the pages are my own creation (The Connector pages, the Inventory page) most use the original code from the original model files. I don't know if there have been improvements / bug fixes to the column page model since I created the Page Wizards, but it is certainly worth creating a new "Pages" type project to get access to the latest version of the column page, to see if this performs any better for your requirements. The nice thing of course is that with the Page Wizards and the new "Pages" projects you have full access to the page structure, so if you are comfortable programming in Xerte you can always tweak the page after you have added it. Kind regards Johnathan On 23 December 2012 21:22, KnowledgeWare wrote: > Hello Jonathan: > > > > Thanks for that info?. Sorry to confuse the issue.. I was using xerte > desktop 2.17 templates/navigators/column page. And yes, this was from the > .zip download for page templates. > > > > Can I ask - what is the correct way to upgrade to v2.18? Would I install > over top of the 2.17 install or should it be removed first? And ? what > about my existing projects which might have used the .zip template pages ? > will they still run/exist or will I need to rebuild those pages again? > > > > BTW I think you had a new page for multiple movies that showed a thumbnail > along the top of the page ? did that make it in to 2.18? I?m itching to get > my hands on that one? > > > > Thanks > > RonM2 > > Merry Xmas! > > > > > > *From:* xerte-bounces at lists.nottingham.ac.uk [mailto: > xerte-bounces at lists.nottingham.ac.uk] *On Behalf Of *Kemp Johnathan > *Sent:* Sunday, December 23, 2012 2:36 AM > *To:* Xerte discussion list > *Subject:* [Xerte] Re: tabbed column wizard > > > > Hello Ron, > > > > Before I can provide more detailed help I need to clarify a couple of > points. > > > > 1) Are you using the latest version of Xerte? This version has a menu > option "Pages / Create New Pages Project" or are you using the original > page wizards that came as a separate zip file that was not part of the > Xerte download. > > 2) Which page are you using? There is a Column Page, a Tabbed Navigator > Page, a Tabbed Navigator + page, but not a Tabbed Column page. > > > > Both the original page wizards and the new Pages Project individual Page > Templates (still sometimes confusingly referred to as Wizards) both suffer > from the same issue. They are based on pages from XOT and XOT can put some > code in the main project to be called by individual pages. A good example > of this is the code to support narration of an audio file when the page > loads. To overcome this problem when I created the original pageWizards.zip > download I also made available additional downloads to provide the code to > support these features. However with the latest version of Xerte the > original page wizards are now obsolete. > > > > If you have the latest version of Xerte then create a new project by > selecting from the Xerte Menu "Pages / Create New Pages Project". This will > create a new empty project that has all the additional code to support > every one of the individual Page Templates. If you then select the > interface icon and then click on the "Pages" menu a drop down list of all > the available page types will be displayed. Select the page type you want > to add to your project and the page will be added to your project (the > creation of a folder for the page will be handled automatically) Then you > can double click on the new page you have added to open the page's wizard > form. > > > > I am sorry that at present the option to create a new pages project is not > available from the File / New menu, which can lead to confusion. I am > hopeful that this will be tidied up in the New Year. > > > > Please try the above and if you can't get things working let me know which > version of Xerte you are using and which page and I will help you to get > things working. > > > > Kind regards > > > > Johnathan > > > > On 22 December 2012 23:03, KnowledgeWare > wrote: > > I?m trying to club the ?tabbed column? wizard page into submission inside > xerte desktop, but it is winning. My page ?name? (title) doesn?t appear > and I don?t see how I can control the image sizes (the images are all > identically sized). Anyone know where I can set these things? > > > > This page was created in desktop xerte using the ?tabbed column? wizard. I > created a subdirectory called ?tabbedColumn?. Do I need to create separate > directories for each wizard page I use?if I use another tabbed column page > can I put it into the same ?tabbedColumn? directory or do I need to create > unique directories for each wizard page? Do these directories (which > contain their own rlm/xml files) need to be moved to the server when the > piece is packaged?or does the packing import them into the main piece? > > > > Thanks > > RonM2 > > > > > _______________________________________________ > 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 12412 bytes Desc: not available URL: From knowledgeware at kccsoft.com Mon Dec 24 22:49:03 2012 From: knowledgeware at kccsoft.com (KnowledgeWare) Date: Mon, 24 Dec 2012 14:49:03 -0800 Subject: [Xerte] Re: tabbed column wizard In-Reply-To: References: <000901cde098$97fc2f30$c7f48d90$@kccsoft.com> <006701cde153$a352f330$e9f8d990$@kccsoft.com> Message-ID: <000301cde228$df709900$9e51cb00$@kccsoft.com> Hello Jonathan: Thanks very much for all this information - appreciated! I will install 2.18 and go from there. Merry Xmas! RonM2 From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: Sunday, December 23, 2012 3:03 PM To: Xerte discussion list Subject: [Xerte] Re: tabbed column wizard Hello Again RonM2, I just noticed the images you had attached, they were hidden by default. I have not made much use of the Column page. Whilst I created the Page Wizards and developed the individual Page Templates for the Pages projects much of my work consisted of modifications to create a single set of model files that would work in both Xerte and XOT environments. So whilst some of the pages are my own creation (The Connector pages, the Inventory page) most use the original code from the original model files. I don't know if there have been improvements / bug fixes to the column page model since I created the Page Wizards, but it is certainly worth creating a new "Pages" type project to get access to the latest version of the column page, to see if this performs any better for your requirements. The nice thing of course is that with the Page Wizards and the new "Pages" projects you have full access to the page structure, so if you are comfortable programming in Xerte you can always tweak the page after you have added it. Kind regards Johnathan On 23 December 2012 21:22, KnowledgeWare wrote: Hello Jonathan: Thanks for that info.. Sorry to confuse the issue.. I was using xerte desktop 2.17 templates/navigators/column page. And yes, this was from the .zip download for page templates. Can I ask - what is the correct way to upgrade to v2.18? Would I install over top of the 2.17 install or should it be removed first? And - what about my existing projects which might have used the .zip template pages - will they still run/exist or will I need to rebuild those pages again? BTW I think you had a new page for multiple movies that showed a thumbnail along the top of the page - did that make it in to 2.18? I'm itching to get my hands on that one. Thanks RonM2 Merry Xmas! From: xerte-bounces at lists.nottingham.ac.uk [mailto:xerte-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: Sunday, December 23, 2012 2:36 AM To: Xerte discussion list Subject: [Xerte] Re: tabbed column wizard Hello Ron, Before I can provide more detailed help I need to clarify a couple of points. 1) Are you using the latest version of Xerte? This version has a menu option "Pages / Create New Pages Project" or are you using the original page wizards that came as a separate zip file that was not part of the Xerte download. 2) Which page are you using? There is a Column Page, a Tabbed Navigator Page, a Tabbed Navigator + page, but not a Tabbed Column page. Both the original page wizards and the new Pages Project individual Page Templates (still sometimes confusingly referred to as Wizards) both suffer from the same issue. They are based on pages from XOT and XOT can put some code in the main project to be called by individual pages. A good example of this is the code to support narration of an audio file when the page loads. To overcome this problem when I created the original pageWizards.zip download I also made available additional downloads to provide the code to support these features. However with the latest version of Xerte the original page wizards are now obsolete. If you have the latest version of Xerte then create a new project by selecting from the Xerte Menu "Pages / Create New Pages Project". This will create a new empty project that has all the additional code to support every one of the individual Page Templates. If you then select the interface icon and then click on the "Pages" menu a drop down list of all the available page types will be displayed. Select the page type you want to add to your project and the page will be added to your project (the creation of a folder for the page will be handled automatically) Then you can double click on the new page you have added to open the page's wizard form. I am sorry that at present the option to create a new pages project is not available from the File / New menu, which can lead to confusion. I am hopeful that this will be tidied up in the New Year. Please try the above and if you can't get things working let me know which version of Xerte you are using and which page and I will help you to get things working. Kind regards Johnathan On 22 December 2012 23:03, KnowledgeWare wrote: I'm trying to club the 'tabbed column' wizard page into submission inside xerte desktop, but it is winning. My page 'name' (title) doesn't appear and I don't see how I can control the image sizes (the images are all identically sized). Anyone know where I can set these things? This page was created in desktop xerte using the 'tabbed column' wizard. I created a subdirectory called 'tabbedColumn'. Do I need to create separate directories for each wizard page I use.if I use another tabbed column page can I put it into the same 'tabbedColumn' directory or do I need to create unique directories for each wizard page? Do these directories (which contain their own rlm/xml files) need to be moved to the server when the piece is packaged.or does the packing import them into the main piece? Thanks RonM2 _______________________________________________ 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 12412 bytes Desc: not available URL: From Patrick.Yperman at khlim.be Wed Dec 26 09:50:59 2012 From: Patrick.Yperman at khlim.be (Yperman Patrick) Date: Wed, 26 Dec 2012 09:50:59 +0000 Subject: [Xerte] Rephrased: Setup a password protected environment for Xerte when no LDAP is available Message-ID: <10AC561ED86B264CB87D4F9E865013522BBA4B03@MOONRACER.khlim.local> Hi All, I'm not sure if I've send this message to the right place. Is there another forum where to post my question? My previous mail did not appear in the mailing list, although I receive other mails coming from xerte at lists.nottingham.ac.uk What do I want to accomplish? * Setup Xerte on a webserver (I already did this) * Give lectors access to Xerte by using a password, so they can work together on courses * Preferably at first I only want lectors from the domain "KHLim.be" to be granted access to the Xerte website * Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option. o This way I want to give students access to the courses we created in Xerte o Preferably I don't want to setup a username and password for every student. How to best do this? Below you can find information on what I already tried. Any help is greatly appreciated With kind regards Patrick Yperman Lector Handelswetenschappen en Bedrijfskunde Nieuw: HRM, KMO,Media & Event en Vastgoed KHLim Associatie K.U.Leuven Katholieke Hogeschool Limburg Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be Van: Yperman Patrick Verzonden: vrijdag 21 december 2012 9:36 Aan: 'xerte at lists.nottingham.ac.uk' Onderwerp: login_library.php is empty Hi All, I'm trying to setup Xerte on a website and ran into some problems. I did a full install from version V 1.8 I followed the instructions in the manual and everything was installed successfully The Xerte website works. I can create new courses and view them, work with IFRAME integration in our LMS, etc. The website that hosts xerte doesn't support LDAP Since I want to setup some password protection for the site a have setup a password on the /httpdocs (root) folder of my site I created several users, each with their own password. I made sure that the same users were also created in Xerte via management.php According to the instructions in the installation manual I have to work with switch.php and put in the usernames and passwords In the version 1.8 which I downloaded there was no switch.php On the mailing list I found a switch.php and downloaded it and made the necessary changes Running that file gave a blank screen After some investigation I found that login_library.php was empty The fact that in the first place there was no switch.php present and the fact that login_library.php is empty gives me the impression that I did something wrong or that I use the wrong options. Please advise what to do next. Are there other installation instructions available? What do I want to accomplish? * Setup Xerte on a webserver * Give lectors access to Xerte by using a password, so they can work together on courses * Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option * We don't want the courses being publicly available Thanks in advance for helping me ... Patrick Yperman Lector Handelswetenschappen en Bedrijfskunde Nieuw: HRM, KMO,Media & Event en Vastgoed KHLim Associatie K.U.Leuven Katholieke Hogeschool Limburg Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 999 bytes Desc: image001.gif URL: From patrick.lockley at googlemail.com Wed Dec 26 11:18:54 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Wed, 26 Dec 2012 11:18:54 +0000 Subject: [Xerte] Re: Rephrased: Setup a password protected environment for Xerte when no LDAP is available In-Reply-To: <10AC561ED86B264CB87D4F9E865013522BBA4B03@MOONRACER.khlim.local> References: <10AC561ED86B264CB87D4F9E865013522BBA4B03@MOONRACER.khlim.local> Message-ID: Hello, Install the latest XOT Open auth_config.php and uncomment the static option. Then go to (I think) library/login/static.php And look for passwords / usernames Create a username / password for each lecturer There isn't a way of setting default access to a specific domain - but you could alter play.php to limit access. Not sure XOT can do all of what you want Pat On 26 Dec 2012, at 09:50, Yperman Patrick wrote: > Hi All, > > I?m not sure if I?ve send this message to the right place. Is there another forum where to post my question? > My previous mail did not appear in the mailing list, although I receive other mails coming from xerte at lists.nottingham.ac.uk > > What do I want to accomplish? > ? Setup Xerte on a webserver (I already did this) > ? Give lectors access to Xerte by using a password, so they can work together on courses > ? Preferably at first I only want lectors from the domain ?KHLim.be? to be granted access to the Xerte website > ? Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option. > o This way I want to give students access to the courses we created in Xerte > o Preferably I don?t want to setup a username and password for every student. How to best do this? > > Below you can find information on what I already tried. > > Any help is greatly appreciated > > With kind regards > Patrick Yperman > Lector Handelswetenschappen en Bedrijfskunde > Nieuw: HRM, KMO,Media & Event en Vastgoed > KHLim Associatie K.U.Leuven > Katholieke Hogeschool Limburg > Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek > Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be > > > > > Van: Yperman Patrick > Verzonden: vrijdag 21 december 2012 9:36 > Aan: 'xerte at lists.nottingham.ac.uk' > Onderwerp: login_library.php is empty > > Hi All, > > I?m trying to setup Xerte on a website and ran into some problems. > > I did a full install from version V 1.8 > I followed the instructions in the manual and everything was installed successfully > The Xerte website works. I can create new courses and view them, work with IFRAME integration in our LMS, etc. > > The website that hosts xerte doesn?t support LDAP > Since I want to setup some password protection for the site a have setup a password on the /httpdocs (root) folder of my site > I created several users, each with their own password. > I made sure that the same users were also created in Xerte via management.php > > According to the instructions in the installation manual I have to work with switch.php and put in the usernames and passwords > In the version 1.8 which I downloaded there was no switch.php > On the mailing list I found a switch.php and downloaded it and made the necessary changes > Running that file gave a blank screen > After some investigation I found that login_library.php was empty > > The fact that in the first place there was no switch.php present and the fact that login_library.php is empty gives me the impression that I did something wrong or that I use the wrong options. Please advise what to do next. Are there other installation instructions available? > > What do I want to accomplish? > ? Setup Xerte on a webserver > ? Give lectors access to Xerte by using a password, so they can work together on courses > ? Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option > ? We don?t want the courses being publicly available > > Thanks in advance for helping me ? > Patrick Yperman > Lector Handelswetenschappen en Bedrijfskunde > Nieuw: HRM, KMO,Media & Event en Vastgoed > KHLim Associatie K.U.Leuven > Katholieke Hogeschool Limburg > Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek > Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be > > > _______________________________________________ > 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 paulo.fm.torres at gmail.com Thu Dec 27 01:26:49 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Thu, 27 Dec 2012 01:26:49 +0000 Subject: [Xerte] Upload project files error In-Reply-To: References: Message-ID: <81CCED0B-8A4B-4F0B-8F7C-929E14E3AC69@gmail.com> Hi, i cant?t upload project files. Why is that so. Regards, Paulo Torres A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: > 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: Rephrased: Setup a password protected environment for > Xerte when no LDAP is available (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 26 Dec 2012 11:18:54 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Rephrased: Setup a password protected environment > for Xerte when no LDAP is available > Message-ID: > Content-Type: text/plain; charset="utf-8" > > Hello, > > Install the latest XOT > > Open auth_config.php and uncomment the static option. > > Then go to (I think) library/login/static.php > > And look for passwords / usernames > > Create a username / password for each lecturer > > There isn't a way of setting default access to a specific domain - but you could alter play.php to limit access. > > Not sure XOT can do all of what you want > > Pat > > On 26 Dec 2012, at 09:50, Yperman Patrick wrote: > >> Hi All, >> >> I?m not sure if I?ve send this message to the right place. Is there another forum where to post my question? >> My previous mail did not appear in the mailing list, although I receive other mails coming from xerte at lists.nottingham.ac.uk >> >> What do I want to accomplish? >> ? Setup Xerte on a webserver (I already did this) >> ? Give lectors access to Xerte by using a password, so they can work together on courses >> ? Preferably at first I only want lectors from the domain ?KHLim.be? to be granted access to the Xerte website >> ? Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option. >> o This way I want to give students access to the courses we created in Xerte >> o Preferably I don?t want to setup a username and password for every student. How to best do this? >> >> Below you can find information on what I already tried. >> >> Any help is greatly appreciated >> >> With kind regards >> Patrick Yperman >> Lector Handelswetenschappen en Bedrijfskunde >> Nieuw: HRM, KMO,Media & Event en Vastgoed >> KHLim Associatie K.U.Leuven >> Katholieke Hogeschool Limburg >> Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek >> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be >> >> >> >> >> Van: Yperman Patrick >> Verzonden: vrijdag 21 december 2012 9:36 >> Aan: 'xerte at lists.nottingham.ac.uk' >> Onderwerp: login_library.php is empty >> >> Hi All, >> >> I?m trying to setup Xerte on a website and ran into some problems. >> >> I did a full install from version V 1.8 >> I followed the instructions in the manual and everything was installed successfully >> The Xerte website works. I can create new courses and view them, work with IFRAME integration in our LMS, etc. >> >> The website that hosts xerte doesn?t support LDAP >> Since I want to setup some password protection for the site a have setup a password on the /httpdocs (root) folder of my site >> I created several users, each with their own password. >> I made sure that the same users were also created in Xerte via management.php >> >> According to the instructions in the installation manual I have to work with switch.php and put in the usernames and passwords >> In the version 1.8 which I downloaded there was no switch.php >> On the mailing list I found a switch.php and downloaded it and made the necessary changes >> Running that file gave a blank screen >> After some investigation I found that login_library.php was empty >> >> The fact that in the first place there was no switch.php present and the fact that login_library.php is empty gives me the impression that I did something wrong or that I use the wrong options. Please advise what to do next. Are there other installation instructions available? >> >> What do I want to accomplish? >> ? Setup Xerte on a webserver >> ? Give lectors access to Xerte by using a password, so they can work together on courses >> ? Integrate these courses in our Blackboard/Toledo LMS by using the IFRAME option >> ? We don?t want the courses being publicly available >> >> Thanks in advance for helping me ? >> Patrick Yperman >> Lector Handelswetenschappen en Bedrijfskunde >> Nieuw: HRM, KMO,Media & Event en Vastgoed >> KHLim Associatie K.U.Leuven >> Katholieke Hogeschool Limburg >> Campus Diepenbeek, Agoralaan gebouw B , bus 2, 3590 Diepenbeek >> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be www.khlim.be >> >> >> _______________________________________________ >> 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: > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 109, Issue 3 > ************************************* > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Dec 27 12:14:19 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Thu, 27 Dec 2012 12:14:19 +0000 Subject: [Xerte] Re: Upload project files error In-Reply-To: <81CCED0B-8A4B-4F0B-8F7C-929E14E3AC69@gmail.com> References: <81CCED0B-8A4B-4F0B-8F7C-929E14E3AC69@gmail.com> Message-ID: Hello, Upload a picture to a project, or Upload as in import? Pat On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: > Hi, > i cant?t upload project files. Why is that so. > > Regards, > Paulo Torres > > A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Rephrased: Setup a password protected environment for > > Xerte when no LDAP is available (Pat Lockley) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Wed, 26 Dec 2012 11:18:54 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Rephrased: Setup a password protected environment > > for Xerte when no LDAP is available > > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > > > Hello, > > > > Install the latest XOT > > > > Open auth_config.php and uncomment the static option. > > > > Then go to (I think) library/login/static.php > > > > And look for passwords / usernames > > > > Create a username / password for each lecturer > > > > There isn't a way of setting default access to a specific domain - but > you could alter play.php to limit access. > > > > Not sure XOT can do all of what you want > > > > Pat > > > > On 26 Dec 2012, at 09:50, Yperman Patrick > wrote: > > > >> Hi All, > >> > >> I?m not sure if I?ve send this message to the right place. Is there > another forum where to post my question? > >> My previous mail did not appear in the mailing list, although I receive > other mails coming from xerte at lists.nottingham.ac.uk > >> > >> What do I want to accomplish? > >> ? Setup Xerte on a webserver (I already did this) > >> ? Give lectors access to Xerte by using a password, so they can > work together on courses > >> ? Preferably at first I only want lectors from the domain > ?KHLim.be? to be granted access to the Xerte website > >> ? Integrate these courses in our Blackboard/Toledo LMS by using > the IFRAME option. > >> o This way I want to give students access to the courses we created > in Xerte > >> o Preferably I don?t want to setup a username and password for every > student. How to best do this? > >> > >> Below you can find information on what I already tried. > >> > >> Any help is greatly appreciated > >> > >> With kind regards > >> Patrick Yperman > >> Lector Handelswetenschappen en Bedrijfskunde > >> Nieuw: HRM, KMO,Media & Event en Vastgoed > >> KHLim > Associatie K.U.Leuven > >> Katholieke Hogeschool Limburg > >> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > 3590 Diepenbeek > >> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be > www.khlim.be > >> > >> > >> > >> > >> Van: Yperman Patrick > >> Verzonden: vrijdag 21 december 2012 9:36 > >> Aan: 'xerte at lists.nottingham.ac.uk' > >> Onderwerp: login_library.php is empty > >> > >> Hi All, > >> > >> I?m trying to setup Xerte on a website and ran into some problems. > >> > >> I did a full install from version V 1.8 > >> I followed the instructions in the manual and everything was installed > successfully > >> The Xerte website works. I can create new courses and view them, work > with IFRAME integration in our LMS, etc. > >> > >> The website that hosts xerte doesn?t support LDAP > >> Since I want to setup some password protection for the site a have > setup a password on the /httpdocs (root) folder of my site > >> I created several users, each with their own password. > >> I made sure that the same users were also created in Xerte via > management.php > >> > >> According to the instructions in the installation manual I have to work > with switch.php and put in the usernames and passwords > >> In the version 1.8 which I downloaded there was no switch.php > >> On the mailing list I found a switch.php and downloaded > it and made the necessary changes > >> Running that file gave a blank screen > >> After some investigation I found that login_library.php > was empty > >> > >> The fact that in the first place there was no switch.php present and > the fact that login_library.php is empty gives me the impression that I > did something wrong or that I use the wrong options. Please advise what to > do next. Are there other installation instructions available? > >> > >> What do I want to accomplish? > >> ? Setup Xerte on a webserver > >> ? Give lectors access to Xerte by using a password, so they can > work together on courses > >> ? Integrate these courses in our Blackboard/Toledo LMS by using > the IFRAME option > >> ? We don?t want the courses being publicly available > >> > >> Thanks in advance for helping me ? > >> Patrick Yperman > >> Lector Handelswetenschappen en Bedrijfskunde > >> Nieuw: HRM, KMO,Media & Event en Vastgoed > >> KHLim > Associatie K.U.Leuven > >> Katholieke Hogeschool Limburg > >> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > 3590 Diepenbeek > >> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be > www.khlim.be > >> > >> > >> _______________________________________________ > >> 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: < > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html > > > > > > ------------------------------ > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > End of Xerte Digest, Vol 109, Issue 3 > > ************************************* > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment > > may still contain software viruses which could damage your computer > system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 paulo.fm.torres at gmail.com Fri Dec 28 12:21:36 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Fri, 28 Dec 2012 12:21:36 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 In-Reply-To: References: Message-ID: Hello, i?m uploading as an import of a project file. The upload process starts but when it reaches aproximatly 40% it stops. Regards, Paulo Torres A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: > 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: Upload project files error (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 27 Dec 2012 12:14:19 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Upload project files error > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hello, > > Upload a picture to a project, or > Upload as in import? > > Pat > > > On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: > >> Hi, >> i cant?t upload project files. Why is that so. >> >> Regards, >> Paulo Torres >> >> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >> >>> 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: Rephrased: Setup a password protected environment for >>> Xerte when no LDAP is available (Pat Lockley) >>> >>> >>> ---------------------------------------------------------------------- >>> >>> Message: 1 >>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>> From: Pat Lockley >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>> for Xerte when no LDAP is available >>> Message-ID: >>> Content-Type: text/plain; charset="utf-8" >>> >>> Hello, >>> >>> Install the latest XOT >>> >>> Open auth_config.php and uncomment the static option. >>> >>> Then go to (I think) library/login/static.php >>> >>> And look for passwords / usernames >>> >>> Create a username / password for each lecturer >>> >>> There isn't a way of setting default access to a specific domain - but >> you could alter play.php to limit access. >>> >>> Not sure XOT can do all of what you want >>> >>> Pat >>> >>> On 26 Dec 2012, at 09:50, Yperman Patrick >> wrote: >>> >>>> Hi All, >>>> >>>> I?m not sure if I?ve send this message to the right place. Is there >> another forum where to post my question? >>>> My previous mail did not appear in the mailing list, although I receive >> other mails coming from xerte at lists.nottingham.ac.uk >>>> >>>> What do I want to accomplish? >>>> ? Setup Xerte on a webserver (I already did this) >>>> ? Give lectors access to Xerte by using a password, so they can >> work together on courses >>>> ? Preferably at first I only want lectors from the domain >> ?KHLim.be? to be granted access to the Xerte website >>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >> the IFRAME option. >>>> o This way I want to give students access to the courses we created >> in Xerte >>>> o Preferably I don?t want to setup a username and password for every >> student. How to best do this? >>>> >>>> Below you can find information on what I already tried. >>>> >>>> Any help is greatly appreciated >>>> >>>> With kind regards >>>> Patrick Yperman >>>> Lector Handelswetenschappen en Bedrijfskunde >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>> KHLim >> Associatie K.U.Leuven >>>> Katholieke Hogeschool Limburg >>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >> 3590 Diepenbeek >>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >> www.khlim.be >>>> >>>> >>>> >>>> >>>> Van: Yperman Patrick >>>> Verzonden: vrijdag 21 december 2012 9:36 >>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>> Onderwerp: login_library.php is empty >>>> >>>> Hi All, >>>> >>>> I?m trying to setup Xerte on a website and ran into some problems. >>>> >>>> I did a full install from version V 1.8 >>>> I followed the instructions in the manual and everything was installed >> successfully >>>> The Xerte website works. I can create new courses and view them, work >> with IFRAME integration in our LMS, etc. >>>> >>>> The website that hosts xerte doesn?t support LDAP >>>> Since I want to setup some password protection for the site a have >> setup a password on the /httpdocs (root) folder of my site >>>> I created several users, each with their own password. >>>> I made sure that the same users were also created in Xerte via >> management.php >>>> >>>> According to the instructions in the installation manual I have to work >> with switch.php and put in the usernames and passwords >>>> In the version 1.8 which I downloaded there was no switch.php >>>> On the mailing list I found a switch.php and downloaded >> it and made the necessary changes >>>> Running that file gave a blank screen >>>> After some investigation I found that login_library.php >> was empty >>>> >>>> The fact that in the first place there was no switch.php present and >> the fact that login_library.php is empty gives me the impression that I >> did something wrong or that I use the wrong options. Please advise what to >> do next. Are there other installation instructions available? >>>> >>>> What do I want to accomplish? >>>> ? Setup Xerte on a webserver >>>> ? Give lectors access to Xerte by using a password, so they can >> work together on courses >>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >> the IFRAME option >>>> ? We don?t want the courses being publicly available >>>> >>>> Thanks in advance for helping me ? >>>> Patrick Yperman >>>> Lector Handelswetenschappen en Bedrijfskunde >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>> KHLim >> Associatie K.U.Leuven >>>> Katholieke Hogeschool Limburg >>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >> 3590 Diepenbeek >>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >> www.khlim.be >>>> >>>> >>>> _______________________________________________ >>>> 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: < >> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>> >>> >>> ------------------------------ >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> End of Xerte Digest, Vol 109, Issue 3 >>> ************************************* >>> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this message >> in error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >> attachment >>> may still contain software viruses which could damage your computer >> system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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: > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 109, Issue 5 > ************************************* > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. From patrick.lockley at googlemail.com Fri Dec 28 13:25:20 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 28 Dec 2012 13:25:20 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 In-Reply-To: References: Message-ID: The file is too big I'd guess Try increasing the file_upload / max_post_size in php.ini Then restart apache On Fri, Dec 28, 2012 at 12:21 PM, Paulo wrote: > Hello, > i?m uploading as an import of a project file. > The upload process starts but when it reaches aproximatly 40% it stops. > > Regards, > Paulo Torres > A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Upload project files error (Pat Lockley) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Thu, 27 Dec 2012 12:14:19 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Upload project files error > > Message-ID: > > < > CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hello, > > > > Upload a picture to a project, or > > Upload as in import? > > > > Pat > > > > > > On Thu, Dec 27, 2012 at 1:26 AM, Paulo > wrote: > > > >> Hi, > >> i cant?t upload project files. Why is that so. > >> > >> Regards, > >> Paulo Torres > >> > >> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: > >> > >>> 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: Rephrased: Setup a password protected environment for > >>> Xerte when no LDAP is available (Pat Lockley) > >>> > >>> > >>> ---------------------------------------------------------------------- > >>> > >>> Message: 1 > >>> Date: Wed, 26 Dec 2012 11:18:54 +0000 > >>> From: Pat Lockley > >>> To: Xerte discussion list > >>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment > >>> for Xerte when no LDAP is available > >>> Message-ID: > >>> Content-Type: text/plain; charset="utf-8" > >>> > >>> Hello, > >>> > >>> Install the latest XOT > >>> > >>> Open auth_config.php and uncomment the static option. > >>> > >>> Then go to (I think) library/login/static.php > >>> > >>> And look for passwords / usernames > >>> > >>> Create a username / password for each lecturer > >>> > >>> There isn't a way of setting default access to a specific domain - but > >> you could alter play.php to limit access. > >>> > >>> Not sure XOT can do all of what you want > >>> > >>> Pat > >>> > >>> On 26 Dec 2012, at 09:50, Yperman Patrick > >> wrote: > >>> > >>>> Hi All, > >>>> > >>>> I?m not sure if I?ve send this message to the right place. Is there > >> another forum where to post my question? > >>>> My previous mail did not appear in the mailing list, although I > receive > >> other mails coming from xerte at lists.nottingham.ac.uk > >>>> > >>>> What do I want to accomplish? > >>>> ? Setup Xerte on a webserver (I already did this) > >>>> ? Give lectors access to Xerte by using a password, so they > can > >> work together on courses > >>>> ? Preferably at first I only want lectors from the domain > >> ?KHLim.be? to be granted access to the Xerte website > >>>> ? Integrate these courses in our Blackboard/Toledo LMS by > using > >> the IFRAME option. > >>>> o This way I want to give students access to the courses we created > >> in Xerte > >>>> o Preferably I don?t want to setup a username and password for > every > >> student. How to best do this? > >>>> > >>>> Below you can find information on what I already tried. > >>>> > >>>> Any help is greatly appreciated > >>>> > >>>> With kind regards > >>>> Patrick Yperman > >>>> Lector Handelswetenschappen en Bedrijfskunde > >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed > >>>> KHLim > >> Associatie K.U.Leuven > >>>> Katholieke Hogeschool Limburg > >>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > >> 3590 Diepenbeek > >>>> Tel. 011 230 890 - Fax 011 230 899 - > patrick.yperman at khlim.be > >> www.khlim.be > >>>> > >>>> > >>>> > >>>> > >>>> Van: Yperman Patrick > >>>> Verzonden: vrijdag 21 december 2012 9:36 > >>>> Aan: 'xerte at lists.nottingham.ac.uk' > >>>> Onderwerp: login_library.php is empty > >>>> > >>>> Hi All, > >>>> > >>>> I?m trying to setup Xerte on a website and ran into some problems. > >>>> > >>>> I did a full install from version V 1.8 > >>>> I followed the instructions in the manual and everything was installed > >> successfully > >>>> The Xerte website works. I can create new courses and view them, work > >> with IFRAME integration in our LMS, etc. > >>>> > >>>> The website that hosts xerte doesn?t support LDAP > >>>> Since I want to setup some password protection for the site a have > >> setup a password on the /httpdocs (root) folder of my site > >>>> I created several users, each with their own password. > >>>> I made sure that the same users were also created in Xerte via > >> management.php > >>>> > >>>> According to the instructions in the installation manual I have to > work > >> with switch.php and put in the usernames and passwords > >>>> In the version 1.8 which I downloaded there was no switch.php > >>>> On the mailing list I found a switch.php and downloaded > >> it and made the necessary changes > >>>> Running that file gave a blank screen > >>>> After some investigation I found that login_library.php > >> was empty > >>>> > >>>> The fact that in the first place there was no switch.php present and > >> the fact that login_library.php is empty gives me the impression that I > >> did something wrong or that I use the wrong options. Please advise what > to > >> do next. Are there other installation instructions available? > >>>> > >>>> What do I want to accomplish? > >>>> ? Setup Xerte on a webserver > >>>> ? Give lectors access to Xerte by using a password, so they > can > >> work together on courses > >>>> ? Integrate these courses in our Blackboard/Toledo LMS by > using > >> the IFRAME option > >>>> ? We don?t want the courses being publicly available > >>>> > >>>> Thanks in advance for helping me ? > >>>> Patrick Yperman > >>>> Lector Handelswetenschappen en Bedrijfskunde > >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed > >>>> KHLim > >> Associatie K.U.Leuven > >>>> Katholieke Hogeschool Limburg > >>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > >> 3590 Diepenbeek > >>>> Tel. 011 230 890 - Fax 011 230 899 - > patrick.yperman at khlim.be > >> www.khlim.be > >>>> > >>>> > >>>> _______________________________________________ > >>>> 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: < > >> > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html > >>> > >>> > >>> ------------------------------ > >>> > >>> _______________________________________________ > >>> Xerte mailing list > >>> Xerte at lists.nottingham.ac.uk > >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >>> > >>> > >>> End of Xerte Digest, Vol 109, Issue 3 > >>> ************************************* > >>> This message and any attachment are intended solely for the addressee > >> and may contain confidential information. If you have received this > message > >> in error, please send it back to me, and immediately delete it. > Please do > >> not use, copy or disclose the information contained in this message or > in > >> any attachment. Any views or opinions expressed by the author of this > >> email do not necessarily reflect the views of the University of > Nottingham. > >>> > >>> This message has been checked for viruses but the contents of an > >> attachment > >>> may still contain software viruses which could damage your computer > >> system: > >>> you are advised to perform your own checks. Email communications with > the > >>> University of Nottingham may be monitored as permitted by UK > legislation. > >> > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> This message and any attachment are intended solely for the addressee > and > >> may contain confidential information. If you have received this message > in > >> error, please send it back to me, and immediately delete it. Please do > >> not use, copy or disclose the information contained in this message or > in > >> any attachment. Any views or opinions expressed by the author of this > >> email do not necessarily reflect the views of the University of > Nottingham. > >> > >> This message has been checked for viruses but the contents of an > attachment > >> may still contain software viruses which could damage your computer > 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/20121227/5f75ad34/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 109, Issue 5 > > ************************************* > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment > > may still contain software viruses which could damage your computer > system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 paulo.fm.torres at gmail.com Fri Dec 28 23:18:52 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Fri, 28 Dec 2012 23:18:52 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 In-Reply-To: References: Message-ID: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA@gmail.com> Hi, i?m trying to import a project file to XOT but i get an error. The file i?m importing is a zip file generated by XOT but i get an error indicating, that i can only import zip files. Well the file is a zip one. why do i get this error? Regards, Paulo Torres A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: > 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: Xerte Digest, Vol 109, Issue 5 (Paulo) > 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 28 Dec 2012 12:21:36 +0000 > From: Paulo > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 > Message-ID: > Content-Type: text/plain; charset=iso-8859-1 > > Hello, > i?m uploading as an import of a project file. > The upload process starts but when it reaches aproximatly 40% it stops. > > Regards, > Paulo Torres > A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: > >> 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: Upload project files error (Pat Lockley) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Thu, 27 Dec 2012 12:14:19 +0000 >> From: Pat Lockley >> To: Xerte discussion list >> Subject: [Xerte] Re: Upload project files error >> Message-ID: >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> Hello, >> >> Upload a picture to a project, or >> Upload as in import? >> >> Pat >> >> >> On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: >> >>> Hi, >>> i cant?t upload project files. Why is that so. >>> >>> Regards, >>> Paulo Torres >>> >>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>>> 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: Rephrased: Setup a password protected environment for >>>> Xerte when no LDAP is available (Pat Lockley) >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> Message: 1 >>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>> From: Pat Lockley >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>> for Xerte when no LDAP is available >>>> Message-ID: >>>> Content-Type: text/plain; charset="utf-8" >>>> >>>> Hello, >>>> >>>> Install the latest XOT >>>> >>>> Open auth_config.php and uncomment the static option. >>>> >>>> Then go to (I think) library/login/static.php >>>> >>>> And look for passwords / usernames >>>> >>>> Create a username / password for each lecturer >>>> >>>> There isn't a way of setting default access to a specific domain - but >>> you could alter play.php to limit access. >>>> >>>> Not sure XOT can do all of what you want >>>> >>>> Pat >>>> >>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>> wrote: >>>> >>>>> Hi All, >>>>> >>>>> I?m not sure if I?ve send this message to the right place. Is there >>> another forum where to post my question? >>>>> My previous mail did not appear in the mailing list, although I receive >>> other mails coming from xerte at lists.nottingham.ac.uk >>>>> >>>>> What do I want to accomplish? >>>>> ? Setup Xerte on a webserver (I already did this) >>>>> ? Give lectors access to Xerte by using a password, so they can >>> work together on courses >>>>> ? Preferably at first I only want lectors from the domain >>> ?KHLim.be? to be granted access to the Xerte website >>>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>> the IFRAME option. >>>>> o This way I want to give students access to the courses we created >>> in Xerte >>>>> o Preferably I don?t want to setup a username and password for every >>> student. How to best do this? >>>>> >>>>> Below you can find information on what I already tried. >>>>> >>>>> Any help is greatly appreciated >>>>> >>>>> With kind regards >>>>> Patrick Yperman >>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>> KHLim >>> Associatie K.U.Leuven >>>>> Katholieke Hogeschool Limburg >>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>> 3590 Diepenbeek >>>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>> www.khlim.be >>>>> >>>>> >>>>> >>>>> >>>>> Van: Yperman Patrick >>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>> Onderwerp: login_library.php is empty >>>>> >>>>> Hi All, >>>>> >>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>> >>>>> I did a full install from version V 1.8 >>>>> I followed the instructions in the manual and everything was installed >>> successfully >>>>> The Xerte website works. I can create new courses and view them, work >>> with IFRAME integration in our LMS, etc. >>>>> >>>>> The website that hosts xerte doesn?t support LDAP >>>>> Since I want to setup some password protection for the site a have >>> setup a password on the /httpdocs (root) folder of my site >>>>> I created several users, each with their own password. >>>>> I made sure that the same users were also created in Xerte via >>> management.php >>>>> >>>>> According to the instructions in the installation manual I have to work >>> with switch.php and put in the usernames and passwords >>>>> In the version 1.8 which I downloaded there was no switch.php >>>>> On the mailing list I found a switch.php and downloaded >>> it and made the necessary changes >>>>> Running that file gave a blank screen >>>>> After some investigation I found that login_library.php >>> was empty >>>>> >>>>> The fact that in the first place there was no switch.php present and >>> the fact that login_library.php is empty gives me the impression that I >>> did something wrong or that I use the wrong options. Please advise what to >>> do next. Are there other installation instructions available? >>>>> >>>>> What do I want to accomplish? >>>>> ? Setup Xerte on a webserver >>>>> ? Give lectors access to Xerte by using a password, so they can >>> work together on courses >>>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>> the IFRAME option >>>>> ? We don?t want the courses being publicly available >>>>> >>>>> Thanks in advance for helping me ? >>>>> Patrick Yperman >>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>> KHLim >>> Associatie K.U.Leuven >>>>> Katholieke Hogeschool Limburg >>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>> 3590 Diepenbeek >>>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>> www.khlim.be >>>>> >>>>> >>>>> _______________________________________________ >>>>> 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: < >>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>> >>>> >>>> ------------------------------ >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> End of Xerte Digest, Vol 109, Issue 3 >>>> ************************************* >>>> This message and any attachment are intended solely for the addressee >>> and may contain confidential information. If you have received this message >>> in error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>> attachment >>>> may still contain software viruses which could damage your computer >>> system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer 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: >> >> ------------------------------ >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> End of Xerte Digest, Vol 109, Issue 5 >> ************************************* >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. > > > > > ------------------------------ > > Message: 2 > Date: Fri, 28 Dec 2012 13:25:20 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > The file is too big I'd guess > > Try increasing the file_upload / max_post_size in php.ini > > Then restart apache > > > On Fri, Dec 28, 2012 at 12:21 PM, Paulo wrote: > >> Hello, >> i?m uploading as an import of a project file. >> The upload process starts but when it reaches aproximatly 40% it stops. >> >> Regards, >> Paulo Torres >> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >> >>> 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: Upload project files error (Pat Lockley) >>> >>> >>> ---------------------------------------------------------------------- >>> >>> Message: 1 >>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>> From: Pat Lockley >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Upload project files error >>> Message-ID: >>> < >> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> Hello, >>> >>> Upload a picture to a project, or >>> Upload as in import? >>> >>> Pat >>> >>> >>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >> wrote: >>> >>>> Hi, >>>> i cant?t upload project files. Why is that so. >>>> >>>> Regards, >>>> Paulo Torres >>>> >>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>>> 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: Rephrased: Setup a password protected environment for >>>>> Xerte when no LDAP is available (Pat Lockley) >>>>> >>>>> >>>>> ---------------------------------------------------------------------- >>>>> >>>>> Message: 1 >>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>> From: Pat Lockley >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>>> for Xerte when no LDAP is available >>>>> Message-ID: >>>>> Content-Type: text/plain; charset="utf-8" >>>>> >>>>> Hello, >>>>> >>>>> Install the latest XOT >>>>> >>>>> Open auth_config.php and uncomment the static option. >>>>> >>>>> Then go to (I think) library/login/static.php >>>>> >>>>> And look for passwords / usernames >>>>> >>>>> Create a username / password for each lecturer >>>>> >>>>> There isn't a way of setting default access to a specific domain - but >>>> you could alter play.php to limit access. >>>>> >>>>> Not sure XOT can do all of what you want >>>>> >>>>> Pat >>>>> >>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>> wrote: >>>>> >>>>>> Hi All, >>>>>> >>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>> another forum where to post my question? >>>>>> My previous mail did not appear in the mailing list, although I >> receive >>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>> >>>>>> What do I want to accomplish? >>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>> ? Give lectors access to Xerte by using a password, so they >> can >>>> work together on courses >>>>>> ? Preferably at first I only want lectors from the domain >>>> ?KHLim.be? to be granted access to the Xerte website >>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >> using >>>> the IFRAME option. >>>>>> o This way I want to give students access to the courses we created >>>> in Xerte >>>>>> o Preferably I don?t want to setup a username and password for >> every >>>> student. How to best do this? >>>>>> >>>>>> Below you can find information on what I already tried. >>>>>> >>>>>> Any help is greatly appreciated >>>>>> >>>>>> With kind regards >>>>>> Patrick Yperman >>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>> KHLim >>>> Associatie K.U.Leuven >>>>>> Katholieke Hogeschool Limburg >>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>> 3590 Diepenbeek >>>>>> Tel. 011 230 890 - Fax 011 230 899 - >> patrick.yperman at khlim.be >>>> www.khlim.be >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> Van: Yperman Patrick >>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>> Onderwerp: login_library.php is empty >>>>>> >>>>>> Hi All, >>>>>> >>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>> >>>>>> I did a full install from version V 1.8 >>>>>> I followed the instructions in the manual and everything was installed >>>> successfully >>>>>> The Xerte website works. I can create new courses and view them, work >>>> with IFRAME integration in our LMS, etc. >>>>>> >>>>>> The website that hosts xerte doesn?t support LDAP >>>>>> Since I want to setup some password protection for the site a have >>>> setup a password on the /httpdocs (root) folder of my site >>>>>> I created several users, each with their own password. >>>>>> I made sure that the same users were also created in Xerte via >>>> management.php >>>>>> >>>>>> According to the instructions in the installation manual I have to >> work >>>> with switch.php and put in the usernames and passwords >>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>> On the mailing list I found a switch.php and downloaded >>>> it and made the necessary changes >>>>>> Running that file gave a blank screen >>>>>> After some investigation I found that login_library.php >>>> was empty >>>>>> >>>>>> The fact that in the first place there was no switch.php present and >>>> the fact that login_library.php is empty gives me the impression that I >>>> did something wrong or that I use the wrong options. Please advise what >> to >>>> do next. Are there other installation instructions available? >>>>>> >>>>>> What do I want to accomplish? >>>>>> ? Setup Xerte on a webserver >>>>>> ? Give lectors access to Xerte by using a password, so they >> can >>>> work together on courses >>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >> using >>>> the IFRAME option >>>>>> ? We don?t want the courses being publicly available >>>>>> >>>>>> Thanks in advance for helping me ? >>>>>> Patrick Yperman >>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>> KHLim >>>> Associatie K.U.Leuven >>>>>> Katholieke Hogeschool Limburg >>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>> 3590 Diepenbeek >>>>>> Tel. 011 230 890 - Fax 011 230 899 - >> patrick.yperman at khlim.be >>>> www.khlim.be >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> 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: < >>>> >> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>> >>>>> >>>>> ------------------------------ >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> >>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>> ************************************* >>>>> This message and any attachment are intended solely for the addressee >>>> and may contain confidential information. If you have received this >> message >>>> in error, please send it back to me, and immediately delete it. >> Please do >>>> not use, copy or disclose the information contained in this message or >> in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of >> Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>> attachment >>>>> may still contain software viruses which could damage your computer >>>> system: >>>>> you are advised to perform your own checks. Email communications with >> the >>>>> University of Nottingham may be monitored as permitted by UK >> legislation. >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> This message and any attachment are intended solely for the addressee >> and >>>> may contain confidential information. If you have received this message >> in >>>> error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or >> in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of >> Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >> attachment >>>> may still contain software viruses which could damage your computer >> 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/20121227/5f75ad34/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 109, Issue 5 >>> ************************************* >>> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this message >> in error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >> attachment >>> may still contain software viruses which could damage your computer >> system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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: > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 109, Issue 6 > ************************************* > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. From patrick.lockley at googlemail.com Fri Dec 28 23:39:04 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Fri, 28 Dec 2012 23:39:04 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 In-Reply-To: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA@gmail.com> References: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA@gmail.com> Message-ID: Sometimes the mimetype is wrong - what browser are you using and do you know any PHP? On Fri, Dec 28, 2012 at 11:18 PM, Paulo wrote: > Hi, > i?m trying to import a project file to XOT but i get an error. > The file i?m importing is a zip file generated by XOT but i get an error > indicating, > that i can only import zip files. Well the file is a zip one. why do i get > this error? > > Regards, > Paulo Torres > A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Xerte Digest, Vol 109, Issue 5 (Paulo) > > 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Fri, 28 Dec 2012 12:21:36 +0000 > > From: Paulo > > To: xerte at lists.nottingham.ac.uk > > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 > > Message-ID: > > Content-Type: text/plain; charset=iso-8859-1 > > > > Hello, > > i?m uploading as an import of a project file. > > The upload process starts but when it reaches aproximatly 40% it stops. > > > > Regards, > > Paulo Torres > > A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: > > > >> 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: Upload project files error (Pat Lockley) > >> > >> > >> ---------------------------------------------------------------------- > >> > >> Message: 1 > >> Date: Thu, 27 Dec 2012 12:14:19 +0000 > >> From: Pat Lockley > >> To: Xerte discussion list > >> Subject: [Xerte] Re: Upload project files error > >> Message-ID: > >> < > CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> > >> Content-Type: text/plain; charset="iso-8859-1" > >> > >> Hello, > >> > >> Upload a picture to a project, or > >> Upload as in import? > >> > >> Pat > >> > >> > >> On Thu, Dec 27, 2012 at 1:26 AM, Paulo > wrote: > >> > >>> Hi, > >>> i cant?t upload project files. Why is that so. > >>> > >>> Regards, > >>> Paulo Torres > >>> > >>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: > >>> > >>>> 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: Rephrased: Setup a password protected environment for > >>>> Xerte when no LDAP is available (Pat Lockley) > >>>> > >>>> > >>>> ---------------------------------------------------------------------- > >>>> > >>>> Message: 1 > >>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 > >>>> From: Pat Lockley > >>>> To: Xerte discussion list > >>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment > >>>> for Xerte when no LDAP is available > >>>> Message-ID: > >>>> Content-Type: text/plain; charset="utf-8" > >>>> > >>>> Hello, > >>>> > >>>> Install the latest XOT > >>>> > >>>> Open auth_config.php and uncomment the static option. > >>>> > >>>> Then go to (I think) library/login/static.php > >>>> > >>>> And look for passwords / usernames > >>>> > >>>> Create a username / password for each lecturer > >>>> > >>>> There isn't a way of setting default access to a specific domain - but > >>> you could alter play.php to limit access. > >>>> > >>>> Not sure XOT can do all of what you want > >>>> > >>>> Pat > >>>> > >>>> On 26 Dec 2012, at 09:50, Yperman Patrick > >>> wrote: > >>>> > >>>>> Hi All, > >>>>> > >>>>> I?m not sure if I?ve send this message to the right place. Is there > >>> another forum where to post my question? > >>>>> My previous mail did not appear in the mailing list, although I > receive > >>> other mails coming from xerte at lists.nottingham.ac.uk > >>>>> > >>>>> What do I want to accomplish? > >>>>> ? Setup Xerte on a webserver (I already did this) > >>>>> ? Give lectors access to Xerte by using a password, so they > can > >>> work together on courses > >>>>> ? Preferably at first I only want lectors from the domain > >>> ?KHLim.be? to be granted access to the Xerte website > >>>>> ? Integrate these courses in our Blackboard/Toledo LMS by > using > >>> the IFRAME option. > >>>>> o This way I want to give students access to the courses we created > >>> in Xerte > >>>>> o Preferably I don?t want to setup a username and password for > every > >>> student. How to best do this? > >>>>> > >>>>> Below you can find information on what I already tried. > >>>>> > >>>>> Any help is greatly appreciated > >>>>> > >>>>> With kind regards > >>>>> Patrick Yperman > >>>>> Lector Handelswetenschappen en Bedrijfskunde > >>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed > >>>>> KHLim > >>> Associatie K.U.Leuven > >>>>> Katholieke Hogeschool Limburg > >>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > >>> 3590 Diepenbeek > >>>>> Tel. 011 230 890 - Fax 011 230 899 - > patrick.yperman at khlim.be > >>> www.khlim.be > >>>>> > >>>>> > >>>>> > >>>>> > >>>>> Van: Yperman Patrick > >>>>> Verzonden: vrijdag 21 december 2012 9:36 > >>>>> Aan: 'xerte at lists.nottingham.ac.uk' > >>>>> Onderwerp: login_library.php is empty > >>>>> > >>>>> Hi All, > >>>>> > >>>>> I?m trying to setup Xerte on a website and ran into some problems. > >>>>> > >>>>> I did a full install from version V 1.8 > >>>>> I followed the instructions in the manual and everything was > installed > >>> successfully > >>>>> The Xerte website works. I can create new courses and view them, work > >>> with IFRAME integration in our LMS, etc. > >>>>> > >>>>> The website that hosts xerte doesn?t support LDAP > >>>>> Since I want to setup some password protection for the site a have > >>> setup a password on the /httpdocs (root) folder of my site > >>>>> I created several users, each with their own password. > >>>>> I made sure that the same users were also created in Xerte via > >>> management.php > >>>>> > >>>>> According to the instructions in the installation manual I have to > work > >>> with switch.php and put in the usernames and passwords > >>>>> In the version 1.8 which I downloaded there was no switch.php > >>>>> On the mailing list I found a switch.php and downloaded > >>> it and made the necessary changes > >>>>> Running that file gave a blank screen > >>>>> After some investigation I found that login_library.php > >>> was empty > >>>>> > >>>>> The fact that in the first place there was no switch.php present and > >>> the fact that login_library.php is empty gives me the impression that > I > >>> did something wrong or that I use the wrong options. Please advise > what to > >>> do next. Are there other installation instructions available? > >>>>> > >>>>> What do I want to accomplish? > >>>>> ? Setup Xerte on a webserver > >>>>> ? Give lectors access to Xerte by using a password, so they > can > >>> work together on courses > >>>>> ? Integrate these courses in our Blackboard/Toledo LMS by > using > >>> the IFRAME option > >>>>> ? We don?t want the courses being publicly available > >>>>> > >>>>> Thanks in advance for helping me ? > >>>>> Patrick Yperman > >>>>> Lector Handelswetenschappen en Bedrijfskunde > >>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed > >>>>> KHLim > >>> Associatie K.U.Leuven > >>>>> Katholieke Hogeschool Limburg > >>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > >>> 3590 Diepenbeek > >>>>> Tel. 011 230 890 - Fax 011 230 899 - > patrick.yperman at khlim.be > >>> www.khlim.be > >>>>> > >>>>> > >>>>> _______________________________________________ > >>>>> 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: < > >>> > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html > >>>> > >>>> > >>>> ------------------------------ > >>>> > >>>> _______________________________________________ > >>>> Xerte mailing list > >>>> Xerte at lists.nottingham.ac.uk > >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >>>> > >>>> > >>>> End of Xerte Digest, Vol 109, Issue 3 > >>>> ************************************* > >>>> This message and any attachment are intended solely for the addressee > >>> and may contain confidential information. If you have received this > message > >>> in error, please send it back to me, and immediately delete it. > Please do > >>> not use, copy or disclose the information contained in this message or > in > >>> any attachment. Any views or opinions expressed by the author of this > >>> email do not necessarily reflect the views of the University of > Nottingham. > >>>> > >>>> This message has been checked for viruses but the contents of an > >>> attachment > >>>> may still contain software viruses which could damage your computer > >>> system: > >>>> you are advised to perform your own checks. Email communications with > the > >>>> University of Nottingham may be monitored as permitted by UK > legislation. > >>> > >>> > >>> _______________________________________________ > >>> Xerte mailing list > >>> Xerte at lists.nottingham.ac.uk > >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >>> This message and any attachment are intended solely for the addressee > and > >>> may contain confidential information. If you have received this > message in > >>> error, please send it back to me, and immediately delete it. Please > do > >>> not use, copy or disclose the information contained in this message or > in > >>> any attachment. Any views or opinions expressed by the author of this > >>> email do not necessarily reflect the views of the University of > Nottingham. > >>> > >>> This message has been checked for viruses but the contents of an > attachment > >>> may still contain software viruses which could damage your computer > 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/20121227/5f75ad34/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 109, Issue 5 > >> ************************************* > >> This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > >> > >> This message has been checked for viruses but the contents of an > attachment > >> may still contain software viruses which could damage your computer > system: > >> you are advised to perform your own checks. Email communications with > the > >> University of Nottingham may be monitored as permitted by UK > legislation. > > > > > > > > > > ------------------------------ > > > > Message: 2 > > Date: Fri, 28 Dec 2012 13:25:20 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 > > Message-ID: > > pEinepbna2w at mail.gmail.com> > > Content-Type: text/plain; charset="iso-8859-1" > > > > The file is too big I'd guess > > > > Try increasing the file_upload / max_post_size in php.ini > > > > Then restart apache > > > > > > On Fri, Dec 28, 2012 at 12:21 PM, Paulo > wrote: > > > >> Hello, > >> i?m uploading as an import of a project file. > >> The upload process starts but when it reaches aproximatly 40% it stops. > >> > >> Regards, > >> Paulo Torres > >> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: > >> > >>> 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: Upload project files error (Pat Lockley) > >>> > >>> > >>> ---------------------------------------------------------------------- > >>> > >>> Message: 1 > >>> Date: Thu, 27 Dec 2012 12:14:19 +0000 > >>> From: Pat Lockley > >>> To: Xerte discussion list > >>> Subject: [Xerte] Re: Upload project files error > >>> Message-ID: > >>> < > >> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> > >>> Content-Type: text/plain; charset="iso-8859-1" > >>> > >>> Hello, > >>> > >>> Upload a picture to a project, or > >>> Upload as in import? > >>> > >>> Pat > >>> > >>> > >>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo > >> wrote: > >>> > >>>> Hi, > >>>> i cant?t upload project files. Why is that so. > >>>> > >>>> Regards, > >>>> Paulo Torres > >>>> > >>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.ukescreveu: > >>>> > >>>>> 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: Rephrased: Setup a password protected environment for > >>>>> Xerte when no LDAP is available (Pat Lockley) > >>>>> > >>>>> > >>>>> > ---------------------------------------------------------------------- > >>>>> > >>>>> Message: 1 > >>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 > >>>>> From: Pat Lockley > >>>>> To: Xerte discussion list > >>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected > environment > >>>>> for Xerte when no LDAP is available > >>>>> Message-ID: > >>>>> Content-Type: text/plain; charset="utf-8" > >>>>> > >>>>> Hello, > >>>>> > >>>>> Install the latest XOT > >>>>> > >>>>> Open auth_config.php and uncomment the static option. > >>>>> > >>>>> Then go to (I think) library/login/static.php > >>>>> > >>>>> And look for passwords / usernames > >>>>> > >>>>> Create a username / password for each lecturer > >>>>> > >>>>> There isn't a way of setting default access to a specific domain - > but > >>>> you could alter play.php to limit access. > >>>>> > >>>>> Not sure XOT can do all of what you want > >>>>> > >>>>> Pat > >>>>> > >>>>> On 26 Dec 2012, at 09:50, Yperman Patrick > >>>> wrote: > >>>>> > >>>>>> Hi All, > >>>>>> > >>>>>> I?m not sure if I?ve send this message to the right place. Is there > >>>> another forum where to post my question? > >>>>>> My previous mail did not appear in the mailing list, although I > >> receive > >>>> other mails coming from xerte at lists.nottingham.ac.uk > >>>>>> > >>>>>> What do I want to accomplish? > >>>>>> ? Setup Xerte on a webserver (I already did this) > >>>>>> ? Give lectors access to Xerte by using a password, so they > >> can > >>>> work together on courses > >>>>>> ? Preferably at first I only want lectors from the domain > >>>> ?KHLim.be? to be granted access to the Xerte website > >>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by > >> using > >>>> the IFRAME option. > >>>>>> o This way I want to give students access to the courses we > created > >>>> in Xerte > >>>>>> o Preferably I don?t want to setup a username and password for > >> every > >>>> student. How to best do this? > >>>>>> > >>>>>> Below you can find information on what I already tried. > >>>>>> > >>>>>> Any help is greatly appreciated > >>>>>> > >>>>>> With kind regards > >>>>>> Patrick Yperman > >>>>>> Lector Handelswetenschappen en Bedrijfskunde > >>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed > >>>>>> KHLim > >>>> Associatie K.U.Leuven > >>>>>> Katholieke Hogeschool Limburg > >>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > >>>> 3590 Diepenbeek > >>>>>> Tel. 011 230 890 - Fax 011 230 899 - > >> patrick.yperman at khlim.be > >>>> www.khlim.be > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> Van: Yperman Patrick > >>>>>> Verzonden: vrijdag 21 december 2012 9:36 > >>>>>> Aan: 'xerte at lists.nottingham.ac.uk' > >>>>>> Onderwerp: login_library.php is empty > >>>>>> > >>>>>> Hi All, > >>>>>> > >>>>>> I?m trying to setup Xerte on a website and ran into some problems. > >>>>>> > >>>>>> I did a full install from version V 1.8 > >>>>>> I followed the instructions in the manual and everything was > installed > >>>> successfully > >>>>>> The Xerte website works. I can create new courses and view them, > work > >>>> with IFRAME integration in our LMS, etc. > >>>>>> > >>>>>> The website that hosts xerte doesn?t support LDAP > >>>>>> Since I want to setup some password protection for the site a have > >>>> setup a password on the /httpdocs (root) folder of my site > >>>>>> I created several users, each with their own password. > >>>>>> I made sure that the same users were also created in Xerte via > >>>> management.php > >>>>>> > >>>>>> According to the instructions in the installation manual I have to > >> work > >>>> with switch.php and put in the usernames and passwords > >>>>>> In the version 1.8 which I downloaded there was no switch.php > >>>>>> On the mailing list I found a switch.php and downloaded > >>>> it and made the necessary changes > >>>>>> Running that file gave a blank screen > >>>>>> After some investigation I found that login_library.php > >>>> was empty > >>>>>> > >>>>>> The fact that in the first place there was no switch.php present and > >>>> the fact that login_library.php is empty gives me the impression > that I > >>>> did something wrong or that I use the wrong options. Please advise > what > >> to > >>>> do next. Are there other installation instructions available? > >>>>>> > >>>>>> What do I want to accomplish? > >>>>>> ? Setup Xerte on a webserver > >>>>>> ? Give lectors access to Xerte by using a password, so they > >> can > >>>> work together on courses > >>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by > >> using > >>>> the IFRAME option > >>>>>> ? We don?t want the courses being publicly available > >>>>>> > >>>>>> Thanks in advance for helping me ? > >>>>>> Patrick Yperman > >>>>>> Lector Handelswetenschappen en Bedrijfskunde > >>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed > >>>>>> KHLim > >>>> Associatie K.U.Leuven > >>>>>> Katholieke Hogeschool Limburg > >>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, > >>>> 3590 Diepenbeek > >>>>>> Tel. 011 230 890 - Fax 011 230 899 - > >> patrick.yperman at khlim.be > >>>> www.khlim.be > >>>>>> > >>>>>> > >>>>>> _______________________________________________ > >>>>>> 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: < > >>>> > >> > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html > >>>>> > >>>>> > >>>>> ------------------------------ > >>>>> > >>>>> _______________________________________________ > >>>>> Xerte mailing list > >>>>> Xerte at lists.nottingham.ac.uk > >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >>>>> > >>>>> > >>>>> End of Xerte Digest, Vol 109, Issue 3 > >>>>> ************************************* > >>>>> This message and any attachment are intended solely for the addressee > >>>> and may contain confidential information. If you have received this > >> message > >>>> in error, please send it back to me, and immediately delete it. > >> Please do > >>>> not use, copy or disclose the information contained in this message or > >> in > >>>> any attachment. Any views or opinions expressed by the author of this > >>>> email do not necessarily reflect the views of the University of > >> Nottingham. > >>>>> > >>>>> This message has been checked for viruses but the contents of an > >>>> attachment > >>>>> may still contain software viruses which could damage your computer > >>>> system: > >>>>> you are advised to perform your own checks. Email communications with > >> the > >>>>> University of Nottingham may be monitored as permitted by UK > >> legislation. > >>>> > >>>> > >>>> _______________________________________________ > >>>> Xerte mailing list > >>>> Xerte at lists.nottingham.ac.uk > >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >>>> This message and any attachment are intended solely for the addressee > >> and > >>>> may contain confidential information. If you have received this > message > >> in > >>>> error, please send it back to me, and immediately delete it. Please > do > >>>> not use, copy or disclose the information contained in this message or > >> in > >>>> any attachment. Any views or opinions expressed by the author of this > >>>> email do not necessarily reflect the views of the University of > >> Nottingham. > >>>> > >>>> This message has been checked for viruses but the contents of an > >> attachment > >>>> may still contain software viruses which could damage your computer > >> 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/20121227/5f75ad34/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 109, Issue 5 > >>> ************************************* > >>> This message and any attachment are intended solely for the addressee > >> and may contain confidential information. If you have received this > message > >> in error, please send it back to me, and immediately delete it. > Please do > >> not use, copy or disclose the information contained in this message or > in > >> any attachment. Any views or opinions expressed by the author of this > >> email do not necessarily reflect the views of the University of > Nottingham. > >>> > >>> This message has been checked for viruses but the contents of an > >> attachment > >>> may still contain software viruses which could damage your computer > >> system: > >>> you are advised to perform your own checks. Email communications with > the > >>> University of Nottingham may be monitored as permitted by UK > legislation. > >> > >> > >> _______________________________________________ > >> Xerte mailing list > >> Xerte at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte > >> This message and any attachment are intended solely for the addressee > and > >> may contain confidential information. If you have received this message > in > >> error, please send it back to me, and immediately delete it. Please do > >> not use, copy or disclose the information contained in this message or > in > >> any attachment. Any views or opinions expressed by the author of this > >> email do not necessarily reflect the views of the University of > Nottingham. > >> > >> This message has been checked for viruses but the contents of an > attachment > >> may still contain software viruses which could damage your computer > 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/20121228/f329c56d/attachment.html > > > > > > ------------------------------ > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > > > End of Xerte Digest, Vol 109, Issue 6 > > ************************************* > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment > > may still contain software viruses which could damage your computer > system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 paulo.fm.torres at gmail.com Sat Dec 29 04:22:22 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Sat, 29 Dec 2012 04:22:22 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 7 In-Reply-To: References: Message-ID: Hi, trying to upload a zip file generated by XOT i get this error: I?d like some help here. It?s realy important that i can upload this file. Regards, Paulo Torres A 28/12/2012, ?s 23:40, xerte-request at lists.nottingham.ac.uk escreveu: > 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: Xerte Digest, Vol 109, Issue 6 (Paulo) > 2. Re: Xerte Digest, Vol 109, Issue 6 (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 28 Dec 2012 23:18:52 +0000 > From: Paulo > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 > Message-ID: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA at gmail.com> > Content-Type: text/plain; charset=iso-8859-1 > > Hi, > i?m trying to import a project file to XOT but i get an error. > The file i?m importing is a zip file generated by XOT but i get an error indicating, > that i can only import zip files. Well the file is a zip one. why do i get this error? > > Regards, > Paulo Torres > A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: > >> 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: Xerte Digest, Vol 109, Issue 5 (Paulo) >> 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Fri, 28 Dec 2012 12:21:36 +0000 >> From: Paulo >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >> Message-ID: >> Content-Type: text/plain; charset=iso-8859-1 >> >> Hello, >> i?m uploading as an import of a project file. >> The upload process starts but when it reaches aproximatly 40% it stops. >> >> Regards, >> Paulo Torres >> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >> >>> 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: Upload project files error (Pat Lockley) >>> >>> >>> ---------------------------------------------------------------------- >>> >>> Message: 1 >>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>> From: Pat Lockley >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Upload project files error >>> Message-ID: >>> >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> Hello, >>> >>> Upload a picture to a project, or >>> Upload as in import? >>> >>> Pat >>> >>> >>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: >>> >>>> Hi, >>>> i cant?t upload project files. Why is that so. >>>> >>>> Regards, >>>> Paulo Torres >>>> >>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>>> 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: Rephrased: Setup a password protected environment for >>>>> Xerte when no LDAP is available (Pat Lockley) >>>>> >>>>> >>>>> ---------------------------------------------------------------------- >>>>> >>>>> Message: 1 >>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>> From: Pat Lockley >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>>> for Xerte when no LDAP is available >>>>> Message-ID: >>>>> Content-Type: text/plain; charset="utf-8" >>>>> >>>>> Hello, >>>>> >>>>> Install the latest XOT >>>>> >>>>> Open auth_config.php and uncomment the static option. >>>>> >>>>> Then go to (I think) library/login/static.php >>>>> >>>>> And look for passwords / usernames >>>>> >>>>> Create a username / password for each lecturer >>>>> >>>>> There isn't a way of setting default access to a specific domain - but >>>> you could alter play.php to limit access. >>>>> >>>>> Not sure XOT can do all of what you want >>>>> >>>>> Pat >>>>> >>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>> wrote: >>>>> >>>>>> Hi All, >>>>>> >>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>> another forum where to post my question? >>>>>> My previous mail did not appear in the mailing list, although I receive >>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>> >>>>>> What do I want to accomplish? >>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>> ? Give lectors access to Xerte by using a password, so they can >>>> work together on courses >>>>>> ? Preferably at first I only want lectors from the domain >>>> ?KHLim.be? to be granted access to the Xerte website >>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>>> the IFRAME option. >>>>>> o This way I want to give students access to the courses we created >>>> in Xerte >>>>>> o Preferably I don?t want to setup a username and password for every >>>> student. How to best do this? >>>>>> >>>>>> Below you can find information on what I already tried. >>>>>> >>>>>> Any help is greatly appreciated >>>>>> >>>>>> With kind regards >>>>>> Patrick Yperman >>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>> KHLim >>>> Associatie K.U.Leuven >>>>>> Katholieke Hogeschool Limburg >>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>> 3590 Diepenbeek >>>>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>>> www.khlim.be >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> Van: Yperman Patrick >>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>> Onderwerp: login_library.php is empty >>>>>> >>>>>> Hi All, >>>>>> >>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>> >>>>>> I did a full install from version V 1.8 >>>>>> I followed the instructions in the manual and everything was installed >>>> successfully >>>>>> The Xerte website works. I can create new courses and view them, work >>>> with IFRAME integration in our LMS, etc. >>>>>> >>>>>> The website that hosts xerte doesn?t support LDAP >>>>>> Since I want to setup some password protection for the site a have >>>> setup a password on the /httpdocs (root) folder of my site >>>>>> I created several users, each with their own password. >>>>>> I made sure that the same users were also created in Xerte via >>>> management.php >>>>>> >>>>>> According to the instructions in the installation manual I have to work >>>> with switch.php and put in the usernames and passwords >>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>> On the mailing list I found a switch.php and downloaded >>>> it and made the necessary changes >>>>>> Running that file gave a blank screen >>>>>> After some investigation I found that login_library.php >>>> was empty >>>>>> >>>>>> The fact that in the first place there was no switch.php present and >>>> the fact that login_library.php is empty gives me the impression that I >>>> did something wrong or that I use the wrong options. Please advise what to >>>> do next. Are there other installation instructions available? >>>>>> >>>>>> What do I want to accomplish? >>>>>> ? Setup Xerte on a webserver >>>>>> ? Give lectors access to Xerte by using a password, so they can >>>> work together on courses >>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>>> the IFRAME option >>>>>> ? We don?t want the courses being publicly available >>>>>> >>>>>> Thanks in advance for helping me ? >>>>>> Patrick Yperman >>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>> KHLim >>>> Associatie K.U.Leuven >>>>>> Katholieke Hogeschool Limburg >>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>> 3590 Diepenbeek >>>>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>>> www.khlim.be >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> 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: < >>>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>> >>>>> >>>>> ------------------------------ >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> >>>>> >>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>> ************************************* >>>>> This message and any attachment are intended solely for the addressee >>>> and may contain confidential information. If you have received this message >>>> in error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>> attachment >>>>> may still contain software viruses which could damage your computer >>>> system: >>>>> you are advised to perform your own checks. Email communications with the >>>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> This message and any attachment are intended solely for the addressee and >>>> may contain confidential information. If you have received this message in >>>> error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer 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: >>> >>> ------------------------------ >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> End of Xerte Digest, Vol 109, Issue 5 >>> ************************************* >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >> ------------------------------ >> >> Message: 2 >> Date: Fri, 28 Dec 2012 13:25:20 +0000 >> From: Pat Lockley >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >> Message-ID: >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> The file is too big I'd guess >> >> Try increasing the file_upload / max_post_size in php.ini >> >> Then restart apache >> >> >> On Fri, Dec 28, 2012 at 12:21 PM, Paulo wrote: >> >>> Hello, >>> i?m uploading as an import of a project file. >>> The upload process starts but when it reaches aproximatly 40% it stops. >>> >>> Regards, >>> Paulo Torres >>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>>> 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: Upload project files error (Pat Lockley) >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> Message: 1 >>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>> From: Pat Lockley >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Upload project files error >>>> Message-ID: >>>> < >>> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>>> Content-Type: text/plain; charset="iso-8859-1" >>>> >>>> Hello, >>>> >>>> Upload a picture to a project, or >>>> Upload as in import? >>>> >>>> Pat >>>> >>>> >>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >>> wrote: >>>> >>>>> Hi, >>>>> i cant?t upload project files. Why is that so. >>>>> >>>>> Regards, >>>>> Paulo Torres >>>>> >>>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>>> >>>>>> 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: Rephrased: Setup a password protected environment for >>>>>> Xerte when no LDAP is available (Pat Lockley) >>>>>> >>>>>> >>>>>> ---------------------------------------------------------------------- >>>>>> >>>>>> Message: 1 >>>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>>> From: Pat Lockley >>>>>> To: Xerte discussion list >>>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>>>> for Xerte when no LDAP is available >>>>>> Message-ID: >>>>>> Content-Type: text/plain; charset="utf-8" >>>>>> >>>>>> Hello, >>>>>> >>>>>> Install the latest XOT >>>>>> >>>>>> Open auth_config.php and uncomment the static option. >>>>>> >>>>>> Then go to (I think) library/login/static.php >>>>>> >>>>>> And look for passwords / usernames >>>>>> >>>>>> Create a username / password for each lecturer >>>>>> >>>>>> There isn't a way of setting default access to a specific domain - but >>>>> you could alter play.php to limit access. >>>>>> >>>>>> Not sure XOT can do all of what you want >>>>>> >>>>>> Pat >>>>>> >>>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>>> wrote: >>>>>> >>>>>>> Hi All, >>>>>>> >>>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>>> another forum where to post my question? >>>>>>> My previous mail did not appear in the mailing list, although I >>> receive >>>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>>> >>>>>>> What do I want to accomplish? >>>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>>> ? Give lectors access to Xerte by using a password, so they >>> can >>>>> work together on courses >>>>>>> ? Preferably at first I only want lectors from the domain >>>>> ?KHLim.be? to be granted access to the Xerte website >>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>> using >>>>> the IFRAME option. >>>>>>> o This way I want to give students access to the courses we created >>>>> in Xerte >>>>>>> o Preferably I don?t want to setup a username and password for >>> every >>>>> student. How to best do this? >>>>>>> >>>>>>> Below you can find information on what I already tried. >>>>>>> >>>>>>> Any help is greatly appreciated >>>>>>> >>>>>>> With kind regards >>>>>>> Patrick Yperman >>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>> KHLim >>>>> Associatie K.U.Leuven >>>>>>> Katholieke Hogeschool Limburg >>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>> 3590 Diepenbeek >>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>> patrick.yperman at khlim.be >>>>> www.khlim.be >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> Van: Yperman Patrick >>>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>>> Onderwerp: login_library.php is empty >>>>>>> >>>>>>> Hi All, >>>>>>> >>>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>>> >>>>>>> I did a full install from version V 1.8 >>>>>>> I followed the instructions in the manual and everything was installed >>>>> successfully >>>>>>> The Xerte website works. I can create new courses and view them, work >>>>> with IFRAME integration in our LMS, etc. >>>>>>> >>>>>>> The website that hosts xerte doesn?t support LDAP >>>>>>> Since I want to setup some password protection for the site a have >>>>> setup a password on the /httpdocs (root) folder of my site >>>>>>> I created several users, each with their own password. >>>>>>> I made sure that the same users were also created in Xerte via >>>>> management.php >>>>>>> >>>>>>> According to the instructions in the installation manual I have to >>> work >>>>> with switch.php and put in the usernames and passwords >>>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>>> On the mailing list I found a switch.php and downloaded >>>>> it and made the necessary changes >>>>>>> Running that file gave a blank screen >>>>>>> After some investigation I found that login_library.php >>>>> was empty >>>>>>> >>>>>>> The fact that in the first place there was no switch.php present and >>>>> the fact that login_library.php is empty gives me the impression that I >>>>> did something wrong or that I use the wrong options. Please advise what >>> to >>>>> do next. Are there other installation instructions available? >>>>>>> >>>>>>> What do I want to accomplish? >>>>>>> ? Setup Xerte on a webserver >>>>>>> ? Give lectors access to Xerte by using a password, so they >>> can >>>>> work together on courses >>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>> using >>>>> the IFRAME option >>>>>>> ? We don?t want the courses being publicly available >>>>>>> >>>>>>> Thanks in advance for helping me ? >>>>>>> Patrick Yperman >>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>> KHLim >>>>> Associatie K.U.Leuven >>>>>>> Katholieke Hogeschool Limburg >>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>> 3590 Diepenbeek >>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>> patrick.yperman at khlim.be >>>>> www.khlim.be >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> 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: < >>>>> >>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>>> >>>>>> >>>>>> ------------------------------ >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> >>>>>> >>>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>>> ************************************* >>>>>> This message and any attachment are intended solely for the addressee >>>>> and may contain confidential information. If you have received this >>> message >>>>> in error, please send it back to me, and immediately delete it. >>> Please do >>>>> not use, copy or disclose the information contained in this message or >>> in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of >>> Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>>> attachment >>>>>> may still contain software viruses which could damage your computer >>>>> system: >>>>>> you are advised to perform your own checks. Email communications with >>> the >>>>>> University of Nottingham may be monitored as permitted by UK >>> legislation. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> This message and any attachment are intended solely for the addressee >>> and >>>>> may contain confidential information. If you have received this message >>> in >>>>> error, please send it back to me, and immediately delete it. Please do >>>>> not use, copy or disclose the information contained in this message or >>> in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of >>> Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>> attachment >>>>> may still contain software viruses which could damage your computer >>> 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/20121227/5f75ad34/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 109, Issue 5 >>>> ************************************* >>>> This message and any attachment are intended solely for the addressee >>> and may contain confidential information. If you have received this message >>> in error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>> attachment >>>> may still contain software viruses which could damage your computer >>> system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer 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: >> >> ------------------------------ >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> End of Xerte Digest, Vol 109, Issue 6 >> ************************************* >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. > > > > > ------------------------------ > > Message: 2 > Date: Fri, 28 Dec 2012 23:39:04 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Sometimes the mimetype is wrong - what browser are you using and do you > know any PHP? > > > On Fri, Dec 28, 2012 at 11:18 PM, Paulo wrote: > >> Hi, >> i?m trying to import a project file to XOT but i get an error. >> The file i?m importing is a zip file generated by XOT but i get an error >> indicating, >> that i can only import zip files. Well the file is a zip one. why do i get >> this error? >> >> Regards, >> Paulo Torres >> A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: >> >>> 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: Xerte Digest, Vol 109, Issue 5 (Paulo) >>> 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) >>> >>> >>> ---------------------------------------------------------------------- >>> >>> Message: 1 >>> Date: Fri, 28 Dec 2012 12:21:36 +0000 >>> From: Paulo >>> To: xerte at lists.nottingham.ac.uk >>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>> Message-ID: >>> Content-Type: text/plain; charset=iso-8859-1 >>> >>> Hello, >>> i?m uploading as an import of a project file. >>> The upload process starts but when it reaches aproximatly 40% it stops. >>> >>> Regards, >>> Paulo Torres >>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>>> 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: Upload project files error (Pat Lockley) >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> Message: 1 >>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>> From: Pat Lockley >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Upload project files error >>>> Message-ID: >>>> < >> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>>> Content-Type: text/plain; charset="iso-8859-1" >>>> >>>> Hello, >>>> >>>> Upload a picture to a project, or >>>> Upload as in import? >>>> >>>> Pat >>>> >>>> >>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >> wrote: >>>> >>>>> Hi, >>>>> i cant?t upload project files. Why is that so. >>>>> >>>>> Regards, >>>>> Paulo Torres >>>>> >>>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>>> >>>>>> 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: Rephrased: Setup a password protected environment for >>>>>> Xerte when no LDAP is available (Pat Lockley) >>>>>> >>>>>> >>>>>> ---------------------------------------------------------------------- >>>>>> >>>>>> Message: 1 >>>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>>> From: Pat Lockley >>>>>> To: Xerte discussion list >>>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>>>> for Xerte when no LDAP is available >>>>>> Message-ID: >>>>>> Content-Type: text/plain; charset="utf-8" >>>>>> >>>>>> Hello, >>>>>> >>>>>> Install the latest XOT >>>>>> >>>>>> Open auth_config.php and uncomment the static option. >>>>>> >>>>>> Then go to (I think) library/login/static.php >>>>>> >>>>>> And look for passwords / usernames >>>>>> >>>>>> Create a username / password for each lecturer >>>>>> >>>>>> There isn't a way of setting default access to a specific domain - but >>>>> you could alter play.php to limit access. >>>>>> >>>>>> Not sure XOT can do all of what you want >>>>>> >>>>>> Pat >>>>>> >>>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>>> wrote: >>>>>> >>>>>>> Hi All, >>>>>>> >>>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>>> another forum where to post my question? >>>>>>> My previous mail did not appear in the mailing list, although I >> receive >>>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>>> >>>>>>> What do I want to accomplish? >>>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>>> ? Give lectors access to Xerte by using a password, so they >> can >>>>> work together on courses >>>>>>> ? Preferably at first I only want lectors from the domain >>>>> ?KHLim.be? to be granted access to the Xerte website >>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >> using >>>>> the IFRAME option. >>>>>>> o This way I want to give students access to the courses we created >>>>> in Xerte >>>>>>> o Preferably I don?t want to setup a username and password for >> every >>>>> student. How to best do this? >>>>>>> >>>>>>> Below you can find information on what I already tried. >>>>>>> >>>>>>> Any help is greatly appreciated >>>>>>> >>>>>>> With kind regards >>>>>>> Patrick Yperman >>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>> KHLim >>>>> Associatie K.U.Leuven >>>>>>> Katholieke Hogeschool Limburg >>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>> 3590 Diepenbeek >>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >> patrick.yperman at khlim.be >>>>> www.khlim.be >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> Van: Yperman Patrick >>>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>>> Onderwerp: login_library.php is empty >>>>>>> >>>>>>> Hi All, >>>>>>> >>>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>>> >>>>>>> I did a full install from version V 1.8 >>>>>>> I followed the instructions in the manual and everything was >> installed >>>>> successfully >>>>>>> The Xerte website works. I can create new courses and view them, work >>>>> with IFRAME integration in our LMS, etc. >>>>>>> >>>>>>> The website that hosts xerte doesn?t support LDAP >>>>>>> Since I want to setup some password protection for the site a have >>>>> setup a password on the /httpdocs (root) folder of my site >>>>>>> I created several users, each with their own password. >>>>>>> I made sure that the same users were also created in Xerte via >>>>> management.php >>>>>>> >>>>>>> According to the instructions in the installation manual I have to >> work >>>>> with switch.php and put in the usernames and passwords >>>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>>> On the mailing list I found a switch.php and downloaded >>>>> it and made the necessary changes >>>>>>> Running that file gave a blank screen >>>>>>> After some investigation I found that login_library.php >>>>> was empty >>>>>>> >>>>>>> The fact that in the first place there was no switch.php present and >>>>> the fact that login_library.php is empty gives me the impression that >> I >>>>> did something wrong or that I use the wrong options. Please advise >> what to >>>>> do next. Are there other installation instructions available? >>>>>>> >>>>>>> What do I want to accomplish? >>>>>>> ? Setup Xerte on a webserver >>>>>>> ? Give lectors access to Xerte by using a password, so they >> can >>>>> work together on courses >>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >> using >>>>> the IFRAME option >>>>>>> ? We don?t want the courses being publicly available >>>>>>> >>>>>>> Thanks in advance for helping me ? >>>>>>> Patrick Yperman >>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>> KHLim >>>>> Associatie K.U.Leuven >>>>>>> Katholieke Hogeschool Limburg >>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>> 3590 Diepenbeek >>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >> patrick.yperman at khlim.be >>>>> www.khlim.be >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> 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: < >>>>> >> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>>> >>>>>> >>>>>> ------------------------------ >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> >>>>>> >>>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>>> ************************************* >>>>>> This message and any attachment are intended solely for the addressee >>>>> and may contain confidential information. If you have received this >> message >>>>> in error, please send it back to me, and immediately delete it. >> Please do >>>>> not use, copy or disclose the information contained in this message or >> in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of >> Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>>> attachment >>>>>> may still contain software viruses which could damage your computer >>>>> system: >>>>>> you are advised to perform your own checks. Email communications with >> the >>>>>> University of Nottingham may be monitored as permitted by UK >> legislation. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> This message and any attachment are intended solely for the addressee >> and >>>>> may contain confidential information. If you have received this >> message in >>>>> error, please send it back to me, and immediately delete it. Please >> do >>>>> not use, copy or disclose the information contained in this message or >> in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of >> Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >> attachment >>>>> may still contain software viruses which could damage your computer >> 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/20121227/5f75ad34/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 109, Issue 5 >>>> ************************************* >>>> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this message >> in error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >> attachment >>>> may still contain software viruses which could damage your computer >> system: >>>> you are advised to perform your own checks. Email communications with >> the >>>> University of Nottingham may be monitored as permitted by UK >> legislation. >>> >>> >>> >>> >>> ------------------------------ >>> >>> Message: 2 >>> Date: Fri, 28 Dec 2012 13:25:20 +0000 >>> From: Pat Lockley >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>> Message-ID: >>> > pEinepbna2w at mail.gmail.com> >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> The file is too big I'd guess >>> >>> Try increasing the file_upload / max_post_size in php.ini >>> >>> Then restart apache >>> >>> >>> On Fri, Dec 28, 2012 at 12:21 PM, Paulo >> wrote: >>> >>>> Hello, >>>> i?m uploading as an import of a project file. >>>> The upload process starts but when it reaches aproximatly 40% it stops. >>>> >>>> Regards, >>>> Paulo Torres >>>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>>> 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: Upload project files error (Pat Lockley) >>>>> >>>>> >>>>> ---------------------------------------------------------------------- >>>>> >>>>> Message: 1 >>>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>>> From: Pat Lockley >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Upload project files error >>>>> Message-ID: >>>>> < >>>> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>>>> Content-Type: text/plain; charset="iso-8859-1" >>>>> >>>>> Hello, >>>>> >>>>> Upload a picture to a project, or >>>>> Upload as in import? >>>>> >>>>> Pat >>>>> >>>>> >>>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >>>> wrote: >>>>> >>>>>> Hi, >>>>>> i cant?t upload project files. Why is that so. >>>>>> >>>>>> Regards, >>>>>> Paulo Torres >>>>>> >>>>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.ukescreveu: >>>>>> >>>>>>> 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: Rephrased: Setup a password protected environment for >>>>>>> Xerte when no LDAP is available (Pat Lockley) >>>>>>> >>>>>>> >>>>>>> >> ---------------------------------------------------------------------- >>>>>>> >>>>>>> Message: 1 >>>>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>>>> From: Pat Lockley >>>>>>> To: Xerte discussion list >>>>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected >> environment >>>>>>> for Xerte when no LDAP is available >>>>>>> Message-ID: >>>>>>> Content-Type: text/plain; charset="utf-8" >>>>>>> >>>>>>> Hello, >>>>>>> >>>>>>> Install the latest XOT >>>>>>> >>>>>>> Open auth_config.php and uncomment the static option. >>>>>>> >>>>>>> Then go to (I think) library/login/static.php >>>>>>> >>>>>>> And look for passwords / usernames >>>>>>> >>>>>>> Create a username / password for each lecturer >>>>>>> >>>>>>> There isn't a way of setting default access to a specific domain - >> but >>>>>> you could alter play.php to limit access. >>>>>>> >>>>>>> Not sure XOT can do all of what you want >>>>>>> >>>>>>> Pat >>>>>>> >>>>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>>>> wrote: >>>>>>> >>>>>>>> Hi All, >>>>>>>> >>>>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>>>> another forum where to post my question? >>>>>>>> My previous mail did not appear in the mailing list, although I >>>> receive >>>>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>>>> >>>>>>>> What do I want to accomplish? >>>>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>>>> ? Give lectors access to Xerte by using a password, so they >>>> can >>>>>> work together on courses >>>>>>>> ? Preferably at first I only want lectors from the domain >>>>>> ?KHLim.be? to be granted access to the Xerte website >>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>> using >>>>>> the IFRAME option. >>>>>>>> o This way I want to give students access to the courses we >> created >>>>>> in Xerte >>>>>>>> o Preferably I don?t want to setup a username and password for >>>> every >>>>>> student. How to best do this? >>>>>>>> >>>>>>>> Below you can find information on what I already tried. >>>>>>>> >>>>>>>> Any help is greatly appreciated >>>>>>>> >>>>>>>> With kind regards >>>>>>>> Patrick Yperman >>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>> KHLim >>>>>> Associatie K.U.Leuven >>>>>>>> Katholieke Hogeschool Limburg >>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>> 3590 Diepenbeek >>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>>> patrick.yperman at khlim.be >>>>>> www.khlim.be >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> Van: Yperman Patrick >>>>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>>>> Onderwerp: login_library.php is empty >>>>>>>> >>>>>>>> Hi All, >>>>>>>> >>>>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>>>> >>>>>>>> I did a full install from version V 1.8 >>>>>>>> I followed the instructions in the manual and everything was >> installed >>>>>> successfully >>>>>>>> The Xerte website works. I can create new courses and view them, >> work >>>>>> with IFRAME integration in our LMS, etc. >>>>>>>> >>>>>>>> The website that hosts xerte doesn?t support LDAP >>>>>>>> Since I want to setup some password protection for the site a have >>>>>> setup a password on the /httpdocs (root) folder of my site >>>>>>>> I created several users, each with their own password. >>>>>>>> I made sure that the same users were also created in Xerte via >>>>>> management.php >>>>>>>> >>>>>>>> According to the instructions in the installation manual I have to >>>> work >>>>>> with switch.php and put in the usernames and passwords >>>>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>>>> On the mailing list I found a switch.php and downloaded >>>>>> it and made the necessary changes >>>>>>>> Running that file gave a blank screen >>>>>>>> After some investigation I found that login_library.php >>>>>> was empty >>>>>>>> >>>>>>>> The fact that in the first place there was no switch.php present and >>>>>> the fact that login_library.php is empty gives me the impression >> that I >>>>>> did something wrong or that I use the wrong options. Please advise >> what >>>> to >>>>>> do next. Are there other installation instructions available? >>>>>>>> >>>>>>>> What do I want to accomplish? >>>>>>>> ? Setup Xerte on a webserver >>>>>>>> ? Give lectors access to Xerte by using a password, so they >>>> can >>>>>> work together on courses >>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>> using >>>>>> the IFRAME option >>>>>>>> ? We don?t want the courses being publicly available >>>>>>>> >>>>>>>> Thanks in advance for helping me ? >>>>>>>> Patrick Yperman >>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>> KHLim >>>>>> Associatie K.U.Leuven >>>>>>>> Katholieke Hogeschool Limburg >>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>> 3590 Diepenbeek >>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>>> patrick.yperman at khlim.be >>>>>> www.khlim.be >>>>>>>> >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> 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: < >>>>>> >>>> >> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>>>> >>>>>>> >>>>>>> ------------------------------ >>>>>>> >>>>>>> _______________________________________________ >>>>>>> Xerte mailing list >>>>>>> Xerte at lists.nottingham.ac.uk >>>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>>> >>>>>>> >>>>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>>>> ************************************* >>>>>>> This message and any attachment are intended solely for the addressee >>>>>> and may contain confidential information. If you have received this >>>> message >>>>>> in error, please send it back to me, and immediately delete it. >>>> Please do >>>>>> not use, copy or disclose the information contained in this message or >>>> in >>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>> email do not necessarily reflect the views of the University of >>>> Nottingham. >>>>>>> >>>>>>> This message has been checked for viruses but the contents of an >>>>>> attachment >>>>>>> may still contain software viruses which could damage your computer >>>>>> system: >>>>>>> you are advised to perform your own checks. Email communications with >>>> the >>>>>>> University of Nottingham may be monitored as permitted by UK >>>> legislation. >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> This message and any attachment are intended solely for the addressee >>>> and >>>>>> may contain confidential information. If you have received this >> message >>>> in >>>>>> error, please send it back to me, and immediately delete it. Please >> do >>>>>> not use, copy or disclose the information contained in this message or >>>> in >>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>> email do not necessarily reflect the views of the University of >>>> Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>> attachment >>>>>> may still contain software viruses which could damage your computer >>>> 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/20121227/5f75ad34/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 109, Issue 5 >>>>> ************************************* >>>>> This message and any attachment are intended solely for the addressee >>>> and may contain confidential information. If you have received this >> message >>>> in error, please send it back to me, and immediately delete it. >> Please do >>>> not use, copy or disclose the information contained in this message or >> in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of >> Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>> attachment >>>>> may still contain software viruses which could damage your computer >>>> system: >>>>> you are advised to perform your own checks. Email communications with >> the >>>>> University of Nottingham may be monitored as permitted by UK >> legislation. >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> This message and any attachment are intended solely for the addressee >> and >>>> may contain confidential information. If you have received this message >> in >>>> error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or >> in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of >> Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >> attachment >>>> may still contain software viruses which could damage your computer >> 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/20121228/f329c56d/attachment.html >>> >>> >>> ------------------------------ >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> End of Xerte Digest, Vol 109, Issue 6 >>> ************************************* >>> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this message >> in error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an >> attachment >>> may still contain software viruses which could damage your computer >> system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer 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: > > ------------------------------ > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > End of Xerte Digest, Vol 109, 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: xerte.tiff Type: image/tiff Size: 671692 bytes Desc: not available URL: From paulo.fm.torres at gmail.com Sat Dec 29 04:27:04 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Sat, 29 Dec 2012 04:27:04 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 8 In-Reply-To: References: Message-ID: <43695699-8610-433F-9BBF-CEDE0455E8A2@gmail.com> > Hi, > trying to upload a zip file generated by XOT i get this error: > > "You can only upload zip files" > > > I?d like some help here. It?s realy important that i can upload this file. > > Regards, > Paulo Torres A 29/12/2012, ?s 04:22, xerte-request at lists.nottingham.ac.uk escreveu: > 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: Xerte Digest, Vol 109, Issue 7 (Paulo) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 29 Dec 2012 04:22:22 +0000 > From: Paulo > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 7 > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > trying to upload a zip file generated by XOT i get this error: > > > > > I?d like some help here. It?s realy important that i can upload this file. > > Regards, > Paulo Torres > > > A 28/12/2012, ?s 23:40, xerte-request at lists.nottingham.ac.uk escreveu: > >> 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: Xerte Digest, Vol 109, Issue 6 (Paulo) >> 2. Re: Xerte Digest, Vol 109, Issue 6 (Pat Lockley) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Fri, 28 Dec 2012 23:18:52 +0000 >> From: Paulo >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 >> Message-ID: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA at gmail.com> >> Content-Type: text/plain; charset=iso-8859-1 >> >> Hi, >> i?m trying to import a project file to XOT but i get an error. >> The file i?m importing is a zip file generated by XOT but i get an error indicating, >> that i can only import zip files. Well the file is a zip one. why do i get this error? >> >> Regards, >> Paulo Torres >> A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: >> >>> 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: Xerte Digest, Vol 109, Issue 5 (Paulo) >>> 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) >>> >>> >>> ---------------------------------------------------------------------- >>> >>> Message: 1 >>> Date: Fri, 28 Dec 2012 12:21:36 +0000 >>> From: Paulo >>> To: xerte at lists.nottingham.ac.uk >>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>> Message-ID: >>> Content-Type: text/plain; charset=iso-8859-1 >>> >>> Hello, >>> i?m uploading as an import of a project file. >>> The upload process starts but when it reaches aproximatly 40% it stops. >>> >>> Regards, >>> Paulo Torres >>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>>> 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: Upload project files error (Pat Lockley) >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> Message: 1 >>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>> From: Pat Lockley >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Upload project files error >>>> Message-ID: >>>> >>>> Content-Type: text/plain; charset="iso-8859-1" >>>> >>>> Hello, >>>> >>>> Upload a picture to a project, or >>>> Upload as in import? >>>> >>>> Pat >>>> >>>> >>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: >>>> >>>>> Hi, >>>>> i cant?t upload project files. Why is that so. >>>>> >>>>> Regards, >>>>> Paulo Torres >>>>> >>>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>>> >>>>>> 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: Rephrased: Setup a password protected environment for >>>>>> Xerte when no LDAP is available (Pat Lockley) >>>>>> >>>>>> >>>>>> ---------------------------------------------------------------------- >>>>>> >>>>>> Message: 1 >>>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>>> From: Pat Lockley >>>>>> To: Xerte discussion list >>>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>>>> for Xerte when no LDAP is available >>>>>> Message-ID: >>>>>> Content-Type: text/plain; charset="utf-8" >>>>>> >>>>>> Hello, >>>>>> >>>>>> Install the latest XOT >>>>>> >>>>>> Open auth_config.php and uncomment the static option. >>>>>> >>>>>> Then go to (I think) library/login/static.php >>>>>> >>>>>> And look for passwords / usernames >>>>>> >>>>>> Create a username / password for each lecturer >>>>>> >>>>>> There isn't a way of setting default access to a specific domain - but >>>>> you could alter play.php to limit access. >>>>>> >>>>>> Not sure XOT can do all of what you want >>>>>> >>>>>> Pat >>>>>> >>>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>>> wrote: >>>>>> >>>>>>> Hi All, >>>>>>> >>>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>>> another forum where to post my question? >>>>>>> My previous mail did not appear in the mailing list, although I receive >>>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>>> >>>>>>> What do I want to accomplish? >>>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>>> ? Give lectors access to Xerte by using a password, so they can >>>>> work together on courses >>>>>>> ? Preferably at first I only want lectors from the domain >>>>> ?KHLim.be? to be granted access to the Xerte website >>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>>>> the IFRAME option. >>>>>>> o This way I want to give students access to the courses we created >>>>> in Xerte >>>>>>> o Preferably I don?t want to setup a username and password for every >>>>> student. How to best do this? >>>>>>> >>>>>>> Below you can find information on what I already tried. >>>>>>> >>>>>>> Any help is greatly appreciated >>>>>>> >>>>>>> With kind regards >>>>>>> Patrick Yperman >>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>> KHLim >>>>> Associatie K.U.Leuven >>>>>>> Katholieke Hogeschool Limburg >>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>> 3590 Diepenbeek >>>>>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>>>> www.khlim.be >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> Van: Yperman Patrick >>>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>>> Onderwerp: login_library.php is empty >>>>>>> >>>>>>> Hi All, >>>>>>> >>>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>>> >>>>>>> I did a full install from version V 1.8 >>>>>>> I followed the instructions in the manual and everything was installed >>>>> successfully >>>>>>> The Xerte website works. I can create new courses and view them, work >>>>> with IFRAME integration in our LMS, etc. >>>>>>> >>>>>>> The website that hosts xerte doesn?t support LDAP >>>>>>> Since I want to setup some password protection for the site a have >>>>> setup a password on the /httpdocs (root) folder of my site >>>>>>> I created several users, each with their own password. >>>>>>> I made sure that the same users were also created in Xerte via >>>>> management.php >>>>>>> >>>>>>> According to the instructions in the installation manual I have to work >>>>> with switch.php and put in the usernames and passwords >>>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>>> On the mailing list I found a switch.php and downloaded >>>>> it and made the necessary changes >>>>>>> Running that file gave a blank screen >>>>>>> After some investigation I found that login_library.php >>>>> was empty >>>>>>> >>>>>>> The fact that in the first place there was no switch.php present and >>>>> the fact that login_library.php is empty gives me the impression that I >>>>> did something wrong or that I use the wrong options. Please advise what to >>>>> do next. Are there other installation instructions available? >>>>>>> >>>>>>> What do I want to accomplish? >>>>>>> ? Setup Xerte on a webserver >>>>>>> ? Give lectors access to Xerte by using a password, so they can >>>>> work together on courses >>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>>>> the IFRAME option >>>>>>> ? We don?t want the courses being publicly available >>>>>>> >>>>>>> Thanks in advance for helping me ? >>>>>>> Patrick Yperman >>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>> KHLim >>>>> Associatie K.U.Leuven >>>>>>> Katholieke Hogeschool Limburg >>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>> 3590 Diepenbeek >>>>>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>>>> www.khlim.be >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> 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: < >>>>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>>> >>>>>> >>>>>> ------------------------------ >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> >>>>>> >>>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>>> ************************************* >>>>>> This message and any attachment are intended solely for the addressee >>>>> and may contain confidential information. If you have received this message >>>>> in error, please send it back to me, and immediately delete it. Please do >>>>> not use, copy or disclose the information contained in this message or in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>>> attachment >>>>>> may still contain software viruses which could damage your computer >>>>> system: >>>>>> you are advised to perform your own checks. Email communications with the >>>>>> University of Nottingham may be monitored as permitted by UK legislation. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> This message and any attachment are intended solely for the addressee and >>>>> may contain confidential information. If you have received this message in >>>>> error, please send it back to me, and immediately delete it. Please do >>>>> not use, copy or disclose the information contained in this message or in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an attachment >>>>> may still contain software viruses which could damage your computer 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: >>>> >>>> ------------------------------ >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> End of Xerte Digest, Vol 109, Issue 5 >>>> ************************************* >>>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >>> >>> ------------------------------ >>> >>> Message: 2 >>> Date: Fri, 28 Dec 2012 13:25:20 +0000 >>> From: Pat Lockley >>> To: Xerte discussion list >>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>> Message-ID: >>> >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> The file is too big I'd guess >>> >>> Try increasing the file_upload / max_post_size in php.ini >>> >>> Then restart apache >>> >>> >>> On Fri, Dec 28, 2012 at 12:21 PM, Paulo wrote: >>> >>>> Hello, >>>> i?m uploading as an import of a project file. >>>> The upload process starts but when it reaches aproximatly 40% it stops. >>>> >>>> Regards, >>>> Paulo Torres >>>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>>> 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: Upload project files error (Pat Lockley) >>>>> >>>>> >>>>> ---------------------------------------------------------------------- >>>>> >>>>> Message: 1 >>>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>>> From: Pat Lockley >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Upload project files error >>>>> Message-ID: >>>>> < >>>> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>>>> Content-Type: text/plain; charset="iso-8859-1" >>>>> >>>>> Hello, >>>>> >>>>> Upload a picture to a project, or >>>>> Upload as in import? >>>>> >>>>> Pat >>>>> >>>>> >>>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >>>> wrote: >>>>> >>>>>> Hi, >>>>>> i cant?t upload project files. Why is that so. >>>>>> >>>>>> Regards, >>>>>> Paulo Torres >>>>>> >>>>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>>>> >>>>>>> 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: Rephrased: Setup a password protected environment for >>>>>>> Xerte when no LDAP is available (Pat Lockley) >>>>>>> >>>>>>> >>>>>>> ---------------------------------------------------------------------- >>>>>>> >>>>>>> Message: 1 >>>>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>>>> From: Pat Lockley >>>>>>> To: Xerte discussion list >>>>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>>>>> for Xerte when no LDAP is available >>>>>>> Message-ID: >>>>>>> Content-Type: text/plain; charset="utf-8" >>>>>>> >>>>>>> Hello, >>>>>>> >>>>>>> Install the latest XOT >>>>>>> >>>>>>> Open auth_config.php and uncomment the static option. >>>>>>> >>>>>>> Then go to (I think) library/login/static.php >>>>>>> >>>>>>> And look for passwords / usernames >>>>>>> >>>>>>> Create a username / password for each lecturer >>>>>>> >>>>>>> There isn't a way of setting default access to a specific domain - but >>>>>> you could alter play.php to limit access. >>>>>>> >>>>>>> Not sure XOT can do all of what you want >>>>>>> >>>>>>> Pat >>>>>>> >>>>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>>>> wrote: >>>>>>> >>>>>>>> Hi All, >>>>>>>> >>>>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>>>> another forum where to post my question? >>>>>>>> My previous mail did not appear in the mailing list, although I >>>> receive >>>>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>>>> >>>>>>>> What do I want to accomplish? >>>>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>>>> ? Give lectors access to Xerte by using a password, so they >>>> can >>>>>> work together on courses >>>>>>>> ? Preferably at first I only want lectors from the domain >>>>>> ?KHLim.be? to be granted access to the Xerte website >>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>> using >>>>>> the IFRAME option. >>>>>>>> o This way I want to give students access to the courses we created >>>>>> in Xerte >>>>>>>> o Preferably I don?t want to setup a username and password for >>>> every >>>>>> student. How to best do this? >>>>>>>> >>>>>>>> Below you can find information on what I already tried. >>>>>>>> >>>>>>>> Any help is greatly appreciated >>>>>>>> >>>>>>>> With kind regards >>>>>>>> Patrick Yperman >>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>> KHLim >>>>>> Associatie K.U.Leuven >>>>>>>> Katholieke Hogeschool Limburg >>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>> 3590 Diepenbeek >>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>>> patrick.yperman at khlim.be >>>>>> www.khlim.be >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> Van: Yperman Patrick >>>>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>>>> Onderwerp: login_library.php is empty >>>>>>>> >>>>>>>> Hi All, >>>>>>>> >>>>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>>>> >>>>>>>> I did a full install from version V 1.8 >>>>>>>> I followed the instructions in the manual and everything was installed >>>>>> successfully >>>>>>>> The Xerte website works. I can create new courses and view them, work >>>>>> with IFRAME integration in our LMS, etc. >>>>>>>> >>>>>>>> The website that hosts xerte doesn?t support LDAP >>>>>>>> Since I want to setup some password protection for the site a have >>>>>> setup a password on the /httpdocs (root) folder of my site >>>>>>>> I created several users, each with their own password. >>>>>>>> I made sure that the same users were also created in Xerte via >>>>>> management.php >>>>>>>> >>>>>>>> According to the instructions in the installation manual I have to >>>> work >>>>>> with switch.php and put in the usernames and passwords >>>>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>>>> On the mailing list I found a switch.php and downloaded >>>>>> it and made the necessary changes >>>>>>>> Running that file gave a blank screen >>>>>>>> After some investigation I found that login_library.php >>>>>> was empty >>>>>>>> >>>>>>>> The fact that in the first place there was no switch.php present and >>>>>> the fact that login_library.php is empty gives me the impression that I >>>>>> did something wrong or that I use the wrong options. Please advise what >>>> to >>>>>> do next. Are there other installation instructions available? >>>>>>>> >>>>>>>> What do I want to accomplish? >>>>>>>> ? Setup Xerte on a webserver >>>>>>>> ? Give lectors access to Xerte by using a password, so they >>>> can >>>>>> work together on courses >>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>> using >>>>>> the IFRAME option >>>>>>>> ? We don?t want the courses being publicly available >>>>>>>> >>>>>>>> Thanks in advance for helping me ? >>>>>>>> Patrick Yperman >>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>> KHLim >>>>>> Associatie K.U.Leuven >>>>>>>> Katholieke Hogeschool Limburg >>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>> 3590 Diepenbeek >>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>>> patrick.yperman at khlim.be >>>>>> www.khlim.be >>>>>>>> >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> 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: < >>>>>> >>>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>>>> >>>>>>> >>>>>>> ------------------------------ >>>>>>> >>>>>>> _______________________________________________ >>>>>>> Xerte mailing list >>>>>>> Xerte at lists.nottingham.ac.uk >>>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>>> >>>>>>> >>>>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>>>> ************************************* >>>>>>> This message and any attachment are intended solely for the addressee >>>>>> and may contain confidential information. If you have received this >>>> message >>>>>> in error, please send it back to me, and immediately delete it. >>>> Please do >>>>>> not use, copy or disclose the information contained in this message or >>>> in >>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>> email do not necessarily reflect the views of the University of >>>> Nottingham. >>>>>>> >>>>>>> This message has been checked for viruses but the contents of an >>>>>> attachment >>>>>>> may still contain software viruses which could damage your computer >>>>>> system: >>>>>>> you are advised to perform your own checks. Email communications with >>>> the >>>>>>> University of Nottingham may be monitored as permitted by UK >>>> legislation. >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> This message and any attachment are intended solely for the addressee >>>> and >>>>>> may contain confidential information. If you have received this message >>>> in >>>>>> error, please send it back to me, and immediately delete it. Please do >>>>>> not use, copy or disclose the information contained in this message or >>>> in >>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>> email do not necessarily reflect the views of the University of >>>> Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>> attachment >>>>>> may still contain software viruses which could damage your computer >>>> 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/20121227/5f75ad34/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 109, Issue 5 >>>>> ************************************* >>>>> This message and any attachment are intended solely for the addressee >>>> and may contain confidential information. If you have received this message >>>> in error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>>> attachment >>>>> may still contain software viruses which could damage your computer >>>> system: >>>>> you are advised to perform your own checks. Email communications with the >>>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> This message and any attachment are intended solely for the addressee and >>>> may contain confidential information. If you have received this message in >>>> error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an attachment >>>> may still contain software viruses which could damage your computer 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: >>> >>> ------------------------------ >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> End of Xerte Digest, Vol 109, Issue 6 >>> ************************************* >>> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer system: >>> you are advised to perform your own checks. Email communications with the >>> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >> ------------------------------ >> >> Message: 2 >> Date: Fri, 28 Dec 2012 23:39:04 +0000 >> From: Pat Lockley >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 >> Message-ID: >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> Sometimes the mimetype is wrong - what browser are you using and do you >> know any PHP? >> >> >> On Fri, Dec 28, 2012 at 11:18 PM, Paulo wrote: >> >>> Hi, >>> i?m trying to import a project file to XOT but i get an error. >>> The file i?m importing is a zip file generated by XOT but i get an error >>> indicating, >>> that i can only import zip files. Well the file is a zip one. why do i get >>> this error? >>> >>> Regards, >>> Paulo Torres >>> A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>>> 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: Xerte Digest, Vol 109, Issue 5 (Paulo) >>>> 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> Message: 1 >>>> Date: Fri, 28 Dec 2012 12:21:36 +0000 >>>> From: Paulo >>>> To: xerte at lists.nottingham.ac.uk >>>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>>> Message-ID: >>>> Content-Type: text/plain; charset=iso-8859-1 >>>> >>>> Hello, >>>> i?m uploading as an import of a project file. >>>> The upload process starts but when it reaches aproximatly 40% it stops. >>>> >>>> Regards, >>>> Paulo Torres >>>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>>> 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: Upload project files error (Pat Lockley) >>>>> >>>>> >>>>> ---------------------------------------------------------------------- >>>>> >>>>> Message: 1 >>>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>>> From: Pat Lockley >>>>> To: Xerte discussion list >>>>> Subject: [Xerte] Re: Upload project files error >>>>> Message-ID: >>>>> < >>> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>>>> Content-Type: text/plain; charset="iso-8859-1" >>>>> >>>>> Hello, >>>>> >>>>> Upload a picture to a project, or >>>>> Upload as in import? >>>>> >>>>> Pat >>>>> >>>>> >>>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >>> wrote: >>>>> >>>>>> Hi, >>>>>> i cant?t upload project files. Why is that so. >>>>>> >>>>>> Regards, >>>>>> Paulo Torres >>>>>> >>>>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>>>> >>>>>>> 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: Rephrased: Setup a password protected environment for >>>>>>> Xerte when no LDAP is available (Pat Lockley) >>>>>>> >>>>>>> >>>>>>> ---------------------------------------------------------------------- >>>>>>> >>>>>>> Message: 1 >>>>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>>>> From: Pat Lockley >>>>>>> To: Xerte discussion list >>>>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>>>>> for Xerte when no LDAP is available >>>>>>> Message-ID: >>>>>>> Content-Type: text/plain; charset="utf-8" >>>>>>> >>>>>>> Hello, >>>>>>> >>>>>>> Install the latest XOT >>>>>>> >>>>>>> Open auth_config.php and uncomment the static option. >>>>>>> >>>>>>> Then go to (I think) library/login/static.php >>>>>>> >>>>>>> And look for passwords / usernames >>>>>>> >>>>>>> Create a username / password for each lecturer >>>>>>> >>>>>>> There isn't a way of setting default access to a specific domain - but >>>>>> you could alter play.php to limit access. >>>>>>> >>>>>>> Not sure XOT can do all of what you want >>>>>>> >>>>>>> Pat >>>>>>> >>>>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>>>> wrote: >>>>>>> >>>>>>>> Hi All, >>>>>>>> >>>>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>>>> another forum where to post my question? >>>>>>>> My previous mail did not appear in the mailing list, although I >>> receive >>>>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>>>> >>>>>>>> What do I want to accomplish? >>>>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>>>> ? Give lectors access to Xerte by using a password, so they >>> can >>>>>> work together on courses >>>>>>>> ? Preferably at first I only want lectors from the domain >>>>>> ?KHLim.be? to be granted access to the Xerte website >>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>> using >>>>>> the IFRAME option. >>>>>>>> o This way I want to give students access to the courses we created >>>>>> in Xerte >>>>>>>> o Preferably I don?t want to setup a username and password for >>> every >>>>>> student. How to best do this? >>>>>>>> >>>>>>>> Below you can find information on what I already tried. >>>>>>>> >>>>>>>> Any help is greatly appreciated >>>>>>>> >>>>>>>> With kind regards >>>>>>>> Patrick Yperman >>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>> KHLim >>>>>> Associatie K.U.Leuven >>>>>>>> Katholieke Hogeschool Limburg >>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>> 3590 Diepenbeek >>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>> patrick.yperman at khlim.be >>>>>> www.khlim.be >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> Van: Yperman Patrick >>>>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>>>> Onderwerp: login_library.php is empty >>>>>>>> >>>>>>>> Hi All, >>>>>>>> >>>>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>>>> >>>>>>>> I did a full install from version V 1.8 >>>>>>>> I followed the instructions in the manual and everything was >>> installed >>>>>> successfully >>>>>>>> The Xerte website works. I can create new courses and view them, work >>>>>> with IFRAME integration in our LMS, etc. >>>>>>>> >>>>>>>> The website that hosts xerte doesn?t support LDAP >>>>>>>> Since I want to setup some password protection for the site a have >>>>>> setup a password on the /httpdocs (root) folder of my site >>>>>>>> I created several users, each with their own password. >>>>>>>> I made sure that the same users were also created in Xerte via >>>>>> management.php >>>>>>>> >>>>>>>> According to the instructions in the installation manual I have to >>> work >>>>>> with switch.php and put in the usernames and passwords >>>>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>>>> On the mailing list I found a switch.php and downloaded >>>>>> it and made the necessary changes >>>>>>>> Running that file gave a blank screen >>>>>>>> After some investigation I found that login_library.php >>>>>> was empty >>>>>>>> >>>>>>>> The fact that in the first place there was no switch.php present and >>>>>> the fact that login_library.php is empty gives me the impression that >>> I >>>>>> did something wrong or that I use the wrong options. Please advise >>> what to >>>>>> do next. Are there other installation instructions available? >>>>>>>> >>>>>>>> What do I want to accomplish? >>>>>>>> ? Setup Xerte on a webserver >>>>>>>> ? Give lectors access to Xerte by using a password, so they >>> can >>>>>> work together on courses >>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>> using >>>>>> the IFRAME option >>>>>>>> ? We don?t want the courses being publicly available >>>>>>>> >>>>>>>> Thanks in advance for helping me ? >>>>>>>> Patrick Yperman >>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>> KHLim >>>>>> Associatie K.U.Leuven >>>>>>>> Katholieke Hogeschool Limburg >>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>> 3590 Diepenbeek >>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>> patrick.yperman at khlim.be >>>>>> www.khlim.be >>>>>>>> >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> 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: < >>>>>> >>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>>>> >>>>>>> >>>>>>> ------------------------------ >>>>>>> >>>>>>> _______________________________________________ >>>>>>> Xerte mailing list >>>>>>> Xerte at lists.nottingham.ac.uk >>>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>>> >>>>>>> >>>>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>>>> ************************************* >>>>>>> This message and any attachment are intended solely for the addressee >>>>>> and may contain confidential information. If you have received this >>> message >>>>>> in error, please send it back to me, and immediately delete it. >>> Please do >>>>>> not use, copy or disclose the information contained in this message or >>> in >>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>> email do not necessarily reflect the views of the University of >>> Nottingham. >>>>>>> >>>>>>> This message has been checked for viruses but the contents of an >>>>>> attachment >>>>>>> may still contain software viruses which could damage your computer >>>>>> system: >>>>>>> you are advised to perform your own checks. Email communications with >>> the >>>>>>> University of Nottingham may be monitored as permitted by UK >>> legislation. >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> Xerte mailing list >>>>>> Xerte at lists.nottingham.ac.uk >>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>> This message and any attachment are intended solely for the addressee >>> and >>>>>> may contain confidential information. If you have received this >>> message in >>>>>> error, please send it back to me, and immediately delete it. Please >>> do >>>>>> not use, copy or disclose the information contained in this message or >>> in >>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>> email do not necessarily reflect the views of the University of >>> Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>> attachment >>>>>> may still contain software viruses which could damage your computer >>> 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/20121227/5f75ad34/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 109, Issue 5 >>>>> ************************************* >>>>> This message and any attachment are intended solely for the addressee >>> and may contain confidential information. If you have received this message >>> in error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>> attachment >>>>> may still contain software viruses which could damage your computer >>> system: >>>>> you are advised to perform your own checks. Email communications with >>> the >>>>> University of Nottingham may be monitored as permitted by UK >>> legislation. >>>> >>>> >>>> >>>> >>>> ------------------------------ >>>> >>>> Message: 2 >>>> Date: Fri, 28 Dec 2012 13:25:20 +0000 >>>> From: Pat Lockley >>>> To: Xerte discussion list >>>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>>> Message-ID: >>>> >> pEinepbna2w at mail.gmail.com> >>>> Content-Type: text/plain; charset="iso-8859-1" >>>> >>>> The file is too big I'd guess >>>> >>>> Try increasing the file_upload / max_post_size in php.ini >>>> >>>> Then restart apache >>>> >>>> >>>> On Fri, Dec 28, 2012 at 12:21 PM, Paulo >>> wrote: >>>> >>>>> Hello, >>>>> i?m uploading as an import of a project file. >>>>> The upload process starts but when it reaches aproximatly 40% it stops. >>>>> >>>>> Regards, >>>>> Paulo Torres >>>>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>>>> >>>>>> 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: Upload project files error (Pat Lockley) >>>>>> >>>>>> >>>>>> ---------------------------------------------------------------------- >>>>>> >>>>>> Message: 1 >>>>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>>>> From: Pat Lockley >>>>>> To: Xerte discussion list >>>>>> Subject: [Xerte] Re: Upload project files error >>>>>> Message-ID: >>>>>> < >>>>> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>>>>> Content-Type: text/plain; charset="iso-8859-1" >>>>>> >>>>>> Hello, >>>>>> >>>>>> Upload a picture to a project, or >>>>>> Upload as in import? >>>>>> >>>>>> Pat >>>>>> >>>>>> >>>>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >>>>> wrote: >>>>>> >>>>>>> Hi, >>>>>>> i cant?t upload project files. Why is that so. >>>>>>> >>>>>>> Regards, >>>>>>> Paulo Torres >>>>>>> >>>>>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.ukescreveu: >>>>>>> >>>>>>>> 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: Rephrased: Setup a password protected environment for >>>>>>>> Xerte when no LDAP is available (Pat Lockley) >>>>>>>> >>>>>>>> >>>>>>>> >>> ---------------------------------------------------------------------- >>>>>>>> >>>>>>>> Message: 1 >>>>>>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>>>>>> From: Pat Lockley >>>>>>>> To: Xerte discussion list >>>>>>>> Subject: [Xerte] Re: Rephrased: Setup a password protected >>> environment >>>>>>>> for Xerte when no LDAP is available >>>>>>>> Message-ID: >>>>>>>> Content-Type: text/plain; charset="utf-8" >>>>>>>> >>>>>>>> Hello, >>>>>>>> >>>>>>>> Install the latest XOT >>>>>>>> >>>>>>>> Open auth_config.php and uncomment the static option. >>>>>>>> >>>>>>>> Then go to (I think) library/login/static.php >>>>>>>> >>>>>>>> And look for passwords / usernames >>>>>>>> >>>>>>>> Create a username / password for each lecturer >>>>>>>> >>>>>>>> There isn't a way of setting default access to a specific domain - >>> but >>>>>>> you could alter play.php to limit access. >>>>>>>> >>>>>>>> Not sure XOT can do all of what you want >>>>>>>> >>>>>>>> Pat >>>>>>>> >>>>>>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>>>>> wrote: >>>>>>>> >>>>>>>>> Hi All, >>>>>>>>> >>>>>>>>> I?m not sure if I?ve send this message to the right place. Is there >>>>>>> another forum where to post my question? >>>>>>>>> My previous mail did not appear in the mailing list, although I >>>>> receive >>>>>>> other mails coming from xerte at lists.nottingham.ac.uk >>>>>>>>> >>>>>>>>> What do I want to accomplish? >>>>>>>>> ? Setup Xerte on a webserver (I already did this) >>>>>>>>> ? Give lectors access to Xerte by using a password, so they >>>>> can >>>>>>> work together on courses >>>>>>>>> ? Preferably at first I only want lectors from the domain >>>>>>> ?KHLim.be? to be granted access to the Xerte website >>>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>>> using >>>>>>> the IFRAME option. >>>>>>>>> o This way I want to give students access to the courses we >>> created >>>>>>> in Xerte >>>>>>>>> o Preferably I don?t want to setup a username and password for >>>>> every >>>>>>> student. How to best do this? >>>>>>>>> >>>>>>>>> Below you can find information on what I already tried. >>>>>>>>> >>>>>>>>> Any help is greatly appreciated >>>>>>>>> >>>>>>>>> With kind regards >>>>>>>>> Patrick Yperman >>>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>>> KHLim >>>>>>> Associatie K.U.Leuven >>>>>>>>> Katholieke Hogeschool Limburg >>>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>>> 3590 Diepenbeek >>>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>>>> patrick.yperman at khlim.be >>>>>>> www.khlim.be >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> Van: Yperman Patrick >>>>>>>>> Verzonden: vrijdag 21 december 2012 9:36 >>>>>>>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>>>>>>> Onderwerp: login_library.php is empty >>>>>>>>> >>>>>>>>> Hi All, >>>>>>>>> >>>>>>>>> I?m trying to setup Xerte on a website and ran into some problems. >>>>>>>>> >>>>>>>>> I did a full install from version V 1.8 >>>>>>>>> I followed the instructions in the manual and everything was >>> installed >>>>>>> successfully >>>>>>>>> The Xerte website works. I can create new courses and view them, >>> work >>>>>>> with IFRAME integration in our LMS, etc. >>>>>>>>> >>>>>>>>> The website that hosts xerte doesn?t support LDAP >>>>>>>>> Since I want to setup some password protection for the site a have >>>>>>> setup a password on the /httpdocs (root) folder of my site >>>>>>>>> I created several users, each with their own password. >>>>>>>>> I made sure that the same users were also created in Xerte via >>>>>>> management.php >>>>>>>>> >>>>>>>>> According to the instructions in the installation manual I have to >>>>> work >>>>>>> with switch.php and put in the usernames and passwords >>>>>>>>> In the version 1.8 which I downloaded there was no switch.php >>>>>>>>> On the mailing list I found a switch.php and downloaded >>>>>>> it and made the necessary changes >>>>>>>>> Running that file gave a blank screen >>>>>>>>> After some investigation I found that login_library.php >>>>>>> was empty >>>>>>>>> >>>>>>>>> The fact that in the first place there was no switch.php present and >>>>>>> the fact that login_library.php is empty gives me the impression >>> that I >>>>>>> did something wrong or that I use the wrong options. Please advise >>> what >>>>> to >>>>>>> do next. Are there other installation instructions available? >>>>>>>>> >>>>>>>>> What do I want to accomplish? >>>>>>>>> ? Setup Xerte on a webserver >>>>>>>>> ? Give lectors access to Xerte by using a password, so they >>>>> can >>>>>>> work together on courses >>>>>>>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>>> using >>>>>>> the IFRAME option >>>>>>>>> ? We don?t want the courses being publicly available >>>>>>>>> >>>>>>>>> Thanks in advance for helping me ? >>>>>>>>> Patrick Yperman >>>>>>>>> Lector Handelswetenschappen en Bedrijfskunde >>>>>>>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>>>>>>> KHLim >>>>>>> Associatie K.U.Leuven >>>>>>>>> Katholieke Hogeschool Limburg >>>>>>>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>>>>> 3590 Diepenbeek >>>>>>>>> Tel. 011 230 890 - Fax 011 230 899 - >>>>> patrick.yperman at khlim.be >>>>>>> www.khlim.be >>>>>>>>> >>>>>>>>> >>>>>>>>> _______________________________________________ >>>>>>>>> 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: < >>>>>>> >>>>> >>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>>>>>> >>>>>>>> >>>>>>>> ------------------------------ >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> Xerte mailing list >>>>>>>> Xerte at lists.nottingham.ac.uk >>>>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>>>> >>>>>>>> >>>>>>>> End of Xerte Digest, Vol 109, Issue 3 >>>>>>>> ************************************* >>>>>>>> This message and any attachment are intended solely for the addressee >>>>>>> and may contain confidential information. If you have received this >>>>> message >>>>>>> in error, please send it back to me, and immediately delete it. >>>>> Please do >>>>>>> not use, copy or disclose the information contained in this message or >>>>> in >>>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>>> email do not necessarily reflect the views of the University of >>>>> Nottingham. >>>>>>>> >>>>>>>> This message has been checked for viruses but the contents of an >>>>>>> attachment >>>>>>>> may still contain software viruses which could damage your computer >>>>>>> system: >>>>>>>> you are advised to perform your own checks. Email communications with >>>>> the >>>>>>>> University of Nottingham may be monitored as permitted by UK >>>>> legislation. >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> Xerte mailing list >>>>>>> Xerte at lists.nottingham.ac.uk >>>>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>>>> This message and any attachment are intended solely for the addressee >>>>> and >>>>>>> may contain confidential information. If you have received this >>> message >>>>> in >>>>>>> error, please send it back to me, and immediately delete it. Please >>> do >>>>>>> not use, copy or disclose the information contained in this message or >>>>> in >>>>>>> any attachment. Any views or opinions expressed by the author of this >>>>>>> email do not necessarily reflect the views of the University of >>>>> Nottingham. >>>>>>> >>>>>>> This message has been checked for viruses but the contents of an >>>>> attachment >>>>>>> may still contain software viruses which could damage your computer >>>>> 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/20121227/5f75ad34/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 109, Issue 5 >>>>>> ************************************* >>>>>> This message and any attachment are intended solely for the addressee >>>>> and may contain confidential information. If you have received this >>> message >>>>> in error, please send it back to me, and immediately delete it. >>> Please do >>>>> not use, copy or disclose the information contained in this message or >>> in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of >>> Nottingham. >>>>>> >>>>>> This message has been checked for viruses but the contents of an >>>>> attachment >>>>>> may still contain software viruses which could damage your computer >>>>> system: >>>>>> you are advised to perform your own checks. Email communications with >>> the >>>>>> University of Nottingham may be monitored as permitted by UK >>> legislation. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Xerte mailing list >>>>> Xerte at lists.nottingham.ac.uk >>>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>>> This message and any attachment are intended solely for the addressee >>> and >>>>> may contain confidential information. If you have received this message >>> in >>>>> error, please send it back to me, and immediately delete it. Please do >>>>> not use, copy or disclose the information contained in this message or >>> in >>>>> any attachment. Any views or opinions expressed by the author of this >>>>> email do not necessarily reflect the views of the University of >>> Nottingham. >>>>> >>>>> This message has been checked for viruses but the contents of an >>> attachment >>>>> may still contain software viruses which could damage your computer >>> 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/20121228/f329c56d/attachment.html >>>> >>>> >>>> ------------------------------ >>>> >>>> _______________________________________________ >>>> Xerte mailing list >>>> Xerte at lists.nottingham.ac.uk >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> End of Xerte Digest, Vol 109, Issue 6 >>>> ************************************* >>>> This message and any attachment are intended solely for the addressee >>> and may contain confidential information. If you have received this message >>> in error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> This message has been checked for viruses but the contents of an >>> attachment >>>> may still contain software viruses which could damage your computer >>> system: >>>> you are advised to perform your own checks. Email communications with the >>>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> _______________________________________________ >>> Xerte mailing list >>> Xerte at lists.nottingham.ac.uk >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>> >>> This message has been checked for viruses but the contents of an attachment >>> may still contain software viruses which could damage your computer 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: >> >> ------------------------------ >> >> _______________________________________________ >> Xerte mailing list >> Xerte at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> End of Xerte Digest, Vol 109, 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: > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: xerte.tiff > Type: image/tiff > Size: 671692 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 109, Issue 8 > ************************************* > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Sat Dec 29 10:42:26 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sat, 29 Dec 2012 10:42:26 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 7 In-Reply-To: References: Message-ID: in website_code/php/import/import.php At the end else{ echo $_FILES['filenameuploaded']['type'] . "
"; echo IMPORT_ZIP_FAIL . ".****"; } it should show more that the error? This in in 1.9 XOT if you don't have echo $_FILES['filenameuploaded']['type'] . "
"; in the code in your file, add it in On Sat, Dec 29, 2012 at 4:22 AM, Paulo wrote: > Hi, > trying to upload a zip file generated by XOT i get this error: > > > > > I?d like some help here. It?s realy important that i can upload this file. > > Regards, > Paulo Torres > > > A 28/12/2012, ?s 23:40, xerte-request at lists.nottingham.ac.uk escreveu: > > 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: Xerte Digest, Vol 109, Issue 6 (Paulo) > 2. Re: Xerte Digest, Vol 109, Issue 6 (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 28 Dec 2012 23:18:52 +0000 > From: Paulo > To: xerte at lists.nottingham.ac.uk > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 > Message-ID: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA at gmail.com> > Content-Type: text/plain; charset=iso-8859-1 > > Hi, > i?m trying to import a project file to XOT but i get an error. > The file i?m importing is a zip file generated by XOT but i get an error > indicating, > that i can only import zip files. Well the file is a zip one. why do i get > this error? > > Regards, > Paulo Torres > A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: > > 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: Xerte Digest, Vol 109, Issue 5 (Paulo) > > 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) > > > > ---------------------------------------------------------------------- > > > Message: 1 > > Date: Fri, 28 Dec 2012 12:21:36 +0000 > > From: Paulo > > To: xerte at lists.nottingham.ac.uk > > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 > > Message-ID: > > Content-Type: text/plain; charset=iso-8859-1 > > > Hello, > > i?m uploading as an import of a project file. > > The upload process starts but when it reaches aproximatly 40% it stops. > > > Regards, > > Paulo Torres > > A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Upload project files error (Pat Lockley) > > > > ---------------------------------------------------------------------- > > > Message: 1 > > Date: Thu, 27 Dec 2012 12:14:19 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Upload project files error > > Message-ID: > > > > Content-Type: text/plain; charset="iso-8859-1" > > > Hello, > > > Upload a picture to a project, or > > Upload as in import? > > > Pat > > > > On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: > > > Hi, > > i cant?t upload project files. Why is that so. > > > Regards, > > Paulo Torres > > > A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Rephrased: Setup a password protected environment for > > Xerte when no LDAP is available (Pat Lockley) > > > > ---------------------------------------------------------------------- > > > Message: 1 > > Date: Wed, 26 Dec 2012 11:18:54 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Rephrased: Setup a password protected environment > > for Xerte when no LDAP is available > > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > > Hello, > > > Install the latest XOT > > > Open auth_config.php and uncomment the static option. > > > Then go to (I think) library/login/static.php > > > And look for passwords / usernames > > > Create a username / password for each lecturer > > > There isn't a way of setting default access to a specific domain - but > > you could alter play.php to limit access. > > > Not sure XOT can do all of what you want > > > Pat > > > On 26 Dec 2012, at 09:50, Yperman Patrick > > wrote: > > > Hi All, > > > I?m not sure if I?ve send this message to the right place. Is there > > another forum where to post my question? > > My previous mail did not appear in the mailing list, although I receive > > other mails coming from xerte at lists.nottingham.ac.uk > > > What do I want to accomplish? > > ? Setup Xerte on a webserver (I already did this) > > ? Give lectors access to Xerte by using a password, so they can > > work together on courses > > ? Preferably at first I only want lectors from the domain > > ?KHLim.be? to be granted access to the Xerte website > > ? Integrate these courses in our Blackboard/Toledo LMS by using > > the IFRAME option. > > o This way I want to give students access to the courses we created > > in Xerte > > o Preferably I don?t want to setup a username and password for every > > student. How to best do this? > > > Below you can find information on what I already tried. > > > Any help is greatly appreciated > > > With kind regards > > Patrick Yperman > > Lector Handelswetenschappen en Bedrijfskunde > > Nieuw: HRM, KMO,Media & Event en Vastgoed > > KHLim > > Associatie K.U.Leuven > > Katholieke Hogeschool Limburg > > Campus Diepenbeek, Agoralaan gebouw B , bus 2, > > 3590 Diepenbeek > > Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be > > www.khlim.be > > > > > > > Van: Yperman Patrick > > Verzonden: vrijdag 21 december 2012 9:36 > > Aan: 'xerte at lists.nottingham.ac.uk' > > Onderwerp: login_library.php is empty > > > Hi All, > > > I?m trying to setup Xerte on a website and ran into some problems. > > > I did a full install from version V 1.8 > > I followed the instructions in the manual and everything was installed > > successfully > > The Xerte website works. I can create new courses and view them, work > > with IFRAME integration in our LMS, etc. > > > The website that hosts xerte doesn?t support LDAP > > Since I want to setup some password protection for the site a have > > setup a password on the /httpdocs (root) folder of my site > > I created several users, each with their own password. > > I made sure that the same users were also created in Xerte via > > management.php > > > According to the instructions in the installation manual I have to work > > with switch.php and put in the usernames and passwords > > In the version 1.8 which I downloaded there was no switch.php > > On the mailing list I found a switch.php and downloaded > > it and made the necessary changes > > Running that file gave a blank screen > > After some investigation I found that login_library.php > > was empty > > > The fact that in the first place there was no switch.php present and > > the fact that login_library.php is empty gives me the impression that I > > did something wrong or that I use the wrong options. Please advise what to > > do next. Are there other installation instructions available? > > > What do I want to accomplish? > > ? Setup Xerte on a webserver > > ? Give lectors access to Xerte by using a password, so they can > > work together on courses > > ? Integrate these courses in our Blackboard/Toledo LMS by using > > the IFRAME option > > ? We don?t want the courses being publicly available > > > Thanks in advance for helping me ? > > Patrick Yperman > > Lector Handelswetenschappen en Bedrijfskunde > > Nieuw: HRM, KMO,Media & Event en Vastgoed > > KHLim > > Associatie K.U.Leuven > > Katholieke Hogeschool Limburg > > Campus Diepenbeek, Agoralaan gebouw B , bus 2, > > 3590 Diepenbeek > > Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be > > www.khlim.be > > > > > _______________________________________________ > > 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: < > > > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html > > > > ------------------------------ > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > > > End of Xerte Digest, Vol 109, Issue 3 > > ************************************* > > This message and any attachment are intended solely for the addressee > > and may contain confidential information. If you have received this message > > in error, please send it back to me, and immediately delete it. Please do > > not use, copy or disclose the information contained in this message or in > > any attachment. Any views or opinions expressed by the author of this > > email do not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an > > attachment > > may still contain software viruses which could damage your computer > > system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte mailing list > > Xerte at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > > This message and any attachment are intended solely for the addressee and > > may contain confidential information. If you have received this message in > > error, please send it back to me, and immediately delete it. Please do > > not use, copy or disclose the information contained in this message or in > > any attachment. Any views or opinions expressed by the author of this > > email do not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer 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/20121227/5f75ad34/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 109, Issue 5 > > ************************************* > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system: > > you are advised to perform your own checks. Email communications with the > > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > ------------------------------ > > > Message: 2 > > Date: Fri, 28 Dec 2012 13:25:20 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 > > Message-ID: > > > > Content-Type: text/plain; charset="iso-8859-1" > > > The file is too big I'd guess > > > Try increasing the file_upload / max_post_size in php.ini > > > Then restart apache > > > > On Fri, Dec 28, 2012 at 12:21 PM, Paulo wrote: > > > Hello, > > i?m uploading as an import of a project file. > > The upload process starts but when it reaches aproximatly 40% it stops. > > > Regards, > > Paulo Torres > > A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Upload project files error (Pat Lockley) > > > > ---------------------------------------------------------------------- > > > Message: 1 > > Date: Thu, 27 Dec 2012 12:14:19 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Upload project files error > > Message-ID: > > < > > CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> > > Content-Type: text/plain; charset="iso-8859-1" > > > Hello, > > > Upload a picture to a project, or > > Upload as in import? > > > Pat > > > > On Thu, Dec 27, 2012 at 1:26 AM, Paulo > > wrote: > > > Hi, > > i cant?t upload project files. Why is that so. > > > Regards, > > Paulo Torres > > > A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: > > > 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: Rephrased: Setup a password protected environment for > > Xerte when no LDAP is available (Pat Lockley) > > > > ---------------------------------------------------------------------- > > > Message: 1 > > Date: Wed, 26 Dec 2012 11:18:54 +0000 > > From: Pat Lockley > > To: Xerte discussion list > > Subject: [Xerte] Re: Rephrased: Setup a password protected environment > > for Xerte when no LDAP is available > > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > > Hello, > > > Install the latest XOT > > > Open auth_config.php and uncomment the static option. > > > Then go to (I think) library/login/static.php > > > And look for passwords / usernames > > > Create a username / password for each lecturer > > > There isn't a way of setting default access to a specific domain - but > > you could alter play.php to limit access. > > > Not sure XOT can do all of what you want > > > Pat > > > On 26 Dec 2012, at 09:50, Yperman Patrick > > wrote: > > > Hi All, > > > I?m not sure if I?ve send this message to the right place. Is there > > another forum where to post my question? > > My previous mail did not appear in the mailing list, although I > > receive > > other mails coming from xerte at lists.nottingham.ac.uk > > > What do I want to accomplish? > > ? Setup Xerte on a webserver (I already did this) > > ? Give lectors access to Xerte by using a password, so they > > can > > work together on courses > > ? Preferably at first I only want lectors from the domain > > ?KHLim.be? to be granted access to the Xerte website > > ? Integrate these courses in our Blackboard/Toledo LMS by > > using > > the IFRAME option. > > o This way I want to give students access to the courses we created > > in Xerte > > o Preferably I don?t want to setup a username and password for > > every > > student. How to best do this? > > > Below you can find information on what I already tried. > > > Any help is greatly appreciated > > > With kind regards > > Patrick Yperman > > Lector Handelswetenschappen en Bedrijfskunde > > Nieuw: HRM, KMO,Media & Event en Vastgoed > > KHLim > > Associatie K.U.Leuven > > Katholieke Hogeschool Limburg > > Campus Diepenbeek, Agoralaan gebouw B , bus 2, > > 3590 Diepenbeek > > Tel. 011 230 890 - Fax 011 230 899 - > > patrick.yperman at khlim.be > > www.khlim.be > > > > > > > Van: Yperman Patrick > > Verzonden: vrijdag 21 december 2012 9:36 > > Aan: 'xerte at lists.nottingham.ac.uk' > > Onderwerp: login_library.php is empty > > > Hi All, > > > I?m trying to setup Xerte on a website and ran into some problems. > > > I did a full install from version V 1.8 > > I followed the instructions in the manual and everything was installed > > successfully > > The Xerte website works. I can create new courses and view them, work > > with IFRAME integration in our LMS, etc. > > > The website that hosts xerte doesn?t support LDAP > > Since I want to setup some password protection for the site a have > > setup a password on the /httpdocs (root) folder of my site > > I created several users, each with their own password. > > I made sure that the same users were also created in Xerte via > > management.php > > > According to the instructions in the installation manual I have to > > work > > with switch.php and put in the usernames and passwords > > In the version 1.8 which I downloaded there was no switch.php > > On the mailing list I found a switch.php and downloaded > > it and made the necessary changes > > Running that file gave a blank screen > > After some investigation I found that login_library.php > > was empty > > > The fact that in the first place there was no switch.php present and > > the fact that login_library.php is empty gives me the impression that I > > did something wrong or that I use the wrong options. Please advise what > > to > > do next. Are there other installation instructions available? > > > What do I want to accomplish? > > ? Setup Xerte on a webserver > > ? Give lectors access to Xerte by using a password, so they > > can > > work together on courses > > ? Integrate these courses in our Blackboard/Toledo LMS by > > using > > the IFRAME option > > ? We don?t want the courses being publicly available > > > Thanks in advance for helping me ? > > Patrick Yperman > > Lector Handelswetenschappen en Bedrijfskunde > > Nieuw: HRM, KMO,Media & Event en Vastgoed > > KHLim > > Associatie K.U.Leuven > > Katholieke Hogeschool Limburg > > Campus Diepenbeek, Agoralaan gebouw B , bus 2, > > 3590 Diepenbeek > > Tel. 011 230 890 - Fax 011 230 899 - > > patrick.yperman at khlim.be > > www.khlim.be > > > > > _______________________________________________ > > 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: < > > > > http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html > > > > ------------------------------ > > > _______________________________________________ > > ... > > [Message clipped] > _______________________________________________ > 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: -------------- next part -------------- A non-text attachment was scrubbed... Name: xerte.tiff Type: image/tiff Size: 671692 bytes Desc: not available URL: From patrick.lockley at googlemail.com Sat Dec 29 10:42:51 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sat, 29 Dec 2012 10:42:51 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 7 In-Reply-To: References: Message-ID: I would guess the problem is what your Apple reports the mimetype as On Sat, Dec 29, 2012 at 10:42 AM, Pat Lockley < patrick.lockley at googlemail.com> wrote: > in website_code/php/import/import.php > > At the end > > else{ > > echo $_FILES['filenameuploaded']['type'] . "
"; > > echo IMPORT_ZIP_FAIL . ".****"; > > } > > it should show more that the error? This in in 1.9 XOT > > if you don't have echo $_FILES['filenameuploaded']['type'] . "
"; in > the code in your file, add it in > > > > > On Sat, Dec 29, 2012 at 4:22 AM, Paulo wrote: > >> Hi, >> trying to upload a zip file generated by XOT i get this error: >> >> >> >> >> I?d like some help here. It?s realy important that i can upload this file. >> >> Regards, >> Paulo Torres >> >> >> A 28/12/2012, ?s 23:40, xerte-request at lists.nottingham.ac.uk escreveu: >> >> 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: Xerte Digest, Vol 109, Issue 6 (Paulo) >> 2. Re: Xerte Digest, Vol 109, Issue 6 (Pat Lockley) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Fri, 28 Dec 2012 23:18:52 +0000 >> From: Paulo >> To: xerte at lists.nottingham.ac.uk >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 >> Message-ID: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA at gmail.com> >> Content-Type: text/plain; charset=iso-8859-1 >> >> Hi, >> i?m trying to import a project file to XOT but i get an error. >> The file i?m importing is a zip file generated by XOT but i get an error >> indicating, >> that i can only import zip files. Well the file is a zip one. why do i >> get this error? >> >> Regards, >> Paulo Torres >> A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: >> >> 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: Xerte Digest, Vol 109, Issue 5 (Paulo) >> >> 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) >> >> >> >> ---------------------------------------------------------------------- >> >> >> Message: 1 >> >> Date: Fri, 28 Dec 2012 12:21:36 +0000 >> >> From: Paulo >> >> To: xerte at lists.nottingham.ac.uk >> >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >> >> Message-ID: >> >> Content-Type: text/plain; charset=iso-8859-1 >> >> >> Hello, >> >> i?m uploading as an import of a project file. >> >> The upload process starts but when it reaches aproximatly 40% it stops. >> >> >> Regards, >> >> Paulo Torres >> >> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >> >> >> 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: Upload project files error (Pat Lockley) >> >> >> >> ---------------------------------------------------------------------- >> >> >> Message: 1 >> >> Date: Thu, 27 Dec 2012 12:14:19 +0000 >> >> From: Pat Lockley >> >> To: Xerte discussion list >> >> Subject: [Xerte] Re: Upload project files error >> >> Message-ID: >> >> >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> >> Hello, >> >> >> Upload a picture to a project, or >> >> Upload as in import? >> >> >> Pat >> >> >> >> On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: >> >> >> Hi, >> >> i cant?t upload project files. Why is that so. >> >> >> Regards, >> >> Paulo Torres >> >> >> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >> >> >> 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: Rephrased: Setup a password protected environment for >> >> Xerte when no LDAP is available (Pat Lockley) >> >> >> >> ---------------------------------------------------------------------- >> >> >> Message: 1 >> >> Date: Wed, 26 Dec 2012 11:18:54 +0000 >> >> From: Pat Lockley >> >> To: Xerte discussion list >> >> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >> >> for Xerte when no LDAP is available >> >> Message-ID: >> >> Content-Type: text/plain; charset="utf-8" >> >> >> Hello, >> >> >> Install the latest XOT >> >> >> Open auth_config.php and uncomment the static option. >> >> >> Then go to (I think) library/login/static.php >> >> >> And look for passwords / usernames >> >> >> Create a username / password for each lecturer >> >> >> There isn't a way of setting default access to a specific domain - but >> >> you could alter play.php to limit access. >> >> >> Not sure XOT can do all of what you want >> >> >> Pat >> >> >> On 26 Dec 2012, at 09:50, Yperman Patrick >> >> wrote: >> >> >> Hi All, >> >> >> I?m not sure if I?ve send this message to the right place. Is there >> >> another forum where to post my question? >> >> My previous mail did not appear in the mailing list, although I receive >> >> other mails coming from xerte at lists.nottingham.ac.uk >> >> >> What do I want to accomplish? >> >> ? Setup Xerte on a webserver (I already did this) >> >> ? Give lectors access to Xerte by using a password, so they can >> >> work together on courses >> >> ? Preferably at first I only want lectors from the domain >> >> ?KHLim.be? to be granted access to the Xerte website >> >> ? Integrate these courses in our Blackboard/Toledo LMS by using >> >> the IFRAME option. >> >> o This way I want to give students access to the courses we created >> >> in Xerte >> >> o Preferably I don?t want to setup a username and password for every >> >> student. How to best do this? >> >> >> Below you can find information on what I already tried. >> >> >> Any help is greatly appreciated >> >> >> With kind regards >> >> Patrick Yperman >> >> Lector Handelswetenschappen en Bedrijfskunde >> >> Nieuw: HRM, KMO,Media & Event en Vastgoed >> >> KHLim >> >> Associatie K.U.Leuven >> >> Katholieke Hogeschool Limburg >> >> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >> >> 3590 Diepenbeek >> >> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >> >> www.khlim.be >> >> >> >> >> >> >> Van: Yperman Patrick >> >> Verzonden: vrijdag 21 december 2012 9:36 >> >> Aan: 'xerte at lists.nottingham.ac.uk' >> >> Onderwerp: login_library.php is empty >> >> >> Hi All, >> >> >> I?m trying to setup Xerte on a website and ran into some problems. >> >> >> I did a full install from version V 1.8 >> >> I followed the instructions in the manual and everything was installed >> >> successfully >> >> The Xerte website works. I can create new courses and view them, work >> >> with IFRAME integration in our LMS, etc. >> >> >> The website that hosts xerte doesn?t support LDAP >> >> Since I want to setup some password protection for the site a have >> >> setup a password on the /httpdocs (root) folder of my site >> >> I created several users, each with their own password. >> >> I made sure that the same users were also created in Xerte via >> >> management.php >> >> >> According to the instructions in the installation manual I have to work >> >> with switch.php and put in the usernames and passwords >> >> In the version 1.8 which I downloaded there was no switch.php >> >> On the mailing list I found a switch.php and downloaded >> >> it and made the necessary changes >> >> Running that file gave a blank screen >> >> After some investigation I found that login_library.php >> >> was empty >> >> >> The fact that in the first place there was no switch.php present and >> >> the fact that login_library.php is empty gives me the impression that I >> >> did something wrong or that I use the wrong options. Please advise what to >> >> do next. Are there other installation instructions available? >> >> >> What do I want to accomplish? >> >> ? Setup Xerte on a webserver >> >> ? Give lectors access to Xerte by using a password, so they can >> >> work together on courses >> >> ? Integrate these courses in our Blackboard/Toledo LMS by using >> >> the IFRAME option >> >> ? We don?t want the courses being publicly available >> >> >> Thanks in advance for helping me ? >> >> Patrick Yperman >> >> Lector Handelswetenschappen en Bedrijfskunde >> >> Nieuw: HRM, KMO,Media & Event en Vastgoed >> >> KHLim >> >> Associatie K.U.Leuven >> >> Katholieke Hogeschool Limburg >> >> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >> >> 3590 Diepenbeek >> >> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >> >> www.khlim.be >> >> >> >> >> _______________________________________________ >> >> 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: < >> >> >> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >> >> >> >> ------------------------------ >> >> >> _______________________________________________ >> >> Xerte mailing list >> >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> >> >> End of Xerte Digest, Vol 109, Issue 3 >> >> ************************************* >> >> This message and any attachment are intended solely for the addressee >> >> and may contain confidential information. If you have received this >> message >> >> in error, please send it back to me, and immediately delete it. Please >> do >> >> not use, copy or disclose the information contained in this message or in >> >> any attachment. Any views or opinions expressed by the author of this >> >> email do not necessarily reflect the views of the University of >> Nottingham. >> >> >> This message has been checked for viruses but the contents of an >> >> attachment >> >> may still contain software viruses which could damage your computer >> >> system: >> >> you are advised to perform your own checks. Email communications with the >> >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> _______________________________________________ >> >> Xerte mailing list >> >> Xerte at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >> >> This message and any attachment are intended solely for the addressee and >> >> may contain confidential information. If you have received this message in >> >> error, please send it back to me, and immediately delete it. Please do >> >> not use, copy or disclose the information contained in this message or in >> >> any attachment. Any views or opinions expressed by the author of this >> >> email do not necessarily reflect the views of the University of >> Nottingham. >> >> >> This message has been checked for viruses but the contents of an >> attachment >> >> may still contain software viruses which could damage your computer >> 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/20121227/5f75ad34/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 109, Issue 5 >> >> ************************************* >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >> >> >> This message has been checked for viruses but the contents of an >> attachment >> >> may still contain software viruses which could damage your computer >> system: >> >> you are advised to perform your own checks. Email communications with the >> >> University of Nottingham may be monitored as permitted by UK legislation. >> >> >> >> >> >> ------------------------------ >> >> >> Message: 2 >> >> Date: Fri, 28 Dec 2012 13:25:20 +0000 >> >> From: Pat Lockley >> >> To: Xerte discussion list >> >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >> >> Message-ID: >> >> >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> >> The file is too big I'd guess >> >> >> Try increasing the file_upload / max_post_size in php.ini >> >> >> Then restart apache >> >> >> >> On Fri, Dec 28, 2012 at 12:21 PM, Paulo >> wrote: >> >> >> Hello, >> >> i?m uploading as an import of a project file. >> >> The upload process starts but when it reaches aproximatly 40% it stops. >> >> >> Regards, >> >> Paulo Torres >> >> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >> >> >> 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: Upload project files error (Pat Lockley) >> >> >> >> ---------------------------------------------------------------------- >> >> >> Message: 1 >> >> Date: Thu, 27 Dec 2012 12:14:19 +0000 >> >> From: Pat Lockley >> >> To: Xerte discussion list >> >> Subject: [Xerte] Re: Upload project files error >> >> Message-ID: >> >> < >> >> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> >> Hello, >> >> >> Upload a picture to a project, or >> >> Upload as in import? >> >> >> Pat >> >> >> >> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >> >> wrote: >> >> >> Hi, >> >> i cant?t upload project files. Why is that so. >> >> >> Regards, >> >> Paulo Torres >> >> >> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >> >> >> 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: Rephrased: Setup a password protected environment for >> >> Xerte when no LDAP is available (Pat Lockley) >> >> >> >> ---------------------------------------------------------------------- >> >> >> Message: 1 >> >> Date: Wed, 26 Dec 2012 11:18:54 +0000 >> >> From: Pat Lockley >> >> To: Xerte discussion list >> >> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >> >> for Xerte when no LDAP is available >> >> Message-ID: >> >> Content-Type: text/plain; charset="utf-8" >> >> >> Hello, >> >> >> Install the latest XOT >> >> >> Open auth_config.php and uncomment the static option. >> >> >> Then go to (I think) library/login/static.php >> >> >> And look for passwords / usernames >> >> >> Create a username / password for each lecturer >> >> >> There isn't a way of setting default access to a specific domain - but >> >> you could alter play.php to limit access. >> >> >> Not sure XOT can do all of what you want >> >> >> Pat >> >> >> On 26 Dec 2012, at 09:50, Yperman Patrick >> >> wrote: >> >> >> Hi All, >> >> >> I?m not sure if I?ve send this message to the right place. Is there >> >> another forum where to post my question? >> >> My previous mail did not appear in the mailing list, although I >> >> receive >> >> other mails coming from xerte at lists.nottingham.ac.uk >> >> >> What do I want to accomplish? >> >> ? Setup Xerte on a webserver (I already did this) >> >> ? Give lectors access to Xerte by using a password, so they >> >> can >> >> work together on courses >> >> ? Preferably at first I only want lectors from the domain >> >> ?KHLim.be? to be granted access to the Xerte website >> >> ? Integrate these courses in our Blackboard/Toledo LMS by >> >> using >> >> the IFRAME option. >> >> o This way I want to give students access to the courses we created >> >> in Xerte >> >> o Preferably I don?t want to setup a username and password for >> >> every >> >> student. How to best do this? >> >> >> Below you can find information on what I already tried. >> >> >> Any help is greatly appreciated >> >> >> With kind regards >> >> Patrick Yperman >> >> Lector Handelswetenschappen en Bedrijfskunde >> >> Nieuw: HRM, KMO,Media & Event en Vastgoed >> >> KHLim >> >> Associatie K.U.Leuven >> >> Katholieke Hogeschool Limburg >> >> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >> >> 3590 Diepenbeek >> >> Tel. 011 230 890 - Fax 011 230 899 - >> >> patrick.yperman at khlim.be >> >> www.khlim.be >> >> >> >> >> >> >> Van: Yperman Patrick >> >> Verzonden: vrijdag 21 december 2012 9:36 >> >> Aan: 'xerte at lists.nottingham.ac.uk' >> >> Onderwerp: login_library.php is empty >> >> >> Hi All, >> >> >> I?m trying to setup Xerte on a website and ran into some problems. >> >> >> I did a full install from version V 1.8 >> >> I followed the instructions in the manual and everything was installed >> >> successfully >> >> The Xerte website works. I can create new courses and view them, work >> >> with IFRAME integration in our LMS, etc. >> >> >> The website that hosts xerte doesn?t support LDAP >> >> Since I want to setup some password protection for the site a have >> >> setup a password on the /httpdocs (root) folder of my site >> >> I created several users, each with their own password. >> >> I made sure that the same users were also created in Xerte via >> >> management.php >> >> >> According to the instructions in the installation manual I have to >> >> work >> >> with switch.php and put in the usernames and passwords >> >> In the version 1.8 which I downloaded there was no switch.php >> >> On the mailing list I found a switch.php and downloaded >> >> it and made the necessary changes >> >> Running that file gave a blank screen >> >> After some investigation I found that login_library.php >> >> was empty >> >> >> The fact that in the first place there was no switch.php present and >> >> the fact that login_library.php is empty gives me the impression that I >> >> did something wrong or that I use the wrong options. Please advise what >> >> to >> >> do next. Are there other installation instructions available? >> >> >> What do I want to accomplish? >> >> ? Setup Xerte on a webserver >> >> ? Give lectors access to Xerte by using a password, so they >> >> can >> >> work together on courses >> >> ? Integrate these courses in our Blackboard/Toledo LMS by >> >> using >> >> the IFRAME option >> >> ? We don?t want the courses being publicly available >> >> >> Thanks in advance for helping me ? >> >> Patrick Yperman >> >> Lector Handelswetenschappen en Bedrijfskunde >> >> Nieuw: HRM, KMO,Media & Event en Vastgoed >> >> ... > > [Message clipped] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: xerte.tiff Type: image/tiff Size: 671692 bytes Desc: not available URL: From paulo.fm.torres at gmail.com Sun Dec 30 16:06:49 2012 From: paulo.fm.torres at gmail.com (Paulo) Date: Sun, 30 Dec 2012 16:06:49 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 11 In-Reply-To: References: Message-ID: <2D4234F0-F572-4478-ABF1-1D49D0408A1E@gmail.com> Hi, i?ve exported a project from XOT 1.8 and imported it in XOT 1.9 but the project doesn?t work. What shoul i do? Regards, Paulo Torres A 29/12/2012, ?s 10:42, xerte-request at lists.nottingham.ac.uk escreveu: > 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: Xerte Digest, Vol 109, Issue 7 (Pat Lockley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 29 Dec 2012 10:42:51 +0000 > From: Pat Lockley > To: Xerte discussion list > Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 7 > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > I would guess the problem is what your Apple reports the mimetype as > > > On Sat, Dec 29, 2012 at 10:42 AM, Pat Lockley < > patrick.lockley at googlemail.com> wrote: > >> in website_code/php/import/import.php >> >> At the end >> >> else{ >> >> echo $_FILES['filenameuploaded']['type'] . "
"; >> >> echo IMPORT_ZIP_FAIL . ".****"; >> >> } >> >> it should show more that the error? This in in 1.9 XOT >> >> if you don't have echo $_FILES['filenameuploaded']['type'] . "
"; in >> the code in your file, add it in >> >> >> >> >> On Sat, Dec 29, 2012 at 4:22 AM, Paulo wrote: >> >>> Hi, >>> trying to upload a zip file generated by XOT i get this error: >>> >>> >>> >>> >>> I?d like some help here. It?s realy important that i can upload this file. >>> >>> Regards, >>> Paulo Torres >>> >>> >>> A 28/12/2012, ?s 23:40, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>> 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: Xerte Digest, Vol 109, Issue 6 (Paulo) >>> 2. Re: Xerte Digest, Vol 109, Issue 6 (Pat Lockley) >>> >>> >>> ---------------------------------------------------------------------- >>> >>> Message: 1 >>> Date: Fri, 28 Dec 2012 23:18:52 +0000 >>> From: Paulo >>> To: xerte at lists.nottingham.ac.uk >>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 >>> Message-ID: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA at gmail.com> >>> Content-Type: text/plain; charset=iso-8859-1 >>> >>> Hi, >>> i?m trying to import a project file to XOT but i get an error. >>> The file i?m importing is a zip file generated by XOT but i get an error >>> indicating, >>> that i can only import zip files. Well the file is a zip one. why do i >>> get this error? >>> >>> Regards, >>> Paulo Torres >>> A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>> 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: Xerte Digest, Vol 109, Issue 5 (Paulo) >>> >>> 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) >>> >>> >>> >>> ---------------------------------------------------------------------- >>> >>> >>> Message: 1 >>> >>> Date: Fri, 28 Dec 2012 12:21:36 +0000 >>> >>> From: Paulo >>> >>> To: xerte at lists.nottingham.ac.uk >>> >>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>> >>> Message-ID: >>> >>> Content-Type: text/plain; charset=iso-8859-1 >>> >>> >>> Hello, >>> >>> i?m uploading as an import of a project file. >>> >>> The upload process starts but when it reaches aproximatly 40% it stops. >>> >>> >>> Regards, >>> >>> Paulo Torres >>> >>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>> >>> 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: Upload project files error (Pat Lockley) >>> >>> >>> >>> ---------------------------------------------------------------------- >>> >>> >>> Message: 1 >>> >>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>> >>> From: Pat Lockley >>> >>> To: Xerte discussion list >>> >>> Subject: [Xerte] Re: Upload project files error >>> >>> Message-ID: >>> >>> >>> >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> >>> Hello, >>> >>> >>> Upload a picture to a project, or >>> >>> Upload as in import? >>> >>> >>> Pat >>> >>> >>> >>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: >>> >>> >>> Hi, >>> >>> i cant?t upload project files. Why is that so. >>> >>> >>> Regards, >>> >>> Paulo Torres >>> >>> >>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>> >>> 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: Rephrased: Setup a password protected environment for >>> >>> Xerte when no LDAP is available (Pat Lockley) >>> >>> >>> >>> ---------------------------------------------------------------------- >>> >>> >>> Message: 1 >>> >>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>> >>> From: Pat Lockley >>> >>> To: Xerte discussion list >>> >>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>> >>> for Xerte when no LDAP is available >>> >>> Message-ID: >>> >>> Content-Type: text/plain; charset="utf-8" >>> >>> >>> Hello, >>> >>> >>> Install the latest XOT >>> >>> >>> Open auth_config.php and uncomment the static option. >>> >>> >>> Then go to (I think) library/login/static.php >>> >>> >>> And look for passwords / usernames >>> >>> >>> Create a username / password for each lecturer >>> >>> >>> There isn't a way of setting default access to a specific domain - but >>> >>> you could alter play.php to limit access. >>> >>> >>> Not sure XOT can do all of what you want >>> >>> >>> Pat >>> >>> >>> On 26 Dec 2012, at 09:50, Yperman Patrick >>> >>> wrote: >>> >>> >>> Hi All, >>> >>> >>> I?m not sure if I?ve send this message to the right place. Is there >>> >>> another forum where to post my question? >>> >>> My previous mail did not appear in the mailing list, although I receive >>> >>> other mails coming from xerte at lists.nottingham.ac.uk >>> >>> >>> What do I want to accomplish? >>> >>> ? Setup Xerte on a webserver (I already did this) >>> >>> ? Give lectors access to Xerte by using a password, so they can >>> >>> work together on courses >>> >>> ? Preferably at first I only want lectors from the domain >>> >>> ?KHLim.be? to be granted access to the Xerte website >>> >>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>> >>> the IFRAME option. >>> >>> o This way I want to give students access to the courses we created >>> >>> in Xerte >>> >>> o Preferably I don?t want to setup a username and password for every >>> >>> student. How to best do this? >>> >>> >>> Below you can find information on what I already tried. >>> >>> >>> Any help is greatly appreciated >>> >>> >>> With kind regards >>> >>> Patrick Yperman >>> >>> Lector Handelswetenschappen en Bedrijfskunde >>> >>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>> >>> KHLim >>> >>> Associatie K.U.Leuven >>> >>> Katholieke Hogeschool Limburg >>> >>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>> >>> 3590 Diepenbeek >>> >>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>> >>> www.khlim.be >>> >>> >>> >>> >>> >>> >>> Van: Yperman Patrick >>> >>> Verzonden: vrijdag 21 december 2012 9:36 >>> >>> Aan: 'xerte at lists.nottingham.ac.uk' >>> >>> Onderwerp: login_library.php is empty >>> >>> >>> Hi All, >>> >>> >>> I?m trying to setup Xerte on a website and ran into some problems. >>> >>> >>> I did a full install from version V 1.8 >>> >>> I followed the instructions in the manual and everything was installed >>> >>> successfully >>> >>> The Xerte website works. I can create new courses and view them, work >>> >>> with IFRAME integration in our LMS, etc. >>> >>> >>> The website that hosts xerte doesn?t support LDAP >>> >>> Since I want to setup some password protection for the site a have >>> >>> setup a password on the /httpdocs (root) folder of my site >>> >>> I created several users, each with their own password. >>> >>> I made sure that the same users were also created in Xerte via >>> >>> management.php >>> >>> >>> According to the instructions in the installation manual I have to work >>> >>> with switch.php and put in the usernames and passwords >>> >>> In the version 1.8 which I downloaded there was no switch.php >>> >>> On the mailing list I found a switch.php and downloaded >>> >>> it and made the necessary changes >>> >>> Running that file gave a blank screen >>> >>> After some investigation I found that login_library.php >>> >>> was empty >>> >>> >>> The fact that in the first place there was no switch.php present and >>> >>> the fact that login_library.php is empty gives me the impression that I >>> >>> did something wrong or that I use the wrong options. Please advise what to >>> >>> do next. Are there other installation instructions available? >>> >>> >>> What do I want to accomplish? >>> >>> ? Setup Xerte on a webserver >>> >>> ? Give lectors access to Xerte by using a password, so they can >>> >>> work together on courses >>> >>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>> >>> the IFRAME option >>> >>> ? We don?t want the courses being publicly available >>> >>> >>> Thanks in advance for helping me ? >>> >>> Patrick Yperman >>> >>> Lector Handelswetenschappen en Bedrijfskunde >>> >>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>> >>> KHLim >>> >>> Associatie K.U.Leuven >>> >>> Katholieke Hogeschool Limburg >>> >>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>> >>> 3590 Diepenbeek >>> >>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>> >>> www.khlim.be >>> >>> >>> >>> >>> _______________________________________________ >>> >>> 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: < >>> >>> >>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>> >>> >>> >>> ------------------------------ >>> >>> >>> _______________________________________________ >>> >>> Xerte mailing list >>> >>> Xerte at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> >>> >>> End of Xerte Digest, Vol 109, Issue 3 >>> >>> ************************************* >>> >>> This message and any attachment are intended solely for the addressee >>> >>> and may contain confidential information. If you have received this >>> message >>> >>> in error, please send it back to me, and immediately delete it. Please >>> do >>> >>> not use, copy or disclose the information contained in this message or in >>> >>> any attachment. Any views or opinions expressed by the author of this >>> >>> email do not necessarily reflect the views of the University of >>> Nottingham. >>> >>> >>> This message has been checked for viruses but the contents of an >>> >>> attachment >>> >>> may still contain software viruses which could damage your computer >>> >>> system: >>> >>> you are advised to perform your own checks. Email communications with the >>> >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >>> _______________________________________________ >>> >>> Xerte mailing list >>> >>> Xerte at lists.nottingham.ac.uk >>> >>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>> >>> This message and any attachment are intended solely for the addressee and >>> >>> may contain confidential information. If you have received this message in >>> >>> error, please send it back to me, and immediately delete it. Please do >>> >>> not use, copy or disclose the information contained in this message or in >>> >>> any attachment. Any views or opinions expressed by the author of this >>> >>> email do not necessarily reflect the views of the University of >>> Nottingham. >>> >>> >>> This message has been checked for viruses but the contents of an >>> attachment >>> >>> may still contain software viruses which could damage your computer >>> 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/20121227/5f75ad34/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 109, Issue 5 >>> >>> ************************************* >>> >>> This message and any attachment are intended solely for the addressee and >>> may contain confidential information. If you have received this message in >>> error, please send it back to me, and immediately delete it. Please do >>> not use, copy or disclose the information contained in this message or in >>> any attachment. Any views or opinions expressed by the author of this >>> email do not necessarily reflect the views of the University of Nottingham. >>> >>> >>> This message has been checked for viruses but the contents of an >>> attachment >>> >>> may still contain software viruses which could damage your computer >>> system: >>> >>> you are advised to perform your own checks. Email communications with the >>> >>> University of Nottingham may be monitored as permitted by UK legislation. >>> >>> >>> >>> >>> >>> ------------------------------ >>> >>> >>> Message: 2 >>> >>> Date: Fri, 28 Dec 2012 13:25:20 +0000 >>> >>> From: Pat Lockley >>> >>> To: Xerte discussion list >>> >>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>> >>> Message-ID: >>> >>> >>> >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> >>> The file is too big I'd guess >>> >>> >>> Try increasing the file_upload / max_post_size in php.ini >>> >>> >>> Then restart apache >>> >>> >>> >>> On Fri, Dec 28, 2012 at 12:21 PM, Paulo >>> wrote: >>> >>> >>> Hello, >>> >>> i?m uploading as an import of a project file. >>> >>> The upload process starts but when it reaches aproximatly 40% it stops. >>> >>> >>> Regards, >>> >>> Paulo Torres >>> >>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>> >>> 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: Upload project files error (Pat Lockley) >>> >>> >>> >>> ---------------------------------------------------------------------- >>> >>> >>> Message: 1 >>> >>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>> >>> From: Pat Lockley >>> >>> To: Xerte discussion list >>> >>> Subject: [Xerte] Re: Upload project files error >>> >>> Message-ID: >>> >>> < >>> >>> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>> >>> Content-Type: text/plain; charset="iso-8859-1" >>> >>> >>> Hello, >>> >>> >>> Upload a picture to a project, or >>> >>> Upload as in import? >>> >>> >>> Pat >>> >>> >>> >>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >>> >>> wrote: >>> >>> >>> Hi, >>> >>> i cant?t upload project files. Why is that so. >>> >>> >>> Regards, >>> >>> Paulo Torres >>> >>> >>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>> >>> >>> 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: Rephrased: Setup a password protected environment for >>> >>> Xerte when no LDAP is available (Pat Lockley) >>> >>> >>> >>> ---------------------------------------------------------------------- >>> >>> >>> Message: 1 >>> >>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>> >>> From: Pat Lockley >>> >>> To: Xerte discussion list >>> >>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>> >>> for Xerte when no LDAP is available >>> >>> Message-ID: >>> >>> Content-Type: text/plain; charset="utf-8" >>> >>> >>> Hello, >>> >>> >>> Install the latest XOT >>> >>> >>> Open auth_config.php and uncomment the static option. >>> >>> >>> Then go to (I think) library/login/static.php >>> >>> >>> And look for passwords / usernames >>> >>> >>> Create a username / password for each lecturer >>> >>> >>> There isn't a way of setting default access to a specific domain - but >>> >>> you could alter play.php to limit access. >>> >>> >>> Not sure XOT can do all of what you want >>> >>> >>> Pat >>> >>> >>> On 26 Dec 2012, at 09:50, Yperman Patrick >>> >>> wrote: >>> >>> >>> Hi All, >>> >>> >>> I?m not sure if I?ve send this message to the right place. Is there >>> >>> another forum where to post my question? >>> >>> My previous mail did not appear in the mailing list, although I >>> >>> receive >>> >>> other mails coming from xerte at lists.nottingham.ac.uk >>> >>> >>> What do I want to accomplish? >>> >>> ? Setup Xerte on a webserver (I already did this) >>> >>> ? Give lectors access to Xerte by using a password, so they >>> >>> can >>> >>> work together on courses >>> >>> ? Preferably at first I only want lectors from the domain >>> >>> ?KHLim.be? to be granted access to the Xerte website >>> >>> ? Integrate these courses in our Blackboard/Toledo LMS by >>> >>> using >>> >>> the IFRAME option. >>> >>> o This way I want to give students access to the courses we created >>> >>> in Xerte >>> >>> o Preferably I don?t want to setup a username and password for >>> >>> every >>> >>> student. How to best do this? >>> >>> >>> Below you can find information on what I already tried. >>> >>> >>> Any help is greatly appreciated >>> >>> >>> With kind regards >>> >>> Patrick Yperman >>> >>> Lector Handelswetenschappen en Bedrijfskunde >>> >>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>> >>> KHLim >>> >>> Associatie K.U.Leuven >>> >>> Katholieke Hogeschool Limburg >>> >>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>> >>> 3590 Diepenbeek >>> >>> Tel. 011 230 890 - Fax 011 230 899 - >>> >>> patrick.yperman at khlim.be >>> >>> www.khlim.be >>> >>> >>> >>> >>> >>> >>> Van: Yperman Patrick >>> >>> Verzonden: vrijdag 21 december 2012 9:36 >>> >>> Aan: 'xerte at lists.nottingham.ac.uk' >>> >>> Onderwerp: login_library.php is empty >>> >>> >>> Hi All, >>> >>> >>> I?m trying to setup Xerte on a website and ran into some problems. >>> >>> >>> I did a full install from version V 1.8 >>> >>> I followed the instructions in the manual and everything was installed >>> >>> successfully >>> >>> The Xerte website works. I can create new courses and view them, work >>> >>> with IFRAME integration in our LMS, etc. >>> >>> >>> The website that hosts xerte doesn?t support LDAP >>> >>> Since I want to setup some password protection for the site a have >>> >>> setup a password on the /httpdocs (root) folder of my site >>> >>> I created several users, each with their own password. >>> >>> I made sure that the same users were also created in Xerte via >>> >>> management.php >>> >>> >>> According to the instructions in the installation manual I have to >>> >>> work >>> >>> with switch.php and put in the usernames and passwords >>> >>> In the version 1.8 which I downloaded there was no switch.php >>> >>> On the mailing list I found a switch.php and downloaded >>> >>> it and made the necessary changes >>> >>> Running that file gave a blank screen >>> >>> After some investigation I found that login_library.php >>> >>> was empty >>> >>> >>> The fact that in the first place there was no switch.php present and >>> >>> the fact that login_library.php is empty gives me the impression that I >>> >>> did something wrong or that I use the wrong options. Please advise what >>> >>> to >>> >>> do next. Are there other installation instructions available? >>> >>> >>> What do I want to accomplish? >>> >>> ? Setup Xerte on a webserver >>> >>> ? Give lectors access to Xerte by using a password, so they >>> >>> can >>> >>> work together on courses >>> >>> ? Integrate these courses in our Blackboard/Toledo LMS by >>> >>> using >>> >>> the IFRAME option >>> >>> ? We don?t want the courses being publicly available >>> >>> >>> Thanks in advance for helping me ? >>> >>> Patrick Yperman >>> >>> Lector Handelswetenschappen en Bedrijfskunde >>> >>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>> >>> ... >> >> [Message clipped] > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: xerte.tiff > Type: image/tiff > Size: 671692 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 109, Issue 11 > ************************************** > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer 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 Sun Dec 30 16:32:25 2012 From: patrick.lockley at googlemail.com (Pat Lockley) Date: Sun, 30 Dec 2012 16:32:25 +0000 Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 11 In-Reply-To: <2D4234F0-F572-4478-ABF1-1D49D0408A1E@gmail.com> References: <2D4234F0-F572-4478-ABF1-1D49D0408A1E@gmail.com> Message-ID: <9EC167E7-FEC0-41E0-A1EE-EB123B33E174@googlemail.com> Did you look in the php file? On 30 Dec 2012, at 16:06, Paulo wrote: > Hi, > i?ve exported a project from XOT 1.8 and imported it in XOT 1.9 > but the project doesn?t work. > What shoul i do? > > Regards, > Paulo Torres > A 29/12/2012, ?s 10:42, xerte-request at lists.nottingham.ac.uk escreveu: > >> 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: Xerte Digest, Vol 109, Issue 7 (Pat Lockley) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Sat, 29 Dec 2012 10:42:51 +0000 >> From: Pat Lockley >> To: Xerte discussion list >> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 7 >> Message-ID: >> >> Content-Type: text/plain; charset="iso-8859-1" >> >> I would guess the problem is what your Apple reports the mimetype as >> >> >> On Sat, Dec 29, 2012 at 10:42 AM, Pat Lockley < >> patrick.lockley at googlemail.com> wrote: >> >>> in website_code/php/import/import.php >>> >>> At the end >>> >>> else{ >>> >>> echo $_FILES['filenameuploaded']['type'] . "
"; >>> >>> echo IMPORT_ZIP_FAIL . ".****"; >>> >>> } >>> >>> it should show more that the error? This in in 1.9 XOT >>> >>> if you don't have echo $_FILES['filenameuploaded']['type'] . "
"; in >>> the code in your file, add it in >>> >>> >>> >>> >>> On Sat, Dec 29, 2012 at 4:22 AM, Paulo wrote: >>> >>>> Hi, >>>> trying to upload a zip file generated by XOT i get this error: >>>> >>>> >>>> >>>> >>>> I?d like some help here. It?s realy important that i can upload this file. >>>> >>>> Regards, >>>> Paulo Torres >>>> >>>> >>>> A 28/12/2012, ?s 23:40, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>> 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: Xerte Digest, Vol 109, Issue 6 (Paulo) >>>> 2. Re: Xerte Digest, Vol 109, Issue 6 (Pat Lockley) >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> Message: 1 >>>> Date: Fri, 28 Dec 2012 23:18:52 +0000 >>>> From: Paulo >>>> To: xerte at lists.nottingham.ac.uk >>>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 6 >>>> Message-ID: <7E2E4E6A-16E1-48F7-BFF8-B1E9AABF3CFA at gmail.com> >>>> Content-Type: text/plain; charset=iso-8859-1 >>>> >>>> Hi, >>>> i?m trying to import a project file to XOT but i get an error. >>>> The file i?m importing is a zip file generated by XOT but i get an error >>>> indicating, >>>> that i can only import zip files. Well the file is a zip one. why do i >>>> get this error? >>>> >>>> Regards, >>>> Paulo Torres >>>> A 28/12/2012, ?s 13:25, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>> 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: Xerte Digest, Vol 109, Issue 5 (Paulo) >>>> >>>> 2. Re: Xerte Digest, Vol 109, Issue 5 (Pat Lockley) >>>> >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> >>>> Message: 1 >>>> >>>> Date: Fri, 28 Dec 2012 12:21:36 +0000 >>>> >>>> From: Paulo >>>> >>>> To: xerte at lists.nottingham.ac.uk >>>> >>>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>>> >>>> Message-ID: >>>> >>>> Content-Type: text/plain; charset=iso-8859-1 >>>> >>>> >>>> Hello, >>>> >>>> i?m uploading as an import of a project file. >>>> >>>> The upload process starts but when it reaches aproximatly 40% it stops. >>>> >>>> >>>> Regards, >>>> >>>> Paulo Torres >>>> >>>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>> >>>> 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: Upload project files error (Pat Lockley) >>>> >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> >>>> Message: 1 >>>> >>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>> >>>> From: Pat Lockley >>>> >>>> To: Xerte discussion list >>>> >>>> Subject: [Xerte] Re: Upload project files error >>>> >>>> Message-ID: >>>> >>>> >>>> >>>> Content-Type: text/plain; charset="iso-8859-1" >>>> >>>> >>>> Hello, >>>> >>>> >>>> Upload a picture to a project, or >>>> >>>> Upload as in import? >>>> >>>> >>>> Pat >>>> >>>> >>>> >>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo wrote: >>>> >>>> >>>> Hi, >>>> >>>> i cant?t upload project files. Why is that so. >>>> >>>> >>>> Regards, >>>> >>>> Paulo Torres >>>> >>>> >>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>> >>>> 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: Rephrased: Setup a password protected environment for >>>> >>>> Xerte when no LDAP is available (Pat Lockley) >>>> >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> >>>> Message: 1 >>>> >>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>> >>>> From: Pat Lockley >>>> >>>> To: Xerte discussion list >>>> >>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>> >>>> for Xerte when no LDAP is available >>>> >>>> Message-ID: >>>> >>>> Content-Type: text/plain; charset="utf-8" >>>> >>>> >>>> Hello, >>>> >>>> >>>> Install the latest XOT >>>> >>>> >>>> Open auth_config.php and uncomment the static option. >>>> >>>> >>>> Then go to (I think) library/login/static.php >>>> >>>> >>>> And look for passwords / usernames >>>> >>>> >>>> Create a username / password for each lecturer >>>> >>>> >>>> There isn't a way of setting default access to a specific domain - but >>>> >>>> you could alter play.php to limit access. >>>> >>>> >>>> Not sure XOT can do all of what you want >>>> >>>> >>>> Pat >>>> >>>> >>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>> >>>> wrote: >>>> >>>> >>>> Hi All, >>>> >>>> >>>> I?m not sure if I?ve send this message to the right place. Is there >>>> >>>> another forum where to post my question? >>>> >>>> My previous mail did not appear in the mailing list, although I receive >>>> >>>> other mails coming from xerte at lists.nottingham.ac.uk >>>> >>>> >>>> What do I want to accomplish? >>>> >>>> ? Setup Xerte on a webserver (I already did this) >>>> >>>> ? Give lectors access to Xerte by using a password, so they can >>>> >>>> work together on courses >>>> >>>> ? Preferably at first I only want lectors from the domain >>>> >>>> ?KHLim.be? to be granted access to the Xerte website >>>> >>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>>> >>>> the IFRAME option. >>>> >>>> o This way I want to give students access to the courses we created >>>> >>>> in Xerte >>>> >>>> o Preferably I don?t want to setup a username and password for every >>>> >>>> student. How to best do this? >>>> >>>> >>>> Below you can find information on what I already tried. >>>> >>>> >>>> Any help is greatly appreciated >>>> >>>> >>>> With kind regards >>>> >>>> Patrick Yperman >>>> >>>> Lector Handelswetenschappen en Bedrijfskunde >>>> >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>> >>>> KHLim >>>> >>>> Associatie K.U.Leuven >>>> >>>> Katholieke Hogeschool Limburg >>>> >>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>> >>>> 3590 Diepenbeek >>>> >>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>>> >>>> www.khlim.be >>>> >>>> >>>> >>>> >>>> >>>> >>>> Van: Yperman Patrick >>>> >>>> Verzonden: vrijdag 21 december 2012 9:36 >>>> >>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>> >>>> Onderwerp: login_library.php is empty >>>> >>>> >>>> Hi All, >>>> >>>> >>>> I?m trying to setup Xerte on a website and ran into some problems. >>>> >>>> >>>> I did a full install from version V 1.8 >>>> >>>> I followed the instructions in the manual and everything was installed >>>> >>>> successfully >>>> >>>> The Xerte website works. I can create new courses and view them, work >>>> >>>> with IFRAME integration in our LMS, etc. >>>> >>>> >>>> The website that hosts xerte doesn?t support LDAP >>>> >>>> Since I want to setup some password protection for the site a have >>>> >>>> setup a password on the /httpdocs (root) folder of my site >>>> >>>> I created several users, each with their own password. >>>> >>>> I made sure that the same users were also created in Xerte via >>>> >>>> management.php >>>> >>>> >>>> According to the instructions in the installation manual I have to work >>>> >>>> with switch.php and put in the usernames and passwords >>>> >>>> In the version 1.8 which I downloaded there was no switch.php >>>> >>>> On the mailing list I found a switch.php and downloaded >>>> >>>> it and made the necessary changes >>>> >>>> Running that file gave a blank screen >>>> >>>> After some investigation I found that login_library.php >>>> >>>> was empty >>>> >>>> >>>> The fact that in the first place there was no switch.php present and >>>> >>>> the fact that login_library.php is empty gives me the impression that I >>>> >>>> did something wrong or that I use the wrong options. Please advise what to >>>> >>>> do next. Are there other installation instructions available? >>>> >>>> >>>> What do I want to accomplish? >>>> >>>> ? Setup Xerte on a webserver >>>> >>>> ? Give lectors access to Xerte by using a password, so they can >>>> >>>> work together on courses >>>> >>>> ? Integrate these courses in our Blackboard/Toledo LMS by using >>>> >>>> the IFRAME option >>>> >>>> ? We don?t want the courses being publicly available >>>> >>>> >>>> Thanks in advance for helping me ? >>>> >>>> Patrick Yperman >>>> >>>> Lector Handelswetenschappen en Bedrijfskunde >>>> >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>> >>>> KHLim >>>> >>>> Associatie K.U.Leuven >>>> >>>> Katholieke Hogeschool Limburg >>>> >>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>> >>>> 3590 Diepenbeek >>>> >>>> Tel. 011 230 890 - Fax 011 230 899 - patrick.yperman at khlim.be >>>> >>>> www.khlim.be >>>> >>>> >>>> >>>> >>>> _______________________________________________ >>>> >>>> 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: < >>>> >>>> >>>> http://lists.nottingham.ac.uk/pipermail/xerte/attachments/20121226/6027d3c1/attachment.html >>>> >>>> >>>> >>>> ------------------------------ >>>> >>>> >>>> _______________________________________________ >>>> >>>> Xerte mailing list >>>> >>>> Xerte at lists.nottingham.ac.uk >>>> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> >>>> >>>> End of Xerte Digest, Vol 109, Issue 3 >>>> >>>> ************************************* >>>> >>>> This message and any attachment are intended solely for the addressee >>>> >>>> and may contain confidential information. If you have received this >>>> message >>>> >>>> in error, please send it back to me, and immediately delete it. Please >>>> do >>>> >>>> not use, copy or disclose the information contained in this message or in >>>> >>>> any attachment. Any views or opinions expressed by the author of this >>>> >>>> email do not necessarily reflect the views of the University of >>>> Nottingham. >>>> >>>> >>>> This message has been checked for viruses but the contents of an >>>> >>>> attachment >>>> >>>> may still contain software viruses which could damage your computer >>>> >>>> system: >>>> >>>> you are advised to perform your own checks. Email communications with the >>>> >>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>>> >>>> _______________________________________________ >>>> >>>> Xerte mailing list >>>> >>>> Xerte at lists.nottingham.ac.uk >>>> >>>> http://lists.nottingham.ac.uk/mailman/listinfo/xerte >>>> >>>> This message and any attachment are intended solely for the addressee and >>>> >>>> may contain confidential information. If you have received this message in >>>> >>>> error, please send it back to me, and immediately delete it. Please do >>>> >>>> not use, copy or disclose the information contained in this message or in >>>> >>>> any attachment. Any views or opinions expressed by the author of this >>>> >>>> email do not necessarily reflect the views of the University of >>>> Nottingham. >>>> >>>> >>>> This message has been checked for viruses but the contents of an >>>> attachment >>>> >>>> may still contain software viruses which could damage your computer >>>> 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/20121227/5f75ad34/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 109, Issue 5 >>>> >>>> ************************************* >>>> >>>> This message and any attachment are intended solely for the addressee and >>>> may contain confidential information. If you have received this message in >>>> error, please send it back to me, and immediately delete it. Please do >>>> not use, copy or disclose the information contained in this message or in >>>> any attachment. Any views or opinions expressed by the author of this >>>> email do not necessarily reflect the views of the University of Nottingham. >>>> >>>> >>>> This message has been checked for viruses but the contents of an >>>> attachment >>>> >>>> may still contain software viruses which could damage your computer >>>> system: >>>> >>>> you are advised to perform your own checks. Email communications with the >>>> >>>> University of Nottingham may be monitored as permitted by UK legislation. >>>> >>>> >>>> >>>> >>>> >>>> ------------------------------ >>>> >>>> >>>> Message: 2 >>>> >>>> Date: Fri, 28 Dec 2012 13:25:20 +0000 >>>> >>>> From: Pat Lockley >>>> >>>> To: Xerte discussion list >>>> >>>> Subject: [Xerte] Re: Xerte Digest, Vol 109, Issue 5 >>>> >>>> Message-ID: >>>> >>>> >>>> >>>> Content-Type: text/plain; charset="iso-8859-1" >>>> >>>> >>>> The file is too big I'd guess >>>> >>>> >>>> Try increasing the file_upload / max_post_size in php.ini >>>> >>>> >>>> Then restart apache >>>> >>>> >>>> >>>> On Fri, Dec 28, 2012 at 12:21 PM, Paulo >>>> wrote: >>>> >>>> >>>> Hello, >>>> >>>> i?m uploading as an import of a project file. >>>> >>>> The upload process starts but when it reaches aproximatly 40% it stops. >>>> >>>> >>>> Regards, >>>> >>>> Paulo Torres >>>> >>>> A 28/12/2012, ?s 12:00, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>> >>>> 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: Upload project files error (Pat Lockley) >>>> >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> >>>> Message: 1 >>>> >>>> Date: Thu, 27 Dec 2012 12:14:19 +0000 >>>> >>>> From: Pat Lockley >>>> >>>> To: Xerte discussion list >>>> >>>> Subject: [Xerte] Re: Upload project files error >>>> >>>> Message-ID: >>>> >>>> < >>>> >>>> CAO2PinN7teH1WNfpxKJ9iGE9Lyfk_Gxtzhogkq+YYzKMkwA7bA at mail.gmail.com> >>>> >>>> Content-Type: text/plain; charset="iso-8859-1" >>>> >>>> >>>> Hello, >>>> >>>> >>>> Upload a picture to a project, or >>>> >>>> Upload as in import? >>>> >>>> >>>> Pat >>>> >>>> >>>> >>>> On Thu, Dec 27, 2012 at 1:26 AM, Paulo >>>> >>>> wrote: >>>> >>>> >>>> Hi, >>>> >>>> i cant?t upload project files. Why is that so. >>>> >>>> >>>> Regards, >>>> >>>> Paulo Torres >>>> >>>> >>>> A 26/12/2012, ?s 11:19, xerte-request at lists.nottingham.ac.uk escreveu: >>>> >>>> >>>> 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: Rephrased: Setup a password protected environment for >>>> >>>> Xerte when no LDAP is available (Pat Lockley) >>>> >>>> >>>> >>>> ---------------------------------------------------------------------- >>>> >>>> >>>> Message: 1 >>>> >>>> Date: Wed, 26 Dec 2012 11:18:54 +0000 >>>> >>>> From: Pat Lockley >>>> >>>> To: Xerte discussion list >>>> >>>> Subject: [Xerte] Re: Rephrased: Setup a password protected environment >>>> >>>> for Xerte when no LDAP is available >>>> >>>> Message-ID: >>>> >>>> Content-Type: text/plain; charset="utf-8" >>>> >>>> >>>> Hello, >>>> >>>> >>>> Install the latest XOT >>>> >>>> >>>> Open auth_config.php and uncomment the static option. >>>> >>>> >>>> Then go to (I think) library/login/static.php >>>> >>>> >>>> And look for passwords / usernames >>>> >>>> >>>> Create a username / password for each lecturer >>>> >>>> >>>> There isn't a way of setting default access to a specific domain - but >>>> >>>> you could alter play.php to limit access. >>>> >>>> >>>> Not sure XOT can do all of what you want >>>> >>>> >>>> Pat >>>> >>>> >>>> On 26 Dec 2012, at 09:50, Yperman Patrick >>>> >>>> wrote: >>>> >>>> >>>> Hi All, >>>> >>>> >>>> I?m not sure if I?ve send this message to the right place. Is there >>>> >>>> another forum where to post my question? >>>> >>>> My previous mail did not appear in the mailing list, although I >>>> >>>> receive >>>> >>>> other mails coming from xerte at lists.nottingham.ac.uk >>>> >>>> >>>> What do I want to accomplish? >>>> >>>> ? Setup Xerte on a webserver (I already did this) >>>> >>>> ? Give lectors access to Xerte by using a password, so they >>>> >>>> can >>>> >>>> work together on courses >>>> >>>> ? Preferably at first I only want lectors from the domain >>>> >>>> ?KHLim.be? to be granted access to the Xerte website >>>> >>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>> >>>> using >>>> >>>> the IFRAME option. >>>> >>>> o This way I want to give students access to the courses we created >>>> >>>> in Xerte >>>> >>>> o Preferably I don?t want to setup a username and password for >>>> >>>> every >>>> >>>> student. How to best do this? >>>> >>>> >>>> Below you can find information on what I already tried. >>>> >>>> >>>> Any help is greatly appreciated >>>> >>>> >>>> With kind regards >>>> >>>> Patrick Yperman >>>> >>>> Lector Handelswetenschappen en Bedrijfskunde >>>> >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>> >>>> KHLim >>>> >>>> Associatie K.U.Leuven >>>> >>>> Katholieke Hogeschool Limburg >>>> >>>> Campus Diepenbeek, Agoralaan gebouw B , bus 2, >>>> >>>> 3590 Diepenbeek >>>> >>>> Tel. 011 230 890 - Fax 011 230 899 - >>>> >>>> patrick.yperman at khlim.be >>>> >>>> www.khlim.be >>>> >>>> >>>> >>>> >>>> >>>> >>>> Van: Yperman Patrick >>>> >>>> Verzonden: vrijdag 21 december 2012 9:36 >>>> >>>> Aan: 'xerte at lists.nottingham.ac.uk' >>>> >>>> Onderwerp: login_library.php is empty >>>> >>>> >>>> Hi All, >>>> >>>> >>>> I?m trying to setup Xerte on a website and ran into some problems. >>>> >>>> >>>> I did a full install from version V 1.8 >>>> >>>> I followed the instructions in the manual and everything was installed >>>> >>>> successfully >>>> >>>> The Xerte website works. I can create new courses and view them, work >>>> >>>> with IFRAME integration in our LMS, etc. >>>> >>>> >>>> The website that hosts xerte doesn?t support LDAP >>>> >>>> Since I want to setup some password protection for the site a have >>>> >>>> setup a password on the /httpdocs (root) folder of my site >>>> >>>> I created several users, each with their own password. >>>> >>>> I made sure that the same users were also created in Xerte via >>>> >>>> management.php >>>> >>>> >>>> According to the instructions in the installation manual I have to >>>> >>>> work >>>> >>>> with switch.php and put in the usernames and passwords >>>> >>>> In the version 1.8 which I downloaded there was no switch.php >>>> >>>> On the mailing list I found a switch.php and downloaded >>>> >>>> it and made the necessary changes >>>> >>>> Running that file gave a blank screen >>>> >>>> After some investigation I found that login_library.php >>>> >>>> was empty >>>> >>>> >>>> The fact that in the first place there was no switch.php present and >>>> >>>> the fact that login_library.php is empty gives me the impression that I >>>> >>>> did something wrong or that I use the wrong options. Please advise what >>>> >>>> to >>>> >>>> do next. Are there other installation instructions available? >>>> >>>> >>>> What do I want to accomplish? >>>> >>>> ? Setup Xerte on a webserver >>>> >>>> ? Give lectors access to Xerte by using a password, so they >>>> >>>> can >>>> >>>> work together on courses >>>> >>>> ? Integrate these courses in our Blackboard/Toledo LMS by >>>> >>>> using >>>> >>>> the IFRAME option >>>> >>>> ? We don?t want the courses being publicly available >>>> >>>> >>>> Thanks in advance for helping me ? >>>> >>>> Patrick Yperman >>>> >>>> Lector Handelswetenschappen en Bedrijfskunde >>>> >>>> Nieuw: HRM, KMO,Media & Event en Vastgoed >>>> >>>> ... >>> >>> [Message clipped] >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: >> -------------- next part -------------- >> A non-text attachment was scrubbed... >> Name: xerte.tiff >> Type: image/tiff >> Size: 671692 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 109, Issue 11 >> ************************************** >> This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an attachment >> may still contain software viruses which could damage your computer system: >> you are advised to perform your own checks. Email communications with the >> University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte mailing list > Xerte at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system: > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation.