From brsmith at akamai.com Mon Nov 3 17:13:26 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Mon, 3 Nov 2014 17:13:26 +0000 Subject: [Xerte-dev] New pull requests, and a style question Message-ID: <2CDDAA5D-5912-4FA6-BC09-863F97F51B88@akamai.com> Hello all, I just submitted my first couple of pull requests to Xerte, which fix a number of issues I had trying to go through the setup process with the devel code. One of the pull requests is a fix for this issue: https://github.com/thexerteproject/xerteonlinetoolkits/issues/83 In the comments, starting from here, there is some discussion about a stylistic question: if you have an if{} block that results in an exit(), do you need to put the stuff that comes after it in an else{}? Personally my answer to that is ?no?, and this is reflected in the fix I submitted, but pgogy suggested I mention it here to see if others have opinions. ?also, just to be sure I?m in the right place, this github repo is where active development on the latest version of Xerte is happening, correct? ?Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: Message signed with OpenPGP using GPGMail URL: From Julian.Tenney at nottingham.ac.uk Tue Nov 4 09:44:12 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 4 Nov 2014 09:44:12 +0000 Subject: [Xerte-dev] Re: New pull requests, and a style question In-Reply-To: <2CDDAA5D-5912-4FA6-BC09-863F97F51B88@akamai.com> References: <2CDDAA5D-5912-4FA6-BC09-863F97F51B88@akamai.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E340F2@EXCHANGE1.ad.nottingham.ac.uk> Hi Brad, Many thanks. Somebody needs to review the pull requests. We also need you to sign a contributors agreement - as you know we are in the process of transitioning to the Apereo Foundation, and as part of the incubation process we are putting in place the agreements. We might need your employer to sign one as well, depending on your situation... can I put you in touch with Anna Gardner, who is helping with the legal stuff? Personally I prefer... if (somebadshit){ exit(); } // we didn't exit - rest of code here doStuff(); ...but I don't think anyone is going to start a holy war about it. You're in the right place for the github. Julian From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 03 November 2014 17:13 To: For Xerte technical developers Subject: [Xerte-dev] New pull requests, and a style question Hello all, I just submitted my first couple of pull requests to Xerte, which fix a number of issues I had trying to go through the setup process with the devel code. One of the pull requests is a fix for this issue: https://github.com/thexerteproject/xerteonlinetoolkits/issues/83 In the comments, starting from here, there is some discussion about a stylistic question: if you have an if{} block that results in an exit(), do you need to put the stuff that comes after it in an else{}? Personally my answer to that is "no", and this is reflected in the fix I submitted, but pgogy suggested I mention it here to see if others have opinions. ...also, just to be sure I'm in the right place, this github repo is where active development on the latest version of Xerte is happening, correct? -Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: From brsmith at akamai.com Tue Nov 4 17:27:35 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Tue, 4 Nov 2014 17:27:35 +0000 Subject: [Xerte-dev] Xerte-develop in production? Message-ID: Is anyone using the latest xerte code to create production courseware? I don?t need to worry too much about supporting people other than myself right now, but I do need to be able to expect it to produce usable SCORM (or whatever) content that I can host in Moodle. Roughly how much pain am I signing up for if I try doing this in the develop branch, and if it falls apart should I be able to migrate my projects back to the old version? Thanks! ?Brad -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: Message signed with OpenPGP using GPGMail URL: From ronm at mitchellmedia.co.uk Tue Nov 4 17:58:16 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Tue, 4 Nov 2014 17:58:16 -0000 Subject: [Xerte-dev] Re: Xerte-develop in production? In-Reply-To: References: Message-ID: <00ec01cff858$e9fdab40$bdf901c0$@co.uk> Hi Brad sorry that you are waiting for responses to a number of questions and welcome! At the moment we're a relatively small but dedicated developer community and everyone juggles this with other work so sometimes it can seem very quiet. It's a busy time with all sorts going on, including the move to Apereo that Julian has mentioned, so the developer questions here and on github may take a while for people to reply. The develop code is very much beta at the moment largely because of the new editor work. Most of it works but there are known and no doubt unknown issues so it depends on what page types you need to use and what you need to achieve. My advice would be to use the 2.1 code for real projects and test stuff with the develop branch if you want to do more with multiple images etc. As you clearly know code there's not much you can't do with the 2.1 code and some html/css/js etc and the main focus of the develop branch work at the moment is the new non-flash editor and making it easier for non-specialists non-coders by providing a wysiwyg editor. All that said we'll certainly welcome your contribution to testing the develop branch and even better helping to fix the issues but do also respond to julian about the Apereo agreement etc. HTH Ron -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 04 November 2014 17:28 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Xerte-develop in production? Is anyone using the latest xerte code to create production courseware? I don't need to worry too much about supporting people other than myself right now, but I do need to be able to expect it to produce usable SCORM (or whatever) content that I can host in Moodle. Roughly how much pain am I signing up for if I try doing this in the develop branch, and if it falls apart should I be able to migrate my projects back to the old version? Thanks! -Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. From Julian.Tenney at nottingham.ac.uk Wed Nov 5 09:21:25 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 5 Nov 2014 09:21:25 +0000 Subject: [Xerte-dev] Re: Xerte-develop in production? In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E34670@EXCHANGE1.ad.nottingham.ac.uk> Nothing is changing on the content side of things, so you ought to be able to move projects between develop code and production code without too much problem. -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 04 November 2014 17:28 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Xerte-develop in production? Is anyone using the latest xerte code to create production courseware? I don't need to worry too much about supporting people other than myself right now, but I do need to be able to expect it to produce usable SCORM (or whatever) content that I can host in Moodle. Roughly how much pain am I signing up for if I try doing this in the develop branch, and if it falls apart should I be able to migrate my projects back to the old version? Thanks! -Brad From djezarsara at gmail.com Wed Nov 5 14:42:09 2014 From: djezarsara at gmail.com (sara djezar) Date: Wed, 5 Nov 2014 15:42:09 +0100 Subject: [Xerte-dev] modification of hotspot image template Message-ID: Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please J -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Wed Nov 5 14:46:10 2014 From: djezarsara at gmail.com (sara djezar) Date: Wed, 5 Nov 2014 15:46:10 +0100 Subject: [Xerte-dev] liste submissions Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Nov 5 14:52:55 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 5 Nov 2014 14:52:55 +0000 Subject: [Xerte-dev] Re: modification of hotspot image template In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E349D1@EXCHANGE1.ad.nottingham.ac.uk> Get the text you need, get a screenshot of it and turn it into an image. Use that in the interaction. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 05 November 2014 14:42 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] modification of hotspot image template Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Thu Nov 6 15:39:14 2014 From: djezarsara at gmail.com (sara djezar) Date: Thu, 6 Nov 2014 16:39:14 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 In-Reply-To: References: Message-ID: hi everyone i have an other problem: i want to transforme the hotspot image template into hotspot image sound i have created this xml file : - - and this page wizard : i have connected the xml file to the new template and this is my results : 2014-11-06 13:00 GMT+01:00 : > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. modification of hotspot image template (sara djezar) > 2. liste submissions (sara djezar) > 3. Re: modification of hotspot image template (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 5 Nov 2014 15:42:09 +0100 > From: sara djezar > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] modification of hotspot image template > Message-ID: > < > CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Hello developers! > > I need your help . > > I want to make some modifications in the template ? hotspot image ? so > that I can insert a text ( instead of image) and when user click in each > area ( in this case line ) he can see another text (definition for example > ) . can you help me to make the xml code please J > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/9abeac2b/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Wed, 5 Nov 2014 15:46:10 +0100 > From: sara djezar > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] liste submissions > Message-ID: > 79rVBy0Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/e17a38f0/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Wed, 5 Nov 2014 14:52:55 +0000 > From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: modification of hotspot image template > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="utf-8" > > Get the text you need, get a screenshot of it and turn it into an image. > Use that in the interaction. > > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar > Sent: 05 November 2014 14:42 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] modification of hotspot image template > > Hello developers! > I need your help . > I want to make some modifications in the template ? hotspot image ? so > that I can insert a text ( instead of image) and when user click in each > area ( in this case line ) he can see another text (definition for example > ) . can you help me to make the xml code please ? > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/7c9d5fa4/attachment-0001.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, 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. > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: result.PNG Type: image/png Size: 56957 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Thu Nov 6 15:41:17 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 6 Nov 2014 15:41:17 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E34F63@EXCHANGE1.ad.nottingham.ac.uk> Almost certainly this is due to an error in the xml somewhere. Have you run it through a validator? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 06 November 2014 15:39 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 hi everyone i have an other problem: i want to transforme the hotspot image template into hotspot image sound i have created this xml file : - - and this page wizard : i have connected the xml file to the new template and this is my results : 2014-11-06 13:00 GMT+01:00 >: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. modification of hotspot image template (sara djezar) 2. liste submissions (sara djezar) 3. Re: modification of hotspot image template (Julian Tenney) ---------------------------------------------------------------------- Message: 1 Date: Wed, 5 Nov 2014 15:42:09 +0100 From: sara djezar > To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] modification of hotspot image template Message-ID: > Content-Type: text/plain; charset="utf-8" Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please J -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Wed, 5 Nov 2014 15:46:10 +0100 From: sara djezar > To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] liste submissions Message-ID: > Content-Type: text/plain; charset="utf-8" -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Wed, 5 Nov 2014 14:52:55 +0000 From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: modification of hotspot image template Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk> Content-Type: text/plain; charset="utf-8" Get the text you need, get a screenshot of it and turn it into an image. Use that in the interaction. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 05 November 2014 14:42 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] modification of hotspot image template Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please ? -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Thu Nov 6 15:50:11 2014 From: djezarsara at gmail.com (sara djezar) Date: Thu, 6 Nov 2014 16:50:11 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 5 In-Reply-To: References: Message-ID: yes i have used notepad++ 2014-11-06 16:41 GMT+01:00 : > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: Xerte-dev Digest, Vol 39, Issue 3 (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 6 Nov 2014 15:41:17 +0000 > From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E34F63 at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="utf-8" > > Almost certainly this is due to an error in the xml somewhere. Have you > run it through a validator? > > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar > Sent: 06 November 2014 15:39 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > > hi everyone i have an other problem: i want to transforme the hotspot > image template into hotspot image sound i have created this xml file : > > > - > > > - interactivity="Click Explore" > tip="Exhibit the behaviour mind map" imageWidth="Large" > url=" FileLocation + 'media/Exhibit the > behaviour.ping'" > text="
  • Click any of the labels on the mind map to > hear information about the topic.
  • Make a note of any ideas that > are new to you.
  • This is an example of the Hotspot Image Sound Page > Wizard. This Page Wizard is not available in the Page Templates project > wide template as of October 2010. This is an enhancement of the > Hotspot Image Page Wizard, which is included in Page Templates. The mind > map was created using Free mind, an open source Mind Mapping program. The > voice over was created using State from paranormal.com< > http://paranormal.com> and Audacity to slow down the rate of speech by > about 10%. I found that using text to speech created a consistent voice. In > earlier projects I used live voices, which I could not later match with if > I wanted to add further speech after the speaker was no longer > available." linkID=""> > displayText="No" name="Result of Trigger" > audio="FileLocation + 'media/exhibit_trigger.mp3'"/> > > displayText="No" name="Tutor trap" audio="FileLocation + > 'media/exhibit_tutorTrap.mp3'"/> > > displayText="No" name="Responsibility" audio="FileLocation > + 'media/exhibit_responsibilities.mp3'"/> > > displayText="No" name="Outcomes" audio="FileLocation + > 'media/exhibit_outcomes.mp3'"/> > > displayText="No" name="Exhibit the behaviour" > audio="FileLocation + 'media/exhibit_exhibit.mp3'"/> > > displayText="No" name="Competence" audio="FileLocation + > 'media/exhibit_competence.mp3'"/> > > displayText="No" name="Practice" audio="FileLocation + > 'media/exhibit_practice.mp3'"/> > > displayText="No" name="Frequency" audio="FileLocation + > 'media/exhibit_frequency.mp3'"/> > > displayText="No" name="Sleep and performance" audio="FileLocation + > 'media/exhibit_sleep.mp3'"/> > >
    > >
    > > > and this page wizard : > > > > > > > > > > options="Small,Medium,Large,Full" width="100"/> > > > > > width="100"/> > > > > > hotspot" displayText="Yes" x="0" y="0" w="100" h="100" /> > > > > > > > icon="icLayers" remove="true"> > > > > width="100"/> > > > i have connected the xml file to the new template and this is my results : > > > > > > 2014-11-06 13:00 GMT+01:00 >: > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk xerte-dev-request at lists.nottingham.ac.uk> > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk xerte-dev-owner at lists.nottingham.ac.uk> > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. modification of hotspot image template (sara djezar) > 2. liste submissions (sara djezar) > 3. Re: modification of hotspot image template (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 5 Nov 2014 15:42:09 +0100 > From: sara djezar > > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > Subject: [Xerte-dev] modification of hotspot image template > Message-ID: > < > CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com>> > Content-Type: text/plain; charset="utf-8" > > Hello developers! > > I need your help . > > I want to make some modifications in the template ? hotspot image ? so > that I can insert a text ( instead of image) and when user click in each > area ( in this case line ) he can see another text (definition for example > ) . can you help me to make the xml code please J > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/9abeac2b/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Wed, 5 Nov 2014 15:46:10 +0100 > From: sara djezar > > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > Subject: [Xerte-dev] liste submissions > Message-ID: > 79rVBy0Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/e17a38f0/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Wed, 5 Nov 2014 14:52:55 +0000 > From: Julian Tenney Julian.Tenney at nottingham.ac.uk>> > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: modification of hotspot image template > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk>> > > Content-Type: text/plain; charset="utf-8" > > Get the text you need, get a screenshot of it and turn it into an image. > Use that in the interaction. > > From: xerte-dev-bounces at lists.nottingham.ac.uk xerte-dev-bounces at lists.nottingham.ac.uk> [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk xerte-dev-bounces at lists.nottingham.ac.uk>] On Behalf Of sara djezar > Sent: 05 November 2014 14:42 > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > Subject: [Xerte-dev] modification of hotspot image template > > Hello developers! > I need your help . > I want to make some modifications in the template ? hotspot image ? so > that I can insert a text ( instead of image) and when user click in each > area ( in this case line ) he can see another text (definition for example > ) . can you help me to make the xml code please ? > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/7c9d5fa4/attachment-0001.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, 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. > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/364304c8/attachment.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, 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. > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 2eme.PNG Type: image/png Size: 147320 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Thu Nov 6 15:51:21 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 6 Nov 2014 15:51:21 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 5 In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E34F7B@EXCHANGE1.ad.nottingham.ac.uk> At what point do things fail? I?m looking at your screenshot, and can see the xml is messed up ? is this when you first create an LO, or later after adding something? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 06 November 2014 15:50 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 5 yes i have used notepad++ 2014-11-06 16:41 GMT+01:00 >: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. Re: Xerte-dev Digest, Vol 39, Issue 3 (Julian Tenney) ---------------------------------------------------------------------- Message: 1 Date: Thu, 6 Nov 2014 15:41:17 +0000 From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E34F63 at EXCHANGE1.ad.nottingham.ac.uk> Content-Type: text/plain; charset="utf-8" Almost certainly this is due to an error in the xml somewhere. Have you run it through a validator? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 06 November 2014 15:39 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 hi everyone i have an other problem: i want to transforme the hotspot image template into hotspot image sound i have created this xml file : - - and this page wizard : i have connected the xml file to the new template and this is my results : 2014-11-06 13:00 GMT+01:00 >>: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk> To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk> You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk> When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. modification of hotspot image template (sara djezar) 2. liste submissions (sara djezar) 3. Re: modification of hotspot image template (Julian Tenney) ---------------------------------------------------------------------- Message: 1 Date: Wed, 5 Nov 2014 15:42:09 +0100 From: sara djezar >> To: xerte-dev at lists.nottingham.ac.uk> Subject: [Xerte-dev] modification of hotspot image template Message-ID: >> Content-Type: text/plain; charset="utf-8" Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please J -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Wed, 5 Nov 2014 15:46:10 +0100 From: sara djezar >> To: xerte-dev at lists.nottingham.ac.uk> Subject: [Xerte-dev] liste submissions Message-ID: >> Content-Type: text/plain; charset="utf-8" -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Wed, 5 Nov 2014 14:52:55 +0000 From: Julian Tenney >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: modification of hotspot image template Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk>> Content-Type: text/plain; charset="utf-8" Get the text you need, get a screenshot of it and turn it into an image. Use that in the interaction. From: xerte-dev-bounces at lists.nottingham.ac.uk> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk>] On Behalf Of sara djezar Sent: 05 November 2014 14:42 To: xerte-dev at lists.nottingham.ac.uk> Subject: [Xerte-dev] modification of hotspot image template Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please ? -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, 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. -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Thu Nov 6 15:56:37 2014 From: djezarsara at gmail.com (sara djezar) Date: Thu, 6 Nov 2014 16:56:37 +0100 Subject: [Xerte-dev] help about my xml and wizard files Message-ID: it is the first time. i've created this xml to connecte it with the new template -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Thu Nov 6 16:00:29 2014 From: djezarsara at gmail.com (sara djezar) Date: Thu, 6 Nov 2014 17:00:29 +0100 Subject: [Xerte-dev] Re: help about my xml and wizard files In-Reply-To: References: Message-ID: it is the first time ! 2014-11-06 16:56 GMT+01:00 sara djezar : > it is the first time. i've created this xml to connecte it with the new > template > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Nov 6 16:04:26 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 6 Nov 2014 16:04:26 +0000 Subject: [Xerte-dev] Re: help about my xml and wizard files In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E34F9B@EXCHANGE1.ad.nottingham.ac.uk> At risk of sounding a bit dim, what is? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 06 November 2014 16:00 To: Xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: help about my xml and wizard files it is the first time ! 2014-11-06 16:56 GMT+01:00 sara djezar >: it is the first time. i've created this xml to connecte it with the new template -------------- next part -------------- An HTML attachment was scrubbed... URL: From brsmith at akamai.com Thu Nov 6 16:04:33 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Thu, 6 Nov 2014 16:04:33 +0000 Subject: [Xerte-dev] Creating custom learning objects? Message-ID: One of the appeals to working on the devel version of Xerte for me is the prospect of being able to create $SUBJECT, which IIRC is supposed to be easier (and not require Flash/Windows) in Xerte3. Assuming that?s correct, is there any guidance available for how to create a custom LO using just html/javascript/etc, or something folks would point to as a good example? Just figured I?d ask before I start blindly digging through code. ;) ?Brad -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: Message signed with OpenPGP using GPGMail URL: From Julian.Tenney at nottingham.ac.uk Thu Nov 6 16:06:49 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 6 Nov 2014 16:06:49 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E34FA1@EXCHANGE1.ad.nottingham.ac.uk> I'm not sure what you're trying to do: can you say a bit more? -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 06 November 2014 16:05 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Creating custom learning objects? One of the appeals to working on the devel version of Xerte for me is the prospect of being able to create $SUBJECT, which IIRC is supposed to be easier (and not require Flash/Windows) in Xerte3. Assuming that's correct, is there any guidance available for how to create a custom LO using just html/javascript/etc, or something folks would point to as a good example? Just figured I'd ask before I start blindly digging through code. ;) -Brad From brsmith at akamai.com Thu Nov 6 16:08:24 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Thu, 6 Nov 2014 16:08:24 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 In-Reply-To: References: Message-ID: I notice there are a couple of stray ?-? characters at the beginnings of lines 3 and 5. Could those be causing the problem? ?Brad On Nov 6, 2014, at 10:39 AM, sara djezar wrote: > > > - > > > - tip="Exhibit the behaviour mind map" imageWidth="Large" > url=" FileLocation + 'media/Exhibit the behaviour.ping'" > text="
  • Click any of the labels on the mind map to hear information about the topic.
  • Make a note of any ideas that are new to you.
  • This is an example of the Hotspot Image Sound Page Wizard. This Page Wizard is not available in the Page Templates project wide template as of October 2010. This is an enhancement of the Hotspot Image Page Wizard, which is included in Page Templates. The mind map was created using Free mind, an open source Mind Mapping program. The voice over was created using State from paranormal.com and Audacity to slow down the rate of speech by about 10%. I found that using text to speech created a consistent voice. In earlier projects I used live voices, which I could not later match with if I wanted to add further speech after the speaker was no longer available." linkID=""> > displayText="No" name="Result of Trigger" audio="FileLocation + 'media/exhibit_trigger.mp3'"/> > > displayText="No" name="Tutor trap" audio="FileLocation + 'media/exhibit_tutorTrap.mp3'"/> > > displayText="No" name="Responsibility" audio="FileLocation + 'media/exhibit_responsibilities.mp3'"/> > > displayText="No" name="Outcomes" audio="FileLocation + 'media/exhibit_outcomes.mp3'"/> > > displayText="No" name="Exhibit the behaviour" audio="FileLocation + 'media/exhibit_exhibit.mp3'"/> > > displayText="No" name="Competence" audio="FileLocation + 'media/exhibit_competence.mp3'"/> > > displayText="No" name="Practice" audio="FileLocation + 'media/exhibit_practice.mp3'"/> > > > > > >
    > >
    -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: Message signed with OpenPGP using GPGMail URL: From J.J.Smith at gcu.ac.uk Thu Nov 6 16:16:41 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Thu, 6 Nov 2014 16:16:41 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 In-Reply-To: References: , Message-ID: I suspect the presence of those
  • tags in the XML is screwing it up... Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar [djezarsara at gmail.com] Sent: 06 November 2014 15:39 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 hi everyone i have an other problem: i want to transforme the hotspot image template into hotspot image sound i have created this xml file : - - and this page wizard : i have connected the xml file to the new template and this is my results : 2014-11-06 13:00 GMT+01:00 >: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. modification of hotspot image template (sara djezar) 2. liste submissions (sara djezar) 3. Re: modification of hotspot image template (Julian Tenney) ---------------------------------------------------------------------- Message: 1 Date: Wed, 5 Nov 2014 15:42:09 +0100 From: sara djezar > To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] modification of hotspot image template Message-ID: > Content-Type: text/plain; charset="utf-8" Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please J -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 2 Date: Wed, 5 Nov 2014 15:46:10 +0100 From: sara djezar > To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] liste submissions Message-ID: > Content-Type: text/plain; charset="utf-8" -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Wed, 5 Nov 2014 14:52:55 +0000 From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: modification of hotspot image template Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk> Content-Type: text/plain; charset="utf-8" Get the text you need, get a screenshot of it and turn it into an image. Use that in the interaction. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 05 November 2014 14:42 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] modification of hotspot image template Hello developers! I need your help . I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please ? -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, 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. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Thu Nov 6 16:22:44 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Thu, 6 Nov 2014 16:22:44 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: References: Message-ID: Hi Brad, I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:04 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Creating custom learning objects? One of the appeals to working on the devel version of Xerte for me is the prospect of being able to create $SUBJECT, which IIRC is supposed to be easier (and not require Flash/Windows) in Xerte3. Assuming that?s correct, is there any guidance available for how to create a custom LO using just html/javascript/etc, or something folks would point to as a good example? Just figured I?d ask before I start blindly digging through code. ;) ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From djezarsara at gmail.com Thu Nov 6 16:27:40 2014 From: djezarsara at gmail.com (sara djezar) Date: Thu, 6 Nov 2014 17:27:40 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 8 In-Reply-To: References: Message-ID: i will explain more : as we know when we use the hotspot image we can read text when we click in each zone , i want to hear sound and read explication when i click in each zone ! i hope you have inderstand me 2014-11-06 17:12 GMT+01:00 : > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. help about my xml and wizard files (sara djezar) > 2. Re: help about my xml and wizard files (sara djezar) > 3. Re: help about my xml and wizard files (Julian Tenney) > 4. Creating custom learning objects? (Smith, Bradley) > 5. Re: Creating custom learning objects? (Julian Tenney) > 6. Re: Xerte-dev Digest, Vol 39, Issue 3 (Smith, Bradley) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 6 Nov 2014 16:56:37 +0100 > From: sara djezar > To: Xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] help about my xml and wizard files > Message-ID: > XjW0AA at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > it is the first time. i've created this xml to connecte it with the new > template > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/442e2a32/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Thu, 6 Nov 2014 17:00:29 +0100 > From: sara djezar > To: Xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Re: help about my xml and wizard files > Message-ID: > Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > it is the first time ! > > 2014-11-06 16:56 GMT+01:00 sara djezar : > > > it is the first time. i've created this xml to connecte it with the new > > template > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/714267b6/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Thu, 6 Nov 2014 16:04:26 +0000 > From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: help about my xml and wizard files > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E34F9B at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="utf-8" > > At risk of sounding a bit dim, what is? > > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar > Sent: 06 November 2014 16:00 > To: Xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Re: help about my xml and wizard files > > it is the first time ! > > 2014-11-06 16:56 GMT+01:00 sara djezar djezarsara at gmail.com>>: > it is the first time. i've created this xml to connecte it with the new > template > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/b93619fc/attachment-0001.html > > > > ------------------------------ > > Message: 4 > Date: Thu, 6 Nov 2014 16:04:33 +0000 > From: "Smith, Bradley" > To: "xerte-dev at lists.nottingham.ac.uk" > > Subject: [Xerte-dev] Creating custom learning objects? > Message-ID: > Content-Type: text/plain; charset="windows-1252" > > One of the appeals to working on the devel version of Xerte for me is the > prospect of being able to create $SUBJECT, which IIRC is supposed to be > easier (and not require Flash/Windows) in Xerte3. Assuming that?s correct, > is there any guidance available for how to create a custom LO using just > html/javascript/etc, or something folks would point to as a good example? > > Just figured I?d ask before I start blindly digging through code. ;) > > ?Brad > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: signature.asc > Type: application/pgp-signature > Size: 455 bytes > Desc: Message signed with OpenPGP using GPGMail > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/c336752a/attachment-0001.bin > > > > ------------------------------ > > Message: 5 > Date: Thu, 6 Nov 2014 16:06:49 +0000 > From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Creating custom learning objects? > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E34FA1 at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="us-ascii" > > I'm not sure what you're trying to do: can you say a bit more? > > -----Original Message----- > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley > Sent: 06 November 2014 16:05 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Creating custom learning objects? > > One of the appeals to working on the devel version of Xerte for me is the > prospect of being able to create $SUBJECT, which IIRC is supposed to be > easier (and not require Flash/Windows) in Xerte3. Assuming that's correct, > is there any guidance available for how to create a custom LO using just > html/javascript/etc, or something folks would point to as a good example? > > Just figured I'd ask before I start blindly digging through code. ;) > > -Brad > > > > ------------------------------ > > Message: 6 > Date: Thu, 6 Nov 2014 16:08:24 +0000 > From: "Smith, Bradley" > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > Message-ID: > Content-Type: text/plain; charset="windows-1252" > > I notice there are a couple of stray ?-? characters at the beginnings of > lines 3 and 5. Could those be causing the problem? > > ?Brad > > On Nov 6, 2014, at 10:39 AM, sara djezar wrote: > > > > > > > - > > > > > > - interactivity="Click Explore" > > tip="Exhibit the behaviour mind map" > imageWidth="Large" > > url=" FileLocation + 'media/Exhibit the > behaviour.ping'" > > text="
  • Click any of the labels on the mind map to > hear information about the topic.
  • Make a note of any ideas that > are new to you.
  • This is an example of the Hotspot Image Sound Page > Wizard. This Page Wizard is not available in the Page Templates project > wide template as of October 2010. This is an enhancement of the > Hotspot Image Page Wizard, which is included in Page Templates. The mind > map was created using Free mind, an open source Mind Mapping program. The > voice over was created using State from paranormal.com and Audacity to > slow down the rate of speech by about 10%. I found that using text to > speech created a consistent voice. In earlier projects I used live voices, > which I could not later match with if I wanted to add further speech after > the speaker was no longer available." linkID=""> > > > displayText="No" name="Result of Trigger" > audio="FileLocation + 'media/exhibit_trigger.mp3'"/> > > > > > displayText="No" name="Tutor trap" audio="FileLocation + > 'media/exhibit_tutorTrap.mp3'"/> > > > > > displayText="No" name="Responsibility" > audio="FileLocation + 'media/exhibit_responsibilities.mp3'"/> > > > > > displayText="No" name="Outcomes" audio="FileLocation + > 'media/exhibit_outcomes.mp3'"/> > > > > > displayText="No" name="Exhibit the behaviour" > audio="FileLocation + 'media/exhibit_exhibit.mp3'"/> > > > > > displayText="No" name="Competence" audio="FileLocation + > 'media/exhibit_competence.mp3'"/> > > > > > displayText="No" name="Practice" audio="FileLocation + > 'media/exhibit_practice.mp3'"/> > > > > displayText="No" name="Frequency" audio="FileLocation + > 'media/exhibit_frequency.mp3'"/> > > > > x="463" displayText="No" name="Sleep and performance" audio="FileLocation + > 'media/exhibit_sleep.mp3'"/> > > > > > > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/2e44c807/attachment.html > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: signature.asc > Type: application/pgp-signature > Size: 455 bytes > Desc: Message signed with OpenPGP using GPGMail > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/2e44c807/attachment.bin > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, 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. > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From brsmith at akamai.com Thu Nov 6 16:48:49 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Thu, 6 Nov 2014 16:48:49 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: References: Message-ID: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: Message signed with OpenPGP using GPGMail URL: From djezarsara at gmail.com Thu Nov 6 16:50:41 2014 From: djezarsara at gmail.com (sara djezar) Date: Thu, 6 Nov 2014 17:50:41 +0100 Subject: [Xerte-dev] (no subject) Message-ID: Message: 2 Date: Thu, 6 Nov 2014 16:22:44 +0000 From: "Smith, John" To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? Message-ID: < EE0B2AFFDB88B34AA864E00CE98914C22C01BA76AB at ITSEMBXCLUS.enterprise.gcal.ac.uk > Content-Type: text/plain; charset="Windows-1252" Hi Brad, I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [ xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [ brsmith at akamai.com] Sent: 06 November 2014 16:04 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Creating custom learning objects? One of the appeals to working on the devel version of Xerte for me is the prospect of being able to create $SUBJECT, which IIRC is supposed to be easier (and not require Flash/Windows) in Xerte3. Assuming that?s correct, is there any guidance available for how to create a custom LO using just html/javascript/etc, or something folks would point to as a good example? Just figured I?d ask before I start blindly digging through code. ;) ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Thu Nov 6 16:55:17 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Thu, 06 Nov 2014 17:55:17 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 In-Reply-To: References: , Message-ID: <545BA7F5.9000900@tor.nl> It is. I just verified that. The XML is not valid. And Notepad++ is just a text editor, not an xml validator. The system is not made for hand editing the xml files, but if you want to go that route please use an XML editor. Smith, John schreef op 6-11-2014 17:16: > I suspect the presence of those
  • tags in the XML is screwing it up... > > Regards, > > John Smith | Learning Technologist > Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University > Cowcaddens Road | Glasgow | G4 0BA > > Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. > ________________________________________ > From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar [djezarsara at gmail.com] > Sent: 06 November 2014 15:39 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > > hi everyone i have an other problem: i want to transforme the hotspot image template into hotspot image sound i have created this xml file : > > > - > > > - tip="Exhibit the behaviour mind map" imageWidth="Large" > url=" FileLocation + 'media/Exhibit the behaviour.ping'" > text="
  • Click any of the labels on the mind map to hear information about the topic.
  • Make a note of any ideas that are new to you.
  • This is an example of the Hotspot Image Sound Page Wizard. This Page Wizard is not available in the Page Templates project wide template as of October 2010. This is an enhancement of the Hotspot Image Page Wizard, which is included in Page Templates. The mind map was created using Free mind, an open source Mind Mapping program. The voice over was created using State from paranormal.com and Audacity to slow down the rate of speech by about 10%. I found that using text to speech created a consistent voice. In earlier projects I used live voices, which I could not later match with if I wanted to add further speech after the speaker was no longer available." linkID=""> > displayText="No" name="Result of Trigger" audio="FileLocation + 'media/exhibit_trigger.mp3'"/> > > displayText="No" name="Tutor trap" audio="FileLocation + 'media/exhibit_tutorTrap.mp3'"/> > > displayText="No" name="Responsibility" audio="FileLocation + 'media/exhibit_responsibilities.mp3'"/> > > displayText="No" name="Outcomes" audio="FileLocation + 'media/exhibit_outcomes.mp3'"/> > > displayText="No" name="Exhibit the behaviour" audio="FileLocation + 'media/exhibit_exhibit.mp3'"/> > > displayText="No" name="Competence" audio="FileLocation + 'media/exhibit_competence.mp3'"/> > > displayText="No" name="Practice" audio="FileLocation + 'media/exhibit_practice.mp3'"/> > > > > > > > > > > > and this page wizard : > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > i have connected the xml file to the new template and this is my results : > > > > > > 2014-11-06 13:00 GMT+01:00 >: > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. modification of hotspot image template (sara djezar) > 2. liste submissions (sara djezar) > 3. Re: modification of hotspot image template (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 5 Nov 2014 15:42:09 +0100 > From: sara djezar > > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] modification of hotspot image template > Message-ID: > > > Content-Type: text/plain; charset="utf-8" > > Hello developers! > > I need your help . > > I want to make some modifications in the template ? hotspot image ? so > that I can insert a text ( instead of image) and when user click in each > area ( in this case line ) he can see another text (definition for example > ) . can you help me to make the xml code please J > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 2 > Date: Wed, 5 Nov 2014 15:46:10 +0100 > From: sara djezar > > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] liste submissions > Message-ID: > > > Content-Type: text/plain; charset="utf-8" > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 3 > Date: Wed, 5 Nov 2014 14:52:55 +0000 > From: Julian Tenney > > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: modification of hotspot image template > Message-ID: > <12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="utf-8" > > Get the text you need, get a screenshot of it and turn it into an image. Use that in the interaction. > > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar > Sent: 05 November 2014 14:42 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] modification of hotspot image template > > Hello developers! > I need your help . > I want to make some modifications in the template ? hotspot image ? so that I can insert a text ( instead of image) and when user click in each area ( in this case line ) he can see another text (definition for example ) . can you help me to make the xml code please ? > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, 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. > > > > > > > Glasgow Caledonian University is a registered Scottish charity, number SC021474 > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > > -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 From brsmith at akamai.com Thu Nov 6 18:19:30 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Thu, 6 Nov 2014 18:19:30 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 In-Reply-To: <545BA7F5.9000900@tor.nl> References: , <545BA7F5.9000900@tor.nl> Message-ID: On Nov 6, 2014, at 11:55 AM, Tom Reijnders wrote: > It is. I just verified that. The XML is not valid. And Notepad++ is just a text editor, not an xml validator. > > The system is not made for hand editing the xml files, but if you want to go that route please use an XML editor. Alternately there are regular text editors that have xml/html modes that can make hand-editing xml a little easier. Personally I find that more pleasant than dealing with gui xml editors, but that?s just a matter of personal taste. Most importantly, as others have said, if you do hand-edit xml, you definitely want a good xml validator. The ?xmllint? command-line tool comes with most Linux distributions and, I think, OSX, and you can get it for Windows too. In addition to finding problems in your xml, you can run it with the ?format option to make some xml files more readable by adding sane indentation, etc. ?Brad -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: Message signed with OpenPGP using GPGMail URL: From djezarsara at gmail.com Thu Nov 6 19:12:59 2014 From: djezarsara at gmail.com (sara djezar) Date: Thu, 6 Nov 2014 20:12:59 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 10 In-Reply-To: References: Message-ID: hello again ! this the xml after using generator . my xml and wizard are 99.99% correct . but the result is that 2014-11-06 17:55 GMT+01:00 : > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: Creating custom learning objects? (Smith, Bradley) > 2. (no subject) (sara djezar) > 3. Re: Xerte-dev Digest, Vol 39, Issue 3 (Tom Reijnders) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 6 Nov 2014 16:48:49 +0000 > From: "Smith, Bradley" > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Creating custom learning objects? > Message-ID: <522FB16D-B36E-4569-AFC2-FB629504224E at akamai.com> > Content-Type: text/plain; charset="windows-1252" > > > On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > > > Hi Brad, > > > > I haven't installed the develop branch lately or looked at recent > changes but since the merger of the editor and develop branches back in the > summer you should get the javascript based editor by default now. Is this > not the case? > > > I?m not sure. Where would I look for that? I?m still rather new to Xerte. > :) > > To answer Julian?s question, I don?t have a particular use in mind. I?d > just like to have an idea of what?s involved if I find myself in a > situation where ?it would be really cool if my course did?? for whatever > particular kind of interaction seems like a good idea at the time. > > ?Brad > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: signature.asc > Type: application/pgp-signature > Size: 455 bytes > Desc: Message signed with OpenPGP using GPGMail > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/3c17be24/attachment-0001.bin > > > > ------------------------------ > > Message: 2 > Date: Thu, 6 Nov 2014 17:50:41 +0100 > From: sara djezar > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] (no subject) > Message-ID: > < > CACLZfoxYJD8Uvh8ShOpG7FHqq66N5aK92pKpGNW2KyGKJoa3HQ at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Message: 2 > Date: Thu, 6 Nov 2014 16:22:44 +0000 > From: "Smith, John" > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Creating custom learning objects? > Message-ID: > < > > EE0B2AFFDB88B34AA864E00CE98914C22C01BA76AB at ITSEMBXCLUS.enterprise.gcal.ac.uk > > > > Content-Type: text/plain; charset="Windows-1252" > > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes > but since the merger of the editor and develop branches back in the summer > you should get the javascript based editor by default now. Is this not the > case? > > Regards, > > John Smith | Learning Technologist > Room A250, Govan Mbeki Building | School of Health & Life Sciences | > Glasgow Caledonian University > Cowcaddens Road | Glasgow | G4 0BA > > Please address ALL support requests to hlsblt at gcu.ac.uk where one of the > School Learning Technologists will pick up the job. This will ensure that > all jobs are completed as promptly as possible. > ________________________________________ > From: xerte-dev-bounces at lists.nottingham.ac.uk [ > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [ > brsmith at akamai.com] > Sent: 06 November 2014 16:04 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Creating custom learning objects? > > One of the appeals to working on the devel version of Xerte for me is the > prospect of being able to create $SUBJECT, which IIRC is supposed to be > easier (and not require Flash/Windows) in Xerte3. Assuming that?s correct, > is there any guidance available for how to create a custom LO using just > html/javascript/etc, or something folks would point to as a good example? > > Just figured I?d ask before I start blindly digging through code. ;) > > ?Brad > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment > > may still contain software viruses which could damage your computer system, > you are advised to perform your own checks. Email communications with the > University of Nottingham may be monitored as permitted by UK legislation. > > > > > > > > > > > Glasgow Caledonian University is a registered Scottish charity, number > SC021474 > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/434320be/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Thu, 06 Nov 2014 17:55:17 +0100 > From: Tom Reijnders > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > Message-ID: <545BA7F5.9000900 at tor.nl> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > It is. I just verified that. The XML is not valid. And Notepad++ is just > a text editor, not an xml validator. > > The system is not made for hand editing the xml files, but if you want > to go that route please use an XML editor. > > Smith, John schreef op 6-11-2014 17:16: > > I suspect the presence of those
  • tags in the XML is screwing it up... > > > > Regards, > > > > John Smith | Learning Technologist > > Room A250, Govan Mbeki Building | School of Health & Life Sciences | > Glasgow Caledonian University > > Cowcaddens Road | Glasgow | G4 0BA > > > > Please address ALL support requests to hlsblt at gcu.ac.uk where one of > the School Learning Technologists will pick up the job. This will ensure > that all jobs are completed as promptly as possible. > > ________________________________________ > > From: xerte-dev-bounces at lists.nottingham.ac.uk [ > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar [ > djezarsara at gmail.com] > > Sent: 06 November 2014 15:39 > > To: xerte-dev at lists.nottingham.ac.uk > > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > > > > hi everyone i have an other problem: i want to transforme the hotspot > image template into hotspot image sound i have created this xml file : > > > > > > - > > > > > > - interactivity="Click Explore" > > tip="Exhibit the behaviour mind map" > imageWidth="Large" > > url=" FileLocation + 'media/Exhibit the > behaviour.ping'" > > text="
  • Click any of the labels on the mind map to > hear information about the topic.
  • Make a note of any ideas that > are new to you.
  • This is an example of the Hotspot Image Sound Page > Wizard. This Page Wizard is not available in the Page Templates project > wide template as of October 2010. This is an enhancement of the > Hotspot Image Page Wizard, which is included in Page Templates. The mind > map was created using Free mind, an open source Mind Mapping program. The > voice over was created using State from paranormal.com< > http://paranormal.com> and Audacity to slow down the rate of speech by > about 10%. I found that using text to speech created a consistent voice. In > earlier projects I used live voices, which I could not later match with if > I wanted to add further speech after the speaker was no longer > available." linkID=""> > > > displayText="No" name="Result of Trigger" > audio="FileLocation + 'media/exhibit_trigger.mp3'"/> > > > > > displayText="No" name="Tutor trap" audio="FileLocation + > 'media/exhibit_tutorTrap.mp3'"/> > > > > > displayText="No" name="Responsibility" > audio="FileLocation + 'media/exhibit_responsibilities.mp3'"/> > > > > > displayText="No" name="Outcomes" audio="FileLocation + > 'media/exhibit_outcomes.mp3'"/> > > > > > displayText="No" name="Exhibit the behaviour" > audio="FileLocation + 'media/exhibit_exhibit.mp3'"/> > > > > > displayText="No" name="Competence" audio="FileLocation > + 'media/exhibit_competence.mp3'"/> > > > > > displayText="No" name="Practice" audio="FileLocation + > 'media/exhibit_practice.mp3'"/> > > > > displayText="No" name="Frequency" audio="FileLocation + > 'media/exhibit_frequency.mp3'"/> > > > > x="463" displayText="No" name="Sleep and performance" audio="FileLocation + > 'media/exhibit_sleep.mp3'"/> > > > > > > > > > > > > > > and this page wizard : > > > > > > > > > > > > > > > > > > > > options="Small,Medium,Large,Full" width="100"/> > > > > > > > > > > options="Left,Right,Bottom" width="100"/> > > > > > > > > > > hotspot" displayText="Yes" x="0" y="0" w="100" h="100" /> > > > > > > > > > > > icon="icLayers" remove="true"> > > > > > > > > width="100"/> > > > > > > i have connected the xml file to the new template and this is my results > : > > > > > > > > > > > > 2014-11-06 13:00 GMT+01:00 >: > > Send Xerte-dev mailing list submissions to > > xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > > > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > or, via email, send a message with subject or body 'help' to > > xerte-dev-request at lists.nottingham.ac.uk xerte-dev-request at lists.nottingham.ac.uk> > > > > You can reach the person managing the list at > > xerte-dev-owner at lists.nottingham.ac.uk xerte-dev-owner at lists.nottingham.ac.uk> > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of Xerte-dev digest..." > > > > > > Today's Topics: > > > > 1. modification of hotspot image template (sara djezar) > > 2. liste submissions (sara djezar) > > 3. Re: modification of hotspot image template (Julian Tenney) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Wed, 5 Nov 2014 15:42:09 +0100 > > From: sara djezar > > > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > > Subject: [Xerte-dev] modification of hotspot image template > > Message-ID: > > < > CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com>> > > Content-Type: text/plain; charset="utf-8" > > > > Hello developers! > > > > I need your help . > > > > I want to make some modifications in the template ? hotspot image ? so > > that I can insert a text ( instead of image) and when user click in each > > area ( in this case line ) he can see another text (definition for > example > > ) . can you help me to make the xml code please J > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/9abeac2b/attachment-0001.html > > > > > > ------------------------------ > > > > Message: 2 > > Date: Wed, 5 Nov 2014 15:46:10 +0100 > > From: sara djezar > > > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > > Subject: [Xerte-dev] liste submissions > > Message-ID: > > 79rVBy0Q at mail.gmail.com> > > Content-Type: text/plain; charset="utf-8" > > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/e17a38f0/attachment-0001.html > > > > > > ------------------------------ > > > > Message: 3 > > Date: Wed, 5 Nov 2014 14:52:55 +0000 > > From: Julian Tenney Julian.Tenney at nottingham.ac.uk>> > > To: For Xerte technical developers > > > Subject: [Xerte-dev] Re: modification of hotspot image template > > Message-ID: > > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk>> > > > > Content-Type: text/plain; charset="utf-8" > > > > Get the text you need, get a screenshot of it and turn it into an image. > Use that in the interaction. > > > > From: xerte-dev-bounces at lists.nottingham.ac.uk xerte-dev-bounces at lists.nottingham.ac.uk> [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk xerte-dev-bounces at lists.nottingham.ac.uk>] On Behalf Of sara djezar > > Sent: 05 November 2014 14:42 > > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > > Subject: [Xerte-dev] modification of hotspot image template > > > > Hello developers! > > I need your help . > > I want to make some modifications in the template ? hotspot image ? > so that I can insert a text ( instead of image) and when user click in > each area ( in this case line ) he can see another text (definition for > example ) . can you help me to make the xml code please ? > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/7c9d5fa4/attachment-0001.html > > > > > > ------------------------------ > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > End of Xerte-dev Digest, Vol 39, 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. > > > > > > > > > > > > > > Glasgow Caledonian University is a registered Scottish charity, number > SC021474 > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment > > may still contain software viruses which could damage your computer > system, you are advised to perform your own checks. Email communications > with the University of Nottingham may be monitored as permitted by UK > legislation. > > > > > > > > > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, Issue 10 > ***************************************** > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment > may still contain software viruses which could damage your computer > 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: res.PNG Type: image/png Size: 42114 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Fri Nov 7 09:21:07 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 7 Nov 2014 09:21:07 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A3CFDB1@EXCHANGE1.ad.nottingham.ac.uk> >"it would be really cool if my course did..." for whatever particular kind of interaction seems like a good idea at the time. Then you can use the templates for most of the course, and where you want custom stuff you can use html / js / css to do whatever you want. jQuery is there already, you can load other libraries, custom style sheets, etc etc, and you can load media into the project to use in the custom pages via media and quota on the project's properties. -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 06 November 2014 16:49 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I'm not sure. Where would I look for that? I'm still rather new to Xerte. :) To answer Julian's question, I don't have a particular use in mind. I'd just like to have an idea of what's involved if I find myself in a situation where "it would be really cool if my course did..." for whatever particular kind of interaction seems like a good idea at the time. -Brad From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 12:21:47 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 12:21:47 +0000 Subject: [Xerte-dev] Mailing list playing up!! Message-ID: Hmmm mailing list being a bit strange again today... getting an acknowledgement every few minutes... Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. Glasgow Caledonian University is a registered Scottish charity, number SC021474 -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen Shot 2014-11-07 at 12.20.25.png Type: image/png Size: 105457 bytes Desc: Screen Shot 2014-11-07 at 12.20.25.png URL: From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From Julian.Tenney at nottingham.ac.uk Fri Nov 7 12:39:53 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 7 Nov 2014 12:39:53 +0000 Subject: [Xerte-dev] Re: Mailing list playing up!! In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A3CFF9A@EXCHANGE1.ad.nottingham.ac.uk> Hmm. That's not right. -----Original Message----- From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, John Sent: 07 November 2014 12:22 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Mailing list playing up!! Hmmm mailing list being a bit strange again today... getting an acknowledgement every few minutes... Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From xerte at pgogywebstuff.com Fri Nov 7 14:03:21 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy - xerte)) Date: Fri, 07 Nov 2014 14:03:21 +0000 Subject: [Xerte-dev] Can we stop the spam? Message-ID: <8olod1ic50n69yy2cs6wkaon.1415369001972@email.android.com> Its getting silly -------------- next part -------------- An HTML attachment was scrubbed... URL: From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From Julian.Tenney at nottingham.ac.uk Fri Nov 7 14:10:34 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Fri, 7 Nov 2014 14:10:34 +0000 Subject: [Xerte-dev] Re: Can we stop the spam? In-Reply-To: <8olod1ic50n69yy2cs6wkaon.1415369001972@email.android.com> References: <8olod1ic50n69yy2cs6wkaon.1415369001972@email.android.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0058@EXCHANGE1.ad.nottingham.ac.uk> We?re trying. Dave Osbourne is aware of it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat L (pgogy - xerte) Sent: 07 November 2014 14:03 To: For Xerte technical developers Subject: [Xerte-dev] Can we stop the spam? Its getting silly -------------- next part -------------- An HTML attachment was scrubbed... URL: From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From J.J.Smith at gcu.ac.uk Fri Nov 7 11:13:08 2014 From: J.J.Smith at gcu.ac.uk (Smith, John) Date: Fri, 7 Nov 2014 11:13:08 +0000 Subject: [Xerte-dev] Re: Creating custom learning objects? In-Reply-To: <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> References: , <522FB16D-B36E-4569-AFC2-FB629504224E@akamai.com> Message-ID: Hi Brad, Yes, i've just checked out the latest develop branch and if you create a Learning Object then the new Javascript editor launches... you can see that it is different from the Flash based one as it has a panel down the right hand side that has the Optional Properties in it... If you create a LO in that and export for use as Scorm then it will have the latest page models. Regards, John Smith | Learning Technologist Room A250, Govan Mbeki Building | School of Health & Life Sciences | Glasgow Caledonian University Cowcaddens Road | Glasgow | G4 0BA Please address ALL support requests to hlsblt at gcu.ac.uk where one of the School Learning Technologists will pick up the job. This will ensure that all jobs are completed as promptly as possible. ________________________________________ From: xerte-dev-bounces at lists.nottingham.ac.uk [xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley [brsmith at akamai.com] Sent: 06 November 2014 16:48 To: For Xerte technical developers Subject: [Xerte-dev] Re: Creating custom learning objects? On Nov 6, 2014, at 11:22 AM, Smith, John wrote: > Hi Brad, > > I haven't installed the develop branch lately or looked at recent changes but since the merger of the editor and develop branches back in the summer you should get the javascript based editor by default now. Is this not the case? I?m not sure. Where would I look for that? I?m still rather new to Xerte. :) To answer Julian?s question, I don?t have a particular use in mind. I?d just like to have an idea of what?s involved if I find myself in a situation where ?it would be really cool if my course did?? for whatever particular kind of interaction seems like a good idea at the time. ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. Glasgow Caledonian University is a registered Scottish charity, number SC021474 From brsmith at akamai.com Fri Nov 7 18:36:56 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Fri, 7 Nov 2014 18:36:56 +0000 Subject: [Xerte-dev] HP5 content? Message-ID: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> Hello all, I was recently pointed to HP5 (http://hp5.org), which is a free tool/library for creating nifty-looking interactive content in HTML5, so all you need is a modern browser to use them. I have only just started digging into it, and I don?t know if it can speak SCORM or not, but you can do some very cool things with it. http://h5p.org/content-types-and-applications Check this one out!! http://h5p.org/interactive-video Of course, there?s a lot of overlap between this stuff and the learning objects that Xerte uses, so it occurred to me, does anyone have any thoughts re what would be involved in integrating the two? This would give Xerte a bunch of really cool content options, and allow HP5 content to be used as a SCORM module. Thoughts? Would this be a completely insane thing to look into for creating my first custom Xerte LO? ?Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 455 bytes Desc: Message signed with OpenPGP using GPGMail URL: From johnathan.kemp at ntlworld.com Fri Nov 7 23:05:14 2014 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Fri, 7 Nov 2014 23:05:14 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 5 In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D99E34F7B@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0D99E34F7B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I should probably keep out of this problem, as I have not been active in the Xerte community since the transition to html 5. However I noticed in your example the following "This is an example of the Hotspot Image Sound Page Wizard. This Page Wizard is not available in the Page Templates project wide template as of October 2010. This is an enhancement of the Hotspot Image Page Wizard, which is included in Page Templates." This is text from a sample project I created to demonstrate the pageWizards. So I am guessing that you are basing your development on code I created for the pageWizard. pageWizards were an early approach to achieving individual page templates that I piloted in Xerte. They were superceded by later developments in desktop Xerte. Desktop Xerte is flash based and as such is no longer under development. All development work is now on the html5 based Xerte online toolkits. So can you please clarify if you are trying to do your developement in toolkits or desktop Xerte. If you are using desktop Xerte then it should be possible to develop an xwd file that delivers what you want that will work in Xerte by comparing the _hotspotImageSound.xwd file (from the PageWizardDemo project which you can find in PageWizardDemo / pages / hotSpotImageSound folder) with the hotspotImage.xwd file ( which can be found in the pages / wizards / en-gb / folder of your desktop Xerte install). Create a new xwd file, keeping the structure of the hotspotImage.xwd file as this will be consistent with what Xerte requires but simply add any additional elements from the _hotspotImageSound file. change occurences in your new file of "hotspotImage" to "hotspotImageSound". That should give you a working starting point for an xwd file that will generate xml content. You will also need a model file (.rlm) file in the pages/models folder for your new page type. Make a copy of the hotspotImage model and rename it to match your new page type e.g. "hotspotImageSound.rlm" and remember to edit it by replacing all occurences of "hotspotImage" with "hotspotImageSound" so that the model file references the date from your hotspotImageSound.xml file that will be created by the xwd file. Then you might want to compare your hotspotImageSound.rlm file with the one used in my original page wizard project _hotspotImageSound.rlm to assist you with adding the functionality. If however you are developing for Xerte online toolkits a comparison of the xwd files I mentioned should still help but I can't help out on the html5 side of things. Hope this helps. If the above makes no sense to you, then just ignore this post as the ravings of someone with fond memories for a desktop based project that is now retired :-) Kind regards Johnathan On 6 November 2014 15:51, Julian Tenney wrote: > At what point do things fail? I?m looking at your screenshot, and can see > the xml is messed up ? is this when you first create an LO, or later after > adding something? > > > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *sara djezar > *Sent:* 06 November 2014 15:50 > *To:* xerte-dev at lists.nottingham.ac.uk > *Subject:* [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 5 > > > > yes i have used notepad++ > > > > 2014-11-06 16:41 GMT+01:00 : > > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: Xerte-dev Digest, Vol 39, Issue 3 (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 6 Nov 2014 15:41:17 +0000 > From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E34F63 at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="utf-8" > > Almost certainly this is due to an error in the xml somewhere. Have you > run it through a validator? > > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar > Sent: 06 November 2014 15:39 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 > > hi everyone i have an other problem: i want to transforme the hotspot > image template into hotspot image sound i have created this xml file : > > > - > > > - interactivity="Click Explore" > tip="Exhibit the behaviour mind map" imageWidth="Large" > url=" FileLocation + 'media/Exhibit the > behaviour.ping'" > text="
  • Click any of the labels on the mind map to > hear information about the topic.
  • Make a note of any ideas that > are new to you.
  • This is an example of the Hotspot Image Sound Page > Wizard. This Page Wizard is not available in the Page Templates project > wide template as of October 2010. This is an enhancement of the > Hotspot Image Page Wizard, which is included in Page Templates. The mind > map was created using Free mind, an open source Mind Mapping program. The > voice over was created using State from paranormal.com< > http://paranormal.com> and Audacity to slow down the rate of speech by > about 10%. I found that using text to speech created a consistent voice. In > earlier projects I used live voices, which I could not later match with if > I wanted to add further speech after the speaker was no longer > available." linkID=""> > displayText="No" name="Result of Trigger" > audio="FileLocation + 'media/exhibit_trigger.mp3'"/> > > displayText="No" name="Tutor trap" audio="FileLocation + > 'media/exhibit_tutorTrap.mp3'"/> > > displayText="No" name="Responsibility" audio="FileLocation > + 'media/exhibit_responsibilities.mp3'"/> > > displayText="No" name="Outcomes" audio="FileLocation + > 'media/exhibit_outcomes.mp3'"/> > > displayText="No" name="Exhibit the behaviour" > audio="FileLocation + 'media/exhibit_exhibit.mp3'"/> > > displayText="No" name="Competence" audio="FileLocation + > 'media/exhibit_competence.mp3'"/> > > displayText="No" name="Practice" audio="FileLocation + > 'media/exhibit_practice.mp3'"/> > > displayText="No" name="Frequency" audio="FileLocation + > 'media/exhibit_frequency.mp3'"/> > > displayText="No" name="Sleep and performance" audio="FileLocation + > 'media/exhibit_sleep.mp3'"/> > >
    > >
    > > > and this page wizard : > > > > > > > > > > options="Small,Medium,Large,Full" width="100"/> > > > > > width="100"/> > > > > > hotspot" displayText="Yes" x="0" y="0" w="100" h="100" /> > > > > > > > icon="icLayers" remove="true"> > > > > width="100"/> > > > i have connected the xml file to the new template and this is my results : > > > > > > 2014-11-06 13:00 GMT+01:00 >: > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk xerte-dev-request at lists.nottingham.ac.uk> > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk xerte-dev-owner at lists.nottingham.ac.uk> > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. modification of hotspot image template (sara djezar) > 2. liste submissions (sara djezar) > 3. Re: modification of hotspot image template (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 5 Nov 2014 15:42:09 +0100 > From: sara djezar > > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > Subject: [Xerte-dev] modification of hotspot image template > Message-ID: > < > CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com>> > Content-Type: text/plain; charset="utf-8" > > Hello developers! > > I need your help . > > I want to make some modifications in the template ? hotspot image ? so > that I can insert a text ( instead of image) and when user click in each > area ( in this case line ) he can see another text (definition for example > ) . can you help me to make the xml code please J > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/9abeac2b/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Wed, 5 Nov 2014 15:46:10 +0100 > From: sara djezar > > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > Subject: [Xerte-dev] liste submissions > Message-ID: > 79rVBy0Q at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/e17a38f0/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Wed, 5 Nov 2014 14:52:55 +0000 > From: Julian Tenney Julian.Tenney at nottingham.ac.uk>> > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: modification of hotspot image template > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk>> > > Content-Type: text/plain; charset="utf-8" > > Get the text you need, get a screenshot of it and turn it into an image. > Use that in the interaction. > > From: xerte-dev-bounces at lists.nottingham.ac.uk xerte-dev-bounces at lists.nottingham.ac.uk> [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk xerte-dev-bounces at lists.nottingham.ac.uk>] On Behalf Of sara djezar > Sent: 05 November 2014 14:42 > To: xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > Subject: [Xerte-dev] modification of hotspot image template > > Hello developers! > I need your help . > I want to make some modifications in the template ? hotspot image ? so > that I can insert a text ( instead of image) and when user click in each > area ( in this case line ) he can see another text (definition for example > ) . can you help me to make the xml code please ? > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/7c9d5fa4/attachment-0001.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, 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. > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/364304c8/attachment.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, 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-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Fri Nov 7 23:23:18 2014 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Fri, 7 Nov 2014 23:23:18 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 5 In-Reply-To: References: Message-ID: Further to my earlier post - and this shows how long it is since I was active with Xerte Can I ask if you have taken a look at the hotspotImageConnector page? I don't have a version of Xerte Online Toolkits to test this on, but in the last version of desktop Xerte the hotspotImageConnector page included the functionality to add either a text box or a sound to a hotspot (instead of a connection to another page) so this page may already offer you the functionality you are looking for. Anyway as before - if I have miss understood what it is you are seeking to achieve just ignore me and I'll go away :-) Johnathan On 6 November 2014 15:50, sara djezar wrote: > yes i have used notepad++ > > 2014-11-06 16:41 GMT+01:00 : > >> Send Xerte-dev mailing list submissions to >> xerte-dev at lists.nottingham.ac.uk >> >> To subscribe or unsubscribe via the World Wide Web, visit >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> or, via email, send a message with subject or body 'help' to >> xerte-dev-request at lists.nottingham.ac.uk >> >> You can reach the person managing the list at >> xerte-dev-owner at lists.nottingham.ac.uk >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Xerte-dev digest..." >> >> >> Today's Topics: >> >> 1. Re: Xerte-dev Digest, Vol 39, Issue 3 (Julian Tenney) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Thu, 6 Nov 2014 15:41:17 +0000 >> From: Julian Tenney >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 >> Message-ID: >> < >> 12C67A1EEC419342AF5E59DA31562C3F0D99E34F63 at EXCHANGE1.ad.nottingham.ac.uk> >> >> Content-Type: text/plain; charset="utf-8" >> >> Almost certainly this is due to an error in the xml somewhere. Have you >> run it through a validator? >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: >> xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar >> Sent: 06 November 2014 15:39 >> To: xerte-dev at lists.nottingham.ac.uk >> Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 3 >> >> hi everyone i have an other problem: i want to transforme the hotspot >> image template into hotspot image sound i have created this xml file : >> >> >> - >> >> >> -> interactivity="Click Explore" >> tip="Exhibit the behaviour mind map" >> imageWidth="Large" >> url=" FileLocation + 'media/Exhibit the >> behaviour.ping'" >> text="
  • Click any of the labels on the mind map to >> hear information about the topic.
  • Make a note of any ideas that >> are new to you.
  • This is an example of the Hotspot Image Sound Page >> Wizard. This Page Wizard is not available in the Page Templates project >> wide template as of October 2010. This is an enhancement of the >> Hotspot Image Page Wizard, which is included in Page Templates. The mind >> map was created using Free mind, an open source Mind Mapping program. The >> voice over was created using State from paranormal.com< >> http://paranormal.com> and Audacity to slow down the rate of speech by >> about 10%. I found that using text to speech created a consistent voice. In >> earlier projects I used live voices, which I could not later match with if >> I wanted to add further speech after the speaker was no longer >> available." linkID=""> >> > displayText="No" name="Result of Trigger" >> audio="FileLocation + 'media/exhibit_trigger.mp3'"/> >> >> > displayText="No" name="Tutor trap" audio="FileLocation + >> 'media/exhibit_tutorTrap.mp3'"/> >> >> > displayText="No" name="Responsibility" audio="FileLocation >> + 'media/exhibit_responsibilities.mp3'"/> >> >> > displayText="No" name="Outcomes" audio="FileLocation + >> 'media/exhibit_outcomes.mp3'"/> >> >> > displayText="No" name="Exhibit the behaviour" >> audio="FileLocation + 'media/exhibit_exhibit.mp3'"/> >> >> > displayText="No" name="Competence" audio="FileLocation + >> 'media/exhibit_competence.mp3'"/> >> >> > displayText="No" name="Practice" audio="FileLocation + >> 'media/exhibit_practice.mp3'"/> >> >> > displayText="No" name="Frequency" audio="FileLocation + >> 'media/exhibit_frequency.mp3'"/> >> >> > displayText="No" name="Sleep and performance" audio="FileLocation + >> 'media/exhibit_sleep.mp3'"/> >> >>
    >> >>
    >> >> >> and this page wizard : >> >> >> >> >> >> >> >> >> >> > options="Small,Medium,Large,Full" width="100"/> >> >> >> >> >> > width="100"/> >> >> >> >> >> > hotspot" displayText="Yes" x="0" y="0" w="100" h="100" /> >> >> >> >> >> >> >> > icon="icLayers" remove="true"> >> >> >> >> > width="100"/> >> >> >> i have connected the xml file to the new template and this is my results : >> >> >> >> >> >> 2014-11-06 13:00 GMT+01:00 > >: >> Send Xerte-dev mailing list submissions to >> xerte-dev at lists.nottingham.ac.uk> xerte-dev at lists.nottingham.ac.uk> >> >> To subscribe or unsubscribe via the World Wide Web, visit >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> or, via email, send a message with subject or body 'help' to >> xerte-dev-request at lists.nottingham.ac.uk> xerte-dev-request at lists.nottingham.ac.uk> >> >> You can reach the person managing the list at >> xerte-dev-owner at lists.nottingham.ac.uk> xerte-dev-owner at lists.nottingham.ac.uk> >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Xerte-dev digest..." >> >> >> Today's Topics: >> >> 1. modification of hotspot image template (sara djezar) >> 2. liste submissions (sara djezar) >> 3. Re: modification of hotspot image template (Julian Tenney) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Wed, 5 Nov 2014 15:42:09 +0100 >> From: sara djezar > >> To: xerte-dev at lists.nottingham.ac.uk> xerte-dev at lists.nottingham.ac.uk> >> Subject: [Xerte-dev] modification of hotspot image template >> Message-ID: >> < >> CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com >> > CACLZfoxNuMxPV_iqq_jBLTmEqkEVsXMuMjCzO-Pi6Q382T2Oqw at mail.gmail.com>> >> Content-Type: text/plain; charset="utf-8" >> >> Hello developers! >> >> I need your help . >> >> I want to make some modifications in the template ? hotspot image ? so >> that I can insert a text ( instead of image) and when user click in each >> area ( in this case line ) he can see another text (definition for >> example >> ) . can you help me to make the xml code please J >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: < >> http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/9abeac2b/attachment-0001.html >> > >> >> ------------------------------ >> >> Message: 2 >> Date: Wed, 5 Nov 2014 15:46:10 +0100 >> From: sara djezar > >> To: xerte-dev at lists.nottingham.ac.uk> xerte-dev at lists.nottingham.ac.uk> >> Subject: [Xerte-dev] liste submissions >> Message-ID: >> > 79rVBy0Q at mail.gmail.com> >> Content-Type: text/plain; charset="utf-8" >> >> >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: < >> http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/e17a38f0/attachment-0001.html >> > >> >> ------------------------------ >> >> Message: 3 >> Date: Wed, 5 Nov 2014 14:52:55 +0000 >> From: Julian Tenney > Julian.Tenney at nottingham.ac.uk>> >> To: For Xerte technical developers > > >> Subject: [Xerte-dev] Re: modification of hotspot image template >> Message-ID: >> < >> 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk >> > 12C67A1EEC419342AF5E59DA31562C3F0D99E349D1 at EXCHANGE1.ad.nottingham.ac.uk >> >> >> >> Content-Type: text/plain; charset="utf-8" >> >> Get the text you need, get a screenshot of it and turn it into an image. >> Use that in the interaction. >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk> xerte-dev-bounces at lists.nottingham.ac.uk> [mailto: >> xerte-dev-bounces at lists.nottingham.ac.uk> xerte-dev-bounces at lists.nottingham.ac.uk>] On Behalf Of sara djezar >> Sent: 05 November 2014 14:42 >> To: xerte-dev at lists.nottingham.ac.uk> xerte-dev at lists.nottingham.ac.uk> >> Subject: [Xerte-dev] modification of hotspot image template >> >> Hello developers! >> I need your help . >> I want to make some modifications in the template ? hotspot image ? so >> that I can insert a text ( instead of image) and when user click in each >> area ( in this case line ) he can see another text (definition for example >> ) . can you help me to make the xml code please ? >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: < >> http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141105/7c9d5fa4/attachment-0001.html >> > >> >> ------------------------------ >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> End of Xerte-dev Digest, Vol 39, 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. >> >> >> >> >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: < >> http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141106/364304c8/attachment.html >> > >> >> ------------------------------ >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> End of Xerte-dev Digest, Vol 39, 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-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 10 10:19:25 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 10 Nov 2014 10:19:25 +0000 Subject: [Xerte-dev] Re: HP5 content? In-Reply-To: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A3D034B@EXCHANGE1.ad.nottingham.ac.uk> First link is wrong: should be h5p.org. I wondered why you were directing us to a property web site! Is the list still spamming everyone? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 07 November 2014 18:37 To: For Xerte technical developers Subject: [Xerte-dev] HP5 content? Hello all, I was recently pointed to HP5 (http://hp5.org), which is a free tool/library for creating nifty-looking interactive content in HTML5, so all you need is a modern browser to use them. I have only just started digging into it, and I don't know if it can speak SCORM or not, but you can do some very cool things with it. http://h5p.org/content-types-and-applications Check this one out!! http://h5p.org/interactive-video Of course, there's a lot of overlap between this stuff and the learning objects that Xerte uses, so it occurred to me, does anyone have any thoughts re what would be involved in integrating the two? This would give Xerte a bunch of really cool content options, and allow HP5 content to be used as a SCORM module. Thoughts? Would this be a completely insane thing to look into for creating my first custom Xerte LO? -Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 10 10:26:17 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 10 Nov 2014 10:26:17 +0000 Subject: [Xerte-dev] Re: HP5 content? In-Reply-To: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> Xerte can do most of those things: I didn't see anything we can't do, some things are a bit different. If you wanted to you could simply embed the h5p content in the xerte LO. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 07 November 2014 18:37 To: For Xerte technical developers Subject: [Xerte-dev] HP5 content? Hello all, I was recently pointed to HP5 (http://hp5.org), which is a free tool/library for creating nifty-looking interactive content in HTML5, so all you need is a modern browser to use them. I have only just started digging into it, and I don't know if it can speak SCORM or not, but you can do some very cool things with it. http://h5p.org/content-types-and-applications Check this one out!! http://h5p.org/interactive-video Of course, there's a lot of overlap between this stuff and the learning objects that Xerte uses, so it occurred to me, does anyone have any thoughts re what would be involved in integrating the two? This would give Xerte a bunch of really cool content options, and allow HP5 content to be used as a SCORM module. Thoughts? Would this be a completely insane thing to look into for creating my first custom Xerte LO? -Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: From i.donkervoort at 12change.eu Wed Nov 12 14:54:53 2014 From: i.donkervoort at 12change.eu (Inge Donkervoort 12Change) Date: Wed, 12 Nov 2014 15:54:53 +0100 Subject: [Xerte-dev] Design new editor In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <546374BD.40809@12change.eu> Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 12Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn -------------- next part -------------- An HTML attachment was scrubbed... URL: From xerte at pgogywebstuff.com Wed Nov 12 16:07:46 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy - xerte)) Date: Wed, 12 Nov 2014 16:07:46 +0000 Subject: [Xerte-dev] Re: Design new editor Message-ID: <8n452ulpjbv2kuhouebsgelu.1415808466476@email.android.com> Happy to help where i can - early next year will have time
    -------- Original message --------
    From: Inge Donkervoort 12Change
    Date:12/11/2014 14:54 (GMT+00:00)
    To: For Xerte technical developers
    Subject: [Xerte-dev] Design new editor
    Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Wed Nov 12 16:09:52 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Wed, 12 Nov 2014 16:09:52 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <8n452ulpjbv2kuhouebsgelu.1415808466476@email.android.com> References: <8n452ulpjbv2kuhouebsgelu.1415808466476@email.android.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0B52@EXCHANGE1.ad.nottingham.ac.uk> You better get your black roll neck out, and a fancy frapacapamochachino then? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat L (pgogy - xerte) Sent: 12 November 2014 16:08 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor Happy to help where i can - early next year will have time -------- Original message -------- From: Inge Donkervoort 12Change Date:12/11/2014 14:54 (GMT+00:00) To: For Xerte technical developers Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 brsmith at akamai.com Wed Nov 12 19:21:06 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Wed, 12 Nov 2014 19:21:06 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <546374BD.40809@12change.eu> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> Message-ID: My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Thu Nov 13 09:13:15 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 13 Nov 2014 09:13:15 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: [cid:image005.jpg at 01CFFF22.0E86A5F0] Also there are some bits that don't work very gracefully, where might need to come up with a better way: [cid:image006.jpg at 01CFFF22.0E86A5F0] Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 46222 bytes Desc: image005.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 47599 bytes Desc: image006.jpg URL: From ronm at mitchellmedia.co.uk Thu Nov 13 09:30:07 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Thu, 13 Nov 2014 09:30:07 -0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <005301cfff24$6b373740$41a5a5c0$@co.uk> >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: Also there are some bits that don't work very gracefully, where might need to come up with a better way: Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change Organization: 12Change Reply-To: For Xerte technical developers Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 46222 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 47599 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Thu Nov 13 09:29:01 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Thu, 13 Nov 2014 09:29:01 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <005301cfff24$6b373740$41a5a5c0$@co.uk> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> <005301cfff24$6b373740$41a5a5c0$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CE5@EXCHANGE1.ad.nottingham.ac.uk> We could look at some of the other tools and see what we like / don't like about how they've done things. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 13 November 2014 09:30 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: [cid:image001.jpg at 01CFFF24.42499DA0] Also there are some bits that don't work very gracefully, where might need to come up with a better way: [cid:image002.jpg at 01CFFF24.42499DA0] Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 46222 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 47599 bytes Desc: image002.jpg URL: From Fay.Cross at nottingham.ac.uk Fri Nov 14 14:55:14 2014 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Fri, 14 Nov 2014 14:55:14 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I've had a bit of a play with how we could change the 'problem' areas (insert page, optional properties), you can see it here. It's still very similar to the Flash version though so maybe we need more revolutionary ideas instead? Main changes: The insert page menu now appears in the main panel. Previously we've mentioned possibly categorising the pages in some way (difficulty level / html5 / mobile friendly etc.) so there would be more space for info about this now. I thought the accordion could work like this where you hover and pause to open it rather than click but would have to obviously be click on touch screens. Optional & Language properties are available below the required ones (not convinced this is best way but improvement on always on screen?) The Copy & Delete buttons are now next to each page on the page list so the initial view is less cluttered. There's also some ideas for a smaller mobile version of the editor but I've no idea if we would do this, particularly since the more complicated page types aren't great on smaller devices. Although bootstrap does work well on them. Anyway, just some ideas. Completely disregard everything if you want :) Fay From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: [cid:image001.jpg at 01D00017.2B902860] Also there are some bits that don't work very gracefully, where might need to come up with a better way: [cid:image002.jpg at 01D00017.2B902860] Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: 46222 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 47599 bytes Desc: image002.jpg URL: From brsmith at akamai.com Fri Nov 14 18:49:41 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Fri, 14 Nov 2014 18:49:41 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <005301cfff24$6b373740$41a5a5c0$@co.uk> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> <005301cfff24$6b373740$41a5a5c0$@co.uk> Message-ID: With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The "Insert Page" breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub...)-types ever became desirable. The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 Now excuse me, I need to go write "I will not say to myself 'I'll just throw together a quick mock-up, it won't take long', for that is a lie" on the blackboard 1000 times... :P [cid:6B3EEAD5-D3FE-430C-B891-57F62DD9E307] -Brad From: Ron Mitchell > Reply-To: For Xerte technical developers > Date: Thursday, November 13, 2014 at 4:30 AM To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: [cid:image001.jpg at 01CFFF24.69F5B690] Also there are some bits that don't work very gracefully, where might need to come up with a better way: [cid:image002.jpg at 01CFFF24.69F5B690] Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: brsmith_xerte_add_page_mockup-smaller.png Type: image/png Size: 236459 bytes Desc: brsmith_xerte_add_page_mockup-smaller.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 46222 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 47599 bytes Desc: image002.jpg URL: From reijnders at tor.nl Sat Nov 15 09:22:07 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Sat, 15 Nov 2014 10:22:07 +0100 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> <005301cfff24$6b373740$41a5a5c0$@co.uk> Message-ID: <54671B3F.50708@tor.nl> I like this idea. On the Optional parameters, I am not sure why you want t hide them. Most of the comments that we got really liked the fact that you could immediatley see what the optional parameters are. And, if you happen to have a smaller screen you can auto-colapse the panel. Just my 2 cents... Smith, Bradley schreef op 14-11-2014 19:49: > With regard to the Insert Page dialog, I think the interface could use > space more efficiently if it used breadcrumbs instead of nested menus, > as in the mock-up screenshot below. The "Insert Page" breadcrumb would > reset the menu on the left to show all of the top-level page types. > This allows the dialogue to be resized once in a single div each time > a submenu is selected, without the messiness of dynamic menus. It > would also allow for an arbitrary number of submenus if having page > sub(-sub-sub...)-types ever became desirable. > > The source for the mock-up (which is just a static html+css, not an > actual implementation in Xerte!) is here: > > https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 > > Now excuse me, I need to go write "I will not say to myself 'I'll just > throw together a quick mock-up, it won't take long', for that is a > lie" on the blackboard 1000 times... :P > > > > ---Brad > > From: Ron Mitchell > > Reply-To: For Xerte technical developers > > > Date: Thursday, November 13, 2014 at 4:30 AM > To: 'For Xerte technical developers' > > Subject: [Xerte-dev] Re: Design new editor > > >"We might want to think about bringing the whole interface (workspace > as well) up to date."< > > Absolutely! Happy to help too but very little time during November now. > > Ron > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Julian Tenney > *Sent:* 13 November 2014 09:13 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: Design new editor > > It would be good to have discussions here about the sort of thing we > want to achieve, I don't see why we can't move on a lot of the > 'design' work between us: this is the sort of thing this list is for! > > This is where we are right now, and to start with it would be good to > just try some ideas -- it's pretty close to the old editor: > > Also there are some bits that don't work very gracefully, where might > need to come up with a better way: > > Also, the next release doesn't need to have any University of > Nottingham branding in it. > > We might want to think about bringing the whole interface (workspace > as well) up to date. > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Smith, Bradley > *Sent:* 12 November 2014 19:21 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: Design new editor > > My html5/css skills are ok, and I might even be able to justify > spending some work time on this, but it'll be hard to make guarantees. > Given that there seem to be others in a similar position, could you > just post a sketch (so to speak) of what problems you need solved to > the list and/or in a GitHub issue so we can all discuss it? > > ---Brad > > *From: *Inge Donkervoort 12Change > > *Organization: *12Change > *Reply-To: *For Xerte technical developers > > > *Date: *Wednesday, November 12, 2014 at 9:54 AM > *To: *For Xerte technical developers > > *Subject: *[Xerte-dev] Design new editor > > Hi all, > > As you know we are working hard on the new Xerte editor. We are > looking for someone to help us with the design. If you like to help us > and have html5 and css skills then please let us now. It's all > voluntary work but the gratefulnes from the community will be your > reward ;) > > Bye, > Inge > > 12Change > > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > M 06-50267104 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 236459 bytes Desc: not available URL: From xerte at pgogywebstuff.com Sun Nov 16 11:21:18 2014 From: xerte at pgogywebstuff.com (Pat L (pgogy - xerte)) Date: Sun, 16 Nov 2014 11:21:18 +0000 Subject: [Xerte-dev] Re: Design new editor Message-ID: <8rxs7jwmvgxx4j52rn95c8xy.1416136603971@email.android.com> I was asked to do a mock up in powerpoint the other day but figured coding was faster :) I wonder if there is a case for different view options for an account?? Also a recently used or 'already used in this project' list on insert? Wondering if there is also a case for making this the style for all editors and turning it into a library for others to use?
    -------- Original message --------
    From: "Smith, Bradley"
    Date:14/11/2014 18:49 (GMT+00:00)
    To: For Xerte technical developers
    Subject: [Xerte-dev] Re: Design new editor
    With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The ?Insert Page? breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub?)-types ever became desirable. The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 Now excuse me, I need to go write ?I will not say to myself ?I?ll just throw together a quick mock-up, it won?t take long?, for that is a lie? on the blackboard 1000 times? :P ?Brad From: Ron Mitchell Reply-To: For Xerte technical developers Date: Thursday, November 13, 2014 at 4:30 AM To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don?t see why we can?t move on a lot of the ?design? work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas ? it?s pretty close to the old editor: Also there are some bits that don?t work very gracefully, where might need to come up with a better way: Also, the next release doesn?t need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it?ll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? ?Brad From: Inge Donkervoort 12Change Organization: 12Change Reply-To: For Xerte technical developers Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: brsmith_xerte_add_page_mockup-smaller.png Type: image/png Size: 236459 bytes Desc: not available URL: From i.donkervoort at 12change.eu Sun Nov 16 19:53:26 2014 From: i.donkervoort at 12change.eu (Inge Donkervoort 12Change) Date: Sun, 16 Nov 2014 20:53:26 +0100 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <8rxs7jwmvgxx4j52rn95c8xy.1416136603971@email.android.com> References: <8rxs7jwmvgxx4j52rn95c8xy.1416136603971@email.android.com> Message-ID: <546900B6.5040401@12change.eu> Hi to all designers :), Thanks for all your help in advance. From the forum and emails we got from the testers from the new editor in the last few weeks, we extracted a list with remarks (see attachment). Can you take a look at them? In addition to this list, some things are already changed (see screen shots). Because of previous messages in this list, we didn't mention the insert dialog again. All your other ideas are also welcome. Just create a mock-up (and after that the the css files) and add them to this list. When it's agreed by the rest we add the css to the beta version. Good luck and have a lot of fun! Bye, Inge & Tom 12Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Pat L (pgogy - xerte) schreef op 16-11-2014 12:21: > I was asked to do a mock up in powerpoint the other day but figured coding was faster :) > > I wonder if there is a case for different view options for an account? > > Also a recently used or 'already used in this project' list on insert? > > Wondering if there is also a case for making this the style for all editors and turning it into a library for others to use? > >
    -------- Original message --------
    From: "Smith, Bradley"
    Date:14/11/2014 18:49 (GMT+00:00)
    To: For Xerte technical developers
    Subject: [Xerte-dev] Re: Design new editor
    >
    With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The "Insert Page" breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub...)-types ever became desirable. > > The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: > > https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 > > Now excuse me, I need to go write "I will not say to myself 'I'll just throw together a quick mock-up, it won't take long', for that is a lie" on the blackboard 1000 times... :P > > > > > ---Brad > > From: Ron Mitchell > Reply-To: For Xerte technical developers > Date: Thursday, November 13, 2014 at 4:30 AM > To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: Design new editor > >> "We might want to think about bringing the whole interface (workspace as well) up to date."< > > Absolutely! Happy to help too but very little time during November now. > > Ron > > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney > Sent: 13 November 2014 09:13 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Design new editor > > It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! > > This is where we are right now, and to start with it would be good to just try some ideas -- it's pretty close to the old editor: > > > > Also there are some bits that don't work very gracefully, where might need to come up with a better way: > > > > Also, the next release doesn't need to have any University of Nottingham branding in it. > > We might want to think about bringing the whole interface (workspace as well) up to date. > > From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley > Sent: 12 November 2014 19:21 > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Design new editor > > My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? > > ---Brad > > From: Inge Donkervoort 12Change > Organization: 12Change > Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM > To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor > > Hi all, > > As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) > > Bye, > Inge > > 1 2 Change > > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > M 06-50267104 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > > > I was asked to do a mock up in powerpoint the other day but figured > coding was faster :) > > I wonder if there is a case for different view options for an account? > > Also a recently used or 'already used in this project' list on insert? > > Wondering if there is also a case for making this the style for all > editors and turning it into a library for others to use? > > > -------- Original message -------- > From: "Smith, Bradley" > Date:14/11/2014 18:49 (GMT+00:00) > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Design new editor > > With regard to the Insert Page dialog, I think the interface could use > space more efficiently if it used breadcrumbs instead of nested menus, > as in the mock-up screenshot below. The "Insert Page" breadcrumb would > reset the menu on the left to show all of the top-level page types. > This allows the dialogue to be resized once in a single div each time > a submenu is selected, without the messiness of dynamic menus. It > would also allow for an arbitrary number of submenus if having page > sub(-sub-sub...)-types ever became desirable. > > The source for the mock-up (which is just a static html+css, not an > actual implementation in Xerte!) is here: > > https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 > > Now excuse me, I need to go write "I will not say to myself 'I'll just > throw together a quick mock-up, it won't take long', for that is a > lie" on the blackboard 1000 times... :P > > > > ---Brad > > From: Ron Mitchell > > Reply-To: For Xerte technical developers > > > Date: Thursday, November 13, 2014 at 4:30 AM > To: 'For Xerte technical developers' > > Subject: [Xerte-dev] Re: Design new editor > > >"We might want to think about bringing the whole interface (workspace > as well) up to date."< > > Absolutely! Happy to help too but very little time during November now. > > Ron > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Julian Tenney > *Sent:* 13 November 2014 09:13 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: Design new editor > > It would be good to have discussions here about the sort of thing we > want to achieve, I don't see why we can't move on a lot of the > 'design' work between us: this is the sort of thing this list is for! > > This is where we are right now, and to start with it would be good to > just try some ideas -- it's pretty close to the old editor: > > Also there are some bits that don't work very gracefully, where might > need to come up with a better way: > > Also, the next release doesn't need to have any University of > Nottingham branding in it. > > We might want to think about bringing the whole interface (workspace > as well) up to date. > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Smith, Bradley > *Sent:* 12 November 2014 19:21 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: Design new editor > > My html5/css skills are ok, and I might even be able to justify > spending some work time on this, but it'll be hard to make guarantees. > Given that there seem to be others in a similar position, could you > just post a sketch (so to speak) of what problems you need solved to > the list and/or in a GitHub issue so we can all discuss it? > > ---Brad > > *From: *Inge Donkervoort 12Change > > *Organization: *12Change > *Reply-To: *For Xerte technical developers > > > *Date: *Wednesday, November 12, 2014 at 9:54 AM > *To: *For Xerte technical developers > > *Subject: *[Xerte-dev] Design new editor > > Hi all, > > As you know we are working hard on the new Xerte editor. We are > looking for someone to help us with the design. If you like to help us > and have html5 and css skills then please let us now. It's all > voluntary work but the gratefulnes from the community will be your > reward ;) > > Bye, > Inge > > 12Change > > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > M 06-50267104 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Lijst_opmerkingen_XOT_derden_design.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 313905 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 17 11:08:52 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 17 Nov 2014 11:08:52 +0000 Subject: [Xerte-dev] Xampp Install Not Working? Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD60B@EXCHANGE1.ad.nottingham.ac.uk> Hi, If I run a 2.1 xampp install onto localhost, I cannot create anything: when the editor window opens, I get this. This is from the 2.1 zip linked to from our pages. Can anyone else replicate this? [cid:image001.png at 01D00256.DF08C000] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 64463 bytes Desc: image001.png URL: From reijnders at tor.nl Mon Nov 17 11:21:58 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 17 Nov 2014 12:21:58 +0100 Subject: [Xerte-dev] Re: Xampp Install Not Working? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD60B@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD60B@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <5469DA56.3080504@tor.nl> Are you sure this is 2.1? 2.1 should NOT refer to edithtml.php! Where is the link on your pages, so I can check the actual zip file. Julian Tenney schreef op 17-11-2014 12:08: > > Hi, > > If I run a 2.1 xampp install onto localhost, I cannot create anything: > when the editor window opens, I get this. This is from the 2.1 zip > linked to from our pages. > > Can anyone else replicate this? > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 64463 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 17 11:23:00 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 17 Nov 2014 11:23:00 +0000 Subject: [Xerte-dev] Re: Xampp Install Not Working? In-Reply-To: <5469DA56.3080504@tor.nl> References: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD60B@EXCHANGE1.ad.nottingham.ac.uk> <5469DA56.3080504@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD651@EXCHANGE1.ad.nottingham.ac.uk> I just downloaded the zip from the link on our website.... From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 17 November 2014 11:22 To: For Xerte technical developers Subject: [Xerte-dev] Re: Xampp Install Not Working? Are you sure this is 2.1? 2.1 should NOT refer to edithtml.php! Where is the link on your pages, so I can check the actual zip file. Julian Tenney schreef op 17-11-2014 12:08: Hi, If I run a 2.1 xampp install onto localhost, I cannot create anything: when the editor window opens, I get this. This is from the 2.1 zip linked to from our pages. Can anyone else replicate this? [cid:image001.png at 01D00258.D8691F90] _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 64463 bytes Desc: image001.png URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 17 11:28:10 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 17 Nov 2014 11:28:10 +0000 Subject: [Xerte-dev] Re: Xampp Install Not Working? In-Reply-To: <5469DA56.3080504@tor.nl> References: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD60B@EXCHANGE1.ad.nottingham.ac.uk> <5469DA56.3080504@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD669@EXCHANGE1.ad.nottingham.ac.uk> This si the link: [cid:image001.png at 01D00259.90E5D270] From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 17 November 2014 11:22 To: For Xerte technical developers Subject: [Xerte-dev] Re: Xampp Install Not Working? Are you sure this is 2.1? 2.1 should NOT refer to edithtml.php! Where is the link on your pages, so I can check the actual zip file. Julian Tenney schreef op 17-11-2014 12:08: Hi, If I run a 2.1 xampp install onto localhost, I cannot create anything: when the editor window opens, I get this. This is from the 2.1 zip linked to from our pages. Can anyone else replicate this? [cid:image002.png at 01D00259.90E5D270] _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 356236 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 64463 bytes Desc: image002.png URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 17 15:59:29 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 17 Nov 2014 15:59:29 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <8rxs7jwmvgxx4j52rn95c8xy.1416136603971@email.android.com> References: <8rxs7jwmvgxx4j52rn95c8xy.1416136603971@email.android.com> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD9B8@EXCHANGE1.ad.nottingham.ac.uk> > I wonder if there is a case for different view options for an account? Not sure what you mean. > Also a recently used or 'already used in this project' list on insert? Possibly. We need more work around this bit anyway. > Wondering if there is also a case for making this the style for all editors and turning it into a library for others to use? Not sure what you mean. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Pat L (pgogy - xerte) Sent: 16 November 2014 11:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor I was asked to do a mock up in powerpoint the other day but figured coding was faster :) I wonder if there is a case for different view options for an account? Also a recently used or 'already used in this project' list on insert? Wondering if there is also a case for making this the style for all editors and turning it into a library for others to use? -------- Original message -------- From: "Smith, Bradley" Date:14/11/2014 18:49 (GMT+00:00) To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The ?Insert Page? breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub?)-types ever became desirable. The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 Now excuse me, I need to go write ?I will not say to myself ?I?ll just throw together a quick mock-up, it won?t take long?, for that is a lie? on the blackboard 1000 times? :P [cid:image001.png at 01D0027F.786791E0] ?Brad From: Ron Mitchell > Reply-To: For Xerte technical developers > Date: Thursday, November 13, 2014 at 4:30 AM To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don?t see why we can?t move on a lot of the ?design? work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas ? it?s pretty close to the old editor: [cid:image001.jpg at 01CFFF24.69F5B690] Also there are some bits that don?t work very gracefully, where might need to come up with a better way: [cid:image002.jpg at 01CFFF24.69F5B690] Also, the next release doesn?t need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it?ll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? ?Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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.png Type: image/png Size: 236459 bytes Desc: image001.png URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 17 16:02:50 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 17 Nov 2014 16:02:50 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <54671B3F.50708@tor.nl> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> <005301cfff24$6b373740$41a5a5c0$@co.uk> <54671B3F.50708@tor.nl> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD9C7@EXCHANGE1.ad.nottingham.ac.uk> My preference is to hide the optional properties, but if you open them, then perhaps they should remain open. It's just about keeping the interface really clean and not intimidating users; that might be possible by using a different method to display the optional properties rather than the big chunky buttons: I'm not sure what that is though. I wish there was a really good set of flex-like controls for web native stuff. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 15 November 2014 09:22 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor I like this idea. On the Optional parameters, I am not sure why you want t hide them. Most of the comments that we got really liked the fact that you could immediatley see what the optional parameters are. And, if you happen to have a smaller screen you can auto-colapse the panel. Just my 2 cents... Smith, Bradley schreef op 14-11-2014 19:49: With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The "Insert Page" breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub...)-types ever became desirable. The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 Now excuse me, I need to go write "I will not say to myself 'I'll just throw together a quick mock-up, it won't take long', for that is a lie" on the blackboard 1000 times... :P [cid:image001.png at 01D0027F.EFEB45E0] -Brad From: Ron Mitchell > Reply-To: For Xerte technical developers > Date: Thursday, November 13, 2014 at 4:30 AM To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: [cid:image001.jpg at 01CFFF24.69F5B690] Also there are some bits that don't work very gracefully, where might need to come up with a better way: [cid:image002.jpg at 01CFFF24.69F5B690] Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 236459 bytes Desc: image001.png URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 17 16:17:17 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 17 Nov 2014 16:17:17 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> <005301cfff24$6b373740$41a5a5c0$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD9ED@EXCHANGE1.ad.nottingham.ac.uk> For the insert button, we could use a button with options, so the default is 'insert', but the other two options are available as well? [cid:image003.png at 01D00281.F4D8A5A0] From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 14 November 2014 18:50 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The "Insert Page" breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub...)-types ever became desirable. The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 Now excuse me, I need to go write "I will not say to myself 'I'll just throw together a quick mock-up, it won't take long', for that is a lie" on the blackboard 1000 times... :P [cid:image004.png at 01D00281.F4D8A5A0] -Brad From: Ron Mitchell > Reply-To: For Xerte technical developers > Date: Thursday, November 13, 2014 at 4:30 AM To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: [cid:image005.jpg at 01D00281.F4D8A5A0] Also there are some bits that don't work very gracefully, where might need to come up with a better way: [cid:image006.jpg at 01D00281.F4D8A5A0] Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: image003.png Type: image/png Size: 6471 bytes Desc: image003.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.png Type: image/png Size: 236459 bytes Desc: image004.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.jpg Type: image/jpeg Size: 46222 bytes Desc: image005.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 47599 bytes Desc: image006.jpg URL: From Fay.Cross at nottingham.ac.uk Wed Nov 19 10:31:22 2014 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Wed, 19 Nov 2014 10:31:22 +0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD9C7@EXCHANGE1.ad.nottingham.ac.uk> References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> <005301cfff24$6b373740$41a5a5c0$@co.uk> <54671B3F.50708@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD9C7@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: I would prefer them to not be visible initially too, I think it looks a bit daunting at the moment when every possible thing you might want to do on a page is there. I think that they are too easy to overlook on the Flash version though - I know when I've advised people in the past (who are already familiar with Toolkits) that there is an optional property that can do what they're trying to do, they hadn't noticed they were there at all. That's why I wondered about there being something below the required properties - so you fill in the form top to bottom and then immediately below the last item is something that will show the 'what else can this page do?' stuff if they're interested. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 17 November 2014 16:03 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My preference is to hide the optional properties, but if you open them, then perhaps they should remain open. It's just about keeping the interface really clean and not intimidating users; that might be possible by using a different method to display the optional properties rather than the big chunky buttons: I'm not sure what that is though. I wish there was a really good set of flex-like controls for web native stuff. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 15 November 2014 09:22 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor I like this idea. On the Optional parameters, I am not sure why you want t hide them. Most of the comments that we got really liked the fact that you could immediatley see what the optional parameters are. And, if you happen to have a smaller screen you can auto-colapse the panel. Just my 2 cents... Smith, Bradley schreef op 14-11-2014 19:49: With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The "Insert Page" breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub...)-types ever became desirable. The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 Now excuse me, I need to go write "I will not say to myself 'I'll just throw together a quick mock-up, it won't take long', for that is a lie" on the blackboard 1000 times... :P [cid:image001.png at 01D003E3.F6B12B50] -Brad From: Ron Mitchell > Reply-To: For Xerte technical developers > Date: Thursday, November 13, 2014 at 4:30 AM To: 'For Xerte technical developers' > Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: [cid:image001.jpg at 01CFFF24.69F5B690] Also there are some bits that don't work very gracefully, where might need to come up with a better way: [cid:image002.jpg at 01CFFF24.69F5B690] Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers > Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 236459 bytes Desc: image001.png URL: From ronm at mitchellmedia.co.uk Wed Nov 19 10:46:43 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Wed, 19 Nov 2014 10:46:43 -0000 Subject: [Xerte-dev] Re: Design new editor In-Reply-To: References: <166F982A-53E3-4A7E-87FA-0EBC5E2982A6@akamai.com> <12C67A1EEC419342AF5E59DA31562C3F0D9A3D0355@EXCHANGE1.ad.nottingham.ac.uk> <546374BD.40809@12change.eu> <12C67A1EEC419342AF5E59DA31562C3F0D9A5E0CB9@EXCHANGE1.ad.nottingham.ac.uk> <005301cfff24$6b373740$41a5a5c0$@co.uk> <54671B3F.50708@tor.nl> <12C67A1EEC419342AF5E59DA31562C3F0D9A7BD9C7@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <007201d003e6$1c77a970$5566fc50$@co.uk> For other users I agree with Julian that perhaps the optional property panel should be closed by default but then we need a more prominent link/button to 'show optional properties' For me and other regular users I think having the optional properties visible and always available and with an indication of which have already been added e.g. greyed out is great! From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Fay Cross Sent: 19 November 2014 10:31 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor I would prefer them to not be visible initially too, I think it looks a bit daunting at the moment when every possible thing you might want to do on a page is there. I think that they are too easy to overlook on the Flash version though - I know when I've advised people in the past (who are already familiar with Toolkits) that there is an optional property that can do what they're trying to do, they hadn't noticed they were there at all. That's why I wondered about there being something below the required properties - so you fill in the form top to bottom and then immediately below the last item is something that will show the 'what else can this page do?' stuff if they're interested. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 17 November 2014 16:03 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My preference is to hide the optional properties, but if you open them, then perhaps they should remain open. It's just about keeping the interface really clean and not intimidating users; that might be possible by using a different method to display the optional properties rather than the big chunky buttons: I'm not sure what that is though. I wish there was a really good set of flex-like controls for web native stuff. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 15 November 2014 09:22 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor I like this idea. On the Optional parameters, I am not sure why you want t hide them. Most of the comments that we got really liked the fact that you could immediatley see what the optional parameters are. And, if you happen to have a smaller screen you can auto-colapse the panel. Just my 2 cents... Smith, Bradley schreef op 14-11-2014 19:49: With regard to the Insert Page dialog, I think the interface could use space more efficiently if it used breadcrumbs instead of nested menus, as in the mock-up screenshot below. The "Insert Page" breadcrumb would reset the menu on the left to show all of the top-level page types. This allows the dialogue to be resized once in a single div each time a submenu is selected, without the messiness of dynamic menus. It would also allow for an arbitrary number of submenus if having page sub(-sub-sub.)-types ever became desirable. The source for the mock-up (which is just a static html+css, not an actual implementation in Xerte!) is here: https://gist.github.com/usernamenumber/ab4d4486430eb777cb42 Now excuse me, I need to go write "I will not say to myself 'I'll just throw together a quick mock-up, it won't take long', for that is a lie" on the blackboard 1000 times. :P -Brad From: Ron Mitchell Reply-To: For Xerte technical developers Date: Thursday, November 13, 2014 at 4:30 AM To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Design new editor >"We might want to think about bringing the whole interface (workspace as well) up to date."< Absolutely! Happy to help too but very little time during November now. Ron From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 13 November 2014 09:13 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor It would be good to have discussions here about the sort of thing we want to achieve, I don't see why we can't move on a lot of the 'design' work between us: this is the sort of thing this list is for! This is where we are right now, and to start with it would be good to just try some ideas - it's pretty close to the old editor: Also there are some bits that don't work very gracefully, where might need to come up with a better way: Also, the next release doesn't need to have any University of Nottingham branding in it. We might want to think about bringing the whole interface (workspace as well) up to date. From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 12 November 2014 19:21 To: For Xerte technical developers Subject: [Xerte-dev] Re: Design new editor My html5/css skills are ok, and I might even be able to justify spending some work time on this, but it'll be hard to make guarantees. Given that there seem to be others in a similar position, could you just post a sketch (so to speak) of what problems you need solved to the list and/or in a GitHub issue so we can all discuss it? -Brad From: Inge Donkervoort 12Change Organization: 12Change Reply-To: For Xerte technical developers Date: Wednesday, November 12, 2014 at 9:54 AM To: For Xerte technical developers Subject: [Xerte-dev] Design new editor Hi all, As you know we are working hard on the new Xerte editor. We are looking for someone to help us with the design. If you like to help us and have html5 and css skills then please let us now. It's all voluntary work but the gratefulnes from the community will be your reward ;) Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 236459 bytes Desc: not available URL: From Fay.Cross at nottingham.ac.uk Wed Nov 19 16:47:30 2014 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Wed, 19 Nov 2014 16:47:30 +0000 Subject: [Xerte-dev] New Decision Tree module Message-ID: Hello I've just uploaded a new template to the repository called 'Decision Tree'. Here are a couple of examples of the type of content you can produce with it: * The Environmental Guide * Compile Result Example - this looks similar to the link above but instead of routing through different steps like a flow chart, each question that's answered saves a 'result' which is presented on the last step. I am also working on a slightly simpler version of the template that can be used as a page type in the main template. By the way (Tom?), this template works fine in the Flash editor but I can't test it properly in the new one because when you click on a nested node in the page list it seems to show the wizard for the parent page instead. This is a problem when editing normal projects too so I'm sure it's something you probably already know about. I'll make sure it works properly in the html editor when this is sorted. Thanks Fay -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Wed Nov 19 20:10:23 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Wed, 19 Nov 2014 21:10:23 +0100 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: References: Message-ID: <546CF92F.6030605@tor.nl> No, I don't know about the nested page problem. Can you please elaborate a bit, than I can fix it a.s.a.p. Fay Cross schreef op 19-11-2014 17:47: > > Hello > > I've just uploaded a new template to the repository called 'Decision > Tree'. > > Here are a couple of examples of the type of content you can produce > with it: > > ?The Environmental Guide > > ?Compile Result Example > - this looks similar > to the link above but instead of routing through different steps like > a flow chart, each question that's answered saves a 'result' which is > presented on the last step. > > I am also working on a slightly simpler version of the template that > can be used as a page type in the main template. > > By the way (Tom?), this template works fine in the Flash editor but I > can't test it properly in the new one because when you click on a > nested node in the page list it seems to show the wizard for the > parent page instead. This is a problem when editing normal projects > too so I'm sure it's something you probably already know about. I'll > make sure it works properly in the html editor when this is sorted. > > Thanks > > Fay > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Fay.Cross at nottingham.ac.uk Thu Nov 20 09:22:15 2014 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Thu, 20 Nov 2014 09:22:15 +0000 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: <546CF92F.6030605@tor.nl> References: <546CF92F.6030605@tor.nl> Message-ID: It works ok on the privatebeta site but I was testing on an xampp install using the xertetoolkits_unstable zip from the website yesterday. Pages show the correct wizard when they don't have nested nodes. But when you add a more complicated page the fields you are given to fill in are always for the parent of that node. There's a screen shot attached which shows what happens for the Tabbed Navigator + page. Also, I like the breadcrumbs a lot, but they're not working quite right. If you click on a page and then click back to the Learning Object folder the breadcrumbs still show as if you are on the page (you can see this on privatebeta site) When in nested pages the breadcrumbs work ok for the first level of children but if there is more nesting then breadcrumbs is abbreviated (see screenshot). Fay From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 19 November 2014 20:10 To: For Xerte technical developers Subject: [Xerte-dev] Re: New Decision Tree module No, I don't know about the nested page problem. Can you please elaborate a bit, than I can fix it a.s.a.p. Fay Cross schreef op 19-11-2014 17:47: Hello I've just uploaded a new template to the repository called 'Decision Tree'. Here are a couple of examples of the type of content you can produce with it: * The Environmental Guide * Compile Result Example - this looks similar to the link above but instead of routing through different steps like a flow chart, each question that's answered saves a 'result' which is presented on the last step. I am also working on a slightly simpler version of the template that can be used as a page type in the main template. By the way (Tom?), this template works fine in the Flash editor but I can't test it properly in the new one because when you click on a nested node in the page list it seems to show the wizard for the parent page instead. This is a problem when editing normal projects too so I'm sure it's something you probably already know about. I'll make sure it works properly in the html editor when this is sorted. Thanks Fay This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: xot.jpg Type: image/jpeg Size: 196856 bytes Desc: xot.jpg URL: From reijnders at tor.nl Thu Nov 20 11:21:19 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Thu, 20 Nov 2014 12:21:19 +0100 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: References: <546CF92F.6030605@tor.nl> Message-ID: <546DCEAF.1050702@tor.nl> Thank you. This helps a lot in fixing it. Will let you know when the fix is available. Tom Fay Cross schreef op 20-11-2014 10:22: > > It works ok on the privatebeta site but I was testing on an xampp > install using the xertetoolkits_unstable zip from the website yesterday. > > Pages show the correct wizard when they don't have nested nodes. But > when you add a more complicated page the fields you are given to fill > in are always for the parent of that node. There's a screen shot > attached which shows what happens for the Tabbed Navigator + page. > > Also, I like the breadcrumbs a lot, but they're not working quite > right. If you click on a page and then click back to the Learning > Object folder the breadcrumbs still show as if you are on the page > (you can see this on privatebeta site) > > When in nested pages the breadcrumbs work ok for the first level of > children but if there is more nesting then breadcrumbs is abbreviated > (see screenshot). > > Fay > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Tom > Reijnders > *Sent:* 19 November 2014 20:10 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: New Decision Tree module > > No, I don't know about the nested page problem. Can you please > elaborate a bit, than I can fix it a.s.a.p. > > Fay Cross schreef op 19-11-2014 17:47: > > Hello > > I've just uploaded a new template to the repository called > 'Decision Tree'. > > Here are a couple of examples of the type of content you can > produce with it: > > ?The Environmental Guide > > > ?Compile Result Example > - this looks > similar to the link above but instead of routing through different > steps like a flow chart, each question that's answered saves a > 'result' which is presented on the last step. > > I am also working on a slightly simpler version of the template > that can be used as a page type in the main template. > > By the way (Tom?), this template works fine in the Flash editor > but I can't test it properly in the new one because when you click > on a nested node in the page list it seems to show the wizard for > the parent page instead. This is a problem when editing normal > projects too so I'm sure it's something you probably already know > about. I'll make sure it works properly in the html editor when > this is sorted. > > Thanks > > Fay > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage > your computer system, you are advised to perform your own checks. > Email communications with the University of Nottingham may be > monitored as permitted by UK legislation. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From i.donkervoort at 12change.eu Thu Nov 20 15:44:31 2014 From: i.donkervoort at 12change.eu (Inge Donkervoort 12Change) Date: Thu, 20 Nov 2014 16:44:31 +0100 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: References: Message-ID: <546E0C5F.1010107@12change.eu> Hi Fay, Looks great and also great functionality :). See a lot of possibilities with this template/page, also as a page type in the Nottingham template. Will it be one of the connector pages? Bye, Inge 12Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Fay Cross schreef op 19-11-2014 17:47: > > Hello > > I've just uploaded a new template to the repository called 'Decision > Tree'. > > Here are a couple of examples of the type of content you can produce > with it: > > ?The Environmental Guide > > ?Compile Result Example > - this looks similar > to the link above but instead of routing through different steps like > a flow chart, each question that's answered saves a 'result' which is > presented on the last step. > > I am also working on a slightly simpler version of the template that > can be used as a page type in the main template. > > By the way (Tom?), this template works fine in the Flash editor but I > can't test it properly in the new one because when you click on a > nested node in the page list it seems to show the wizard for the > parent page instead. This is a problem when editing normal projects > too so I'm sure it's something you probably already know about. I'll > make sure it works properly in the html editor when this is sorted. > > Thanks > > Fay > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From Fay.Cross at nottingham.ac.uk Thu Nov 20 16:01:58 2014 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Thu, 20 Nov 2014 16:01:58 +0000 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: <546E0C5F.1010107@12change.eu> References: <546E0C5F.1010107@12change.eu> Message-ID: I'm just working on a version that will be a page in the main template. At the moment it's pretty much just like the stand alone one but with a different layout to fit in with the rest of the pages. I can easily make it into a connector though. So when you get to your result you could choose to either just display some info (like the examples I sent you) or skip to a page you specify instead. Is that what you had in mind? From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort 12Change Sent: 20 November 2014 15:45 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: New Decision Tree module Hi Fay, Looks great and also great functionality :). See a lot of possibilities with this template/page, also as a page type in the Nottingham template. Will it be one of the connector pages? Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Fay Cross schreef op 19-11-2014 17:47: Hello I've just uploaded a new template to the repository called 'Decision Tree'. Here are a couple of examples of the type of content you can produce with it: * The Environmental Guide * Compile Result Example - this looks similar to the link above but instead of routing through different steps like a flow chart, each question that's answered saves a 'result' which is presented on the last step. I am also working on a slightly simpler version of the template that can be used as a page type in the main template. By the way (Tom?), this template works fine in the Flash editor but I can't test it properly in the new one because when you click on a nested node in the page list it seems to show the wizard for the parent page instead. This is a problem when editing normal projects too so I'm sure it's something you probably already know about. I'll make sure it works properly in the html editor when this is sorted. Thanks Fay This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From i.donkervoort at 12change.eu Thu Nov 20 16:39:28 2014 From: i.donkervoort at 12change.eu (Inge Donkervoort 12Change) Date: Thu, 20 Nov 2014 17:39:28 +0100 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: References: <546E0C5F.1010107@12change.eu> Message-ID: <546E1940.2080205@12change.eu> Hi Fay, Yes, exactly :) Bye, Inge 12Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Fay Cross schreef op 20-11-2014 17:01: > > I'm just working on a version that will be a page in the main > template. At the moment it's pretty much just like the stand alone one > but with a different layout to fit in with the rest of the pages. I > can easily make it into a connector though. So when you get to your > result you could choose to either just display some info (like the > examples I sent you) or skip to a page you specify instead. Is that > what you had in mind? > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Inge > Donkervoort 12Change > *Sent:* 20 November 2014 15:45 > *To:* xerte-dev at lists.nottingham.ac.uk > *Subject:* [Xerte-dev] Re: New Decision Tree module > > Hi Fay, > > Looks great and also great functionality :). See a lot of > possibilities with this template/page, also as a page type in the > Nottingham template. Will it be one of the connector pages? > > Bye, > Inge > > 12Change > > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > M 06-50267104 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > > Fay Cross schreef op 19-11-2014 17:47: > > Hello > > I've just uploaded a new template to the repository called > 'Decision Tree'. > > Here are a couple of examples of the type of content you can > produce with it: > > ?The Environmental Guide > > > ?Compile Result Example > - this looks > similar to the link above but instead of routing through different > steps like a flow chart, each question that's answered saves a > 'result' which is presented on the last step. > > I am also working on a slightly simpler version of the template > that can be used as a page type in the main template. > > By the way (Tom?), this template works fine in the Flash editor > but I can't test it properly in the new one because when you click > on a nested node in the page list it seems to show the wizard for > the parent page instead. This is a problem when editing normal > projects too so I'm sure it's something you probably already know > about. I'll make sure it works properly in the html editor when > this is sorted. > > Thanks > > Fay > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage > your computer system, you are advised to perform your own checks. > Email communications with the University of Nottingham may be > monitored as permitted by UK legislation. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Thu Nov 20 17:53:26 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Thu, 20 Nov 2014 18:53:26 +0100 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: <546DCEAF.1050702@tor.nl> References: <546CF92F.6030605@tor.nl> <546DCEAF.1050702@tor.nl> Message-ID: <546E2A96.2060903@tor.nl> Fay, Would you mind sending your message again, with the scrennshots? Thank you! Tom Tom Reijnders schreef op 20-11-2014 12:21: > Thank you. This helps a lot in fixing it. > > Will let you know when the fix is available. > > Tom > > Fay Cross schreef op 20-11-2014 10:22: >> >> It works ok on the privatebeta site but I was testing on an xampp >> install using the xertetoolkits_unstable zip from the website yesterday. >> >> Pages show the correct wizard when they don't have nested nodes. But >> when you add a more complicated page the fields you are given to fill >> in are always for the parent of that node. There's a screen shot >> attached which shows what happens for the Tabbed Navigator + page. >> >> Also, I like the breadcrumbs a lot, but they're not working quite >> right. If you click on a page and then click back to the Learning >> Object folder the breadcrumbs still show as if you are on the page >> (you can see this on privatebeta site) >> >> When in nested pages the breadcrumbs work ok for the first level of >> children but if there is more nesting then breadcrumbs is abbreviated >> (see screenshot). >> >> Fay >> >> *From:*xerte-dev-bounces at lists.nottingham.ac.uk >> [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Tom >> Reijnders >> *Sent:* 19 November 2014 20:10 >> *To:* For Xerte technical developers >> *Subject:* [Xerte-dev] Re: New Decision Tree module >> >> No, I don't know about the nested page problem. Can you please >> elaborate a bit, than I can fix it a.s.a.p. >> >> Fay Cross schreef op 19-11-2014 17:47: >> >> Hello >> >> I've just uploaded a new template to the repository called >> 'Decision Tree'. >> >> Here are a couple of examples of the type of content you can >> produce with it: >> >> ?The Environmental Guide >> >> >> ?Compile Result Example >> - this looks >> similar to the link above but instead of routing through >> different steps like a flow chart, each question that's answered >> saves a 'result' which is presented on the last step. >> >> I am also working on a slightly simpler version of the template >> that can be used as a page type in the main template. >> >> By the way (Tom?), this template works fine in the Flash editor >> but I can't test it properly in the new one because when you >> click on a nested node in the page list it seems to show the >> wizard for the parent page instead. This is a problem when >> editing normal projects too so I'm sure it's something you >> probably already know about. I'll make sure it works properly in >> the html editor when this is sorted. >> >> Thanks >> >> Fay >> >> This message and any attachment are intended solely for the >> addressee and may contain confidential information. If you have >> received this message in error, please send it back to me, and >> immediately delete it. Please do not use, copy or disclose the >> information contained in this message or in any attachment. Any >> views or opinions expressed by the author of this email do not >> necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage >> your computer system, you are advised to perform your own checks. >> Email communications with the University of Nottingham may be >> monitored as permitted by UK legislation. >> >> >> >> >> >> _______________________________________________ >> >> Xerte-dev mailing list >> >> Xerte-dev at lists.nottingham.ac.uk >> >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> >> -- >> -- >> >> Tom Reijnders >> TOR Informatica >> Chopinlaan 27 >> 5242HM Rosmalen >> Tel: 073 5226191 >> Fax: 073 5226196 >> >> >> This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this >> message in error, please send it back to me, and immediately delete >> it. Please do not use, copy or disclose the information contained >> in this message or in any attachment. Any views or opinions >> expressed by the author of this email do not necessarily reflect the >> views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer system, you are advised to perform your own checks. Email >> communications with the University of Nottingham may be monitored as >> permitted by UK legislation. >> >> >> >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Fri Nov 21 01:38:25 2014 From: djezarsara at gmail.com (sara djezar) Date: Fri, 21 Nov 2014 02:38:25 +0100 Subject: [Xerte-dev] need the original files charts.xml and charts.xwd Message-ID: hello develpers ! please help me i need the charts.xml file and charts.xwd to create a similair template with some modification . -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Thu Nov 20 23:08:35 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Fri, 21 Nov 2014 00:08:35 +0100 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: References: <546CF92F.6030605@tor.nl> Message-ID: <546E7473.6010601@tor.nl> I fixed this tonight. It should work correctly now. Fay Cross schreef op 20-11-2014 10:22: > > It works ok on the privatebeta site but I was testing on an xampp > install using the xertetoolkits_unstable zip from the website yesterday. > > Pages show the correct wizard when they don't have nested nodes. But > when you add a more complicated page the fields you are given to fill > in are always for the parent of that node. There's a screen shot > attached which shows what happens for the Tabbed Navigator + page. > > Also, I like the breadcrumbs a lot, but they're not working quite > right. If you click on a page and then click back to the Learning > Object folder the breadcrumbs still show as if you are on the page > (you can see this on privatebeta site) > > When in nested pages the breadcrumbs work ok for the first level of > children but if there is more nesting then breadcrumbs is abbreviated > (see screenshot). > > Fay > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Tom > Reijnders > *Sent:* 19 November 2014 20:10 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Re: New Decision Tree module > > No, I don't know about the nested page problem. Can you please > elaborate a bit, than I can fix it a.s.a.p. > > Fay Cross schreef op 19-11-2014 17:47: > > Hello > > I've just uploaded a new template to the repository called > 'Decision Tree'. > > Here are a couple of examples of the type of content you can > produce with it: > > ?The Environmental Guide > > > ?Compile Result Example > - this looks > similar to the link above but instead of routing through different > steps like a flow chart, each question that's answered saves a > 'result' which is presented on the last step. > > I am also working on a slightly simpler version of the template > that can be used as a page type in the main template. > > By the way (Tom?), this template works fine in the Flash editor > but I can't test it properly in the new one because when you click > on a nested node in the page list it seems to show the wizard for > the parent page instead. This is a problem when editing normal > projects too so I'm sure it's something you probably already know > about. I'll make sure it works properly in the html editor when > this is sorted. > > Thanks > > Fay > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any > views or opinions expressed by the author of this email do not > necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage > your computer system, you are advised to perform your own checks. > Email communications with the University of Nottingham may be > monitored as permitted by UK legislation. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > -- > -- > > Tom Reijnders > TOR Informatica > Chopinlaan 27 > 5242HM Rosmalen > Tel: 073 5226191 > Fax: 073 5226196 > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Sat Nov 22 18:28:15 2014 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Sat, 22 Nov 2014 18:28:15 +0000 Subject: [Xerte-dev] Re: need the original files charts.xml and charts.xwd In-Reply-To: References: Message-ID: Are you using Xerte Online Toolkits, the most recent version of Xerte, or Xerte with the original Page Wizards? It will be easier to answer your question if I know which development environment you are using. Kind regards Johnathan On 21 November 2014 at 01:38, sara djezar wrote: > hello develpers ! > please help me i need the charts.xml file and charts.xwd to create a > similair template with some modification . > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Sun Nov 23 17:47:45 2014 From: djezarsara at gmail.com (sara djezar) Date: Sun, 23 Nov 2014 18:47:45 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 In-Reply-To: References: Message-ID: i"m not using xerte online toolkits . but the desktop version 2014-11-23 13:00 GMT+01:00 : > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: need the original files charts.xml and charts.xwd > (Kemp Johnathan) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 22 Nov 2014 18:28:15 +0000 > From: Kemp Johnathan > To: For Xerte technical developers > Subject: [Xerte-dev] Re: need the original files charts.xml and > charts.xwd > Message-ID: > N5zm1P3Kd8mpGqu-1gAx7etzw at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > Are you using Xerte Online Toolkits, the most recent version of Xerte, or > Xerte with the original Page Wizards? > > It will be easier to answer your question if I know which development > environment you are using. > > Kind regards > > Johnathan > > On 21 November 2014 at 01:38, sara djezar wrote: > > > hello develpers ! > > please help me i need the charts.xml file and charts.xwd to create a > > similair template with some modification . > > > > > > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141122/8217beb6/attachment-0001.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, Issue 48 > ***************************************** > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer 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: hsjvmr.PNG Type: image/png Size: 31815 bytes Desc: not available URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 24 10:03:13 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 24 Nov 2014 10:03:13 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A8D87C5@EXCHANGE1.ad.nottingham.ac.uk> Xerte 3 is a compiler for the flex sdk. I?m not sure if this is what you want to be using? It doesn?t have templates the same way that xerte does: we?re not developing it actively anymore, and I have no idea if it works with the current flex sdk. In the end the sdk was changing so fast it became impossible to keep up with it, If you want to do flex development, use FlashDevelop. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 23 November 2014 17:48 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 i"m not using xerte online toolkits . but the desktop version [cid:image001.png at 01D007CD.DBCE39C0] 2014-11-23 13:00 GMT+01:00 >: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. Re: need the original files charts.xml and charts.xwd (Kemp Johnathan) ---------------------------------------------------------------------- Message: 1 Date: Sat, 22 Nov 2014 18:28:15 +0000 From: Kemp Johnathan > To: For Xerte technical developers > Subject: [Xerte-dev] Re: need the original files charts.xml and charts.xwd Message-ID: > Content-Type: text/plain; charset="utf-8" Are you using Xerte Online Toolkits, the most recent version of Xerte, or Xerte with the original Page Wizards? It will be easier to answer your question if I know which development environment you are using. Kind regards Johnathan On 21 November 2014 at 01:38, sara djezar > wrote: > hello develpers ! > please help me i need the charts.xml file and charts.xwd to create a > similair template with some modification . > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, Issue 48 ***************************************** This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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.png Type: image/png Size: 31815 bytes Desc: image001.png URL: From djezarsara at gmail.com Mon Nov 24 12:56:08 2014 From: djezarsara at gmail.com (sara djezar) Date: Mon, 24 Nov 2014 13:56:08 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 In-Reply-To: References: Message-ID: i just want to create a new template in xerte 2.18 so i need to create file.xml and file.xwd . i need charts.xml and charts.xwd to do some modifications . 2014-11-24 10:44 GMT+01:00 : > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: Xerte-dev Digest, Vol 39, Issue 48 (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 24 Nov 2014 10:03:13 +0000 > From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 > Message-ID: > < > 12C67A1EEC419342AF5E59DA31562C3F0D9A8D87C5 at EXCHANGE1.ad.nottingham.ac.uk> > > Content-Type: text/plain; charset="utf-8" > > Xerte 3 is a compiler for the flex sdk. I?m not sure if this is what you > want to be using? It doesn?t have templates the same way that xerte does: > we?re not developing it actively anymore, and I have no idea if it works > with the current flex sdk. In the end the sdk was changing so fast it > became impossible to keep up with it, > > If you want to do flex development, use FlashDevelop. > > From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar > Sent: 23 November 2014 17:48 > To: xerte-dev at lists.nottingham.ac.uk > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 > > i"m not using xerte online toolkits . but the desktop version > [cid:image001.png at 01D007CD.DBCE39C0] > > 2014-11-23 13:00 GMT+01:00 >: > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk xerte-dev at lists.nottingham.ac.uk> > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk xerte-dev-request at lists.nottingham.ac.uk> > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk xerte-dev-owner at lists.nottingham.ac.uk> > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: need the original files charts.xml and charts.xwd > (Kemp Johnathan) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 22 Nov 2014 18:28:15 +0000 > From: Kemp Johnathan johnathan.kemp at ntlworld.com>> > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: need the original files charts.xml and > charts.xwd > Message-ID: > N5zm1P3Kd8mpGqu-1gAx7etzw at mail.gmail.com N5zm1P3Kd8mpGqu-1gAx7etzw at mail.gmail.com>> > Content-Type: text/plain; charset="utf-8" > > Are you using Xerte Online Toolkits, the most recent version of Xerte, or > Xerte with the original Page Wizards? > > It will be easier to answer your question if I know which development > environment you are using. > > Kind regards > > Johnathan > > On 21 November 2014 at 01:38, sara djezar djezarsara at gmail.com>> wrote: > > > hello develpers ! > > please help me i need the charts.xml file and charts.xwd to create a > > similair template with some modification . > > > > > > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141122/8217beb6/attachment-0001.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, Issue 48 > ***************************************** > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer 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-dev/attachments/20141124/1c615d4c/attachment.html > > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: image001.png > Type: image/png > Size: 31815 bytes > Desc: image001.png > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141124/1c615d4c/attachment.png > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, Issue 50 > ***************************************** > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 24 12:57:17 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 24 Nov 2014 12:57:17 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A8D8963@EXCHANGE1.ad.nottingham.ac.uk> You?ll find them in the toolkits zip file, From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 24 November 2014 12:56 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 i just want to create a new template in xerte 2.18 so i need to create file.xml and file.xwd . i need charts.xml and charts.xwd to do some modifications . 2014-11-24 10:44 GMT+01:00 >: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. Re: Xerte-dev Digest, Vol 39, Issue 48 (Julian Tenney) ---------------------------------------------------------------------- Message: 1 Date: Mon, 24 Nov 2014 10:03:13 +0000 From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A8D87C5 at EXCHANGE1.ad.nottingham.ac.uk> Content-Type: text/plain; charset="utf-8" Xerte 3 is a compiler for the flex sdk. I?m not sure if this is what you want to be using? It doesn?t have templates the same way that xerte does: we?re not developing it actively anymore, and I have no idea if it works with the current flex sdk. In the end the sdk was changing so fast it became impossible to keep up with it, If you want to do flex development, use FlashDevelop. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 23 November 2014 17:48 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 i"m not using xerte online toolkits . but the desktop version [cid:image001.png at 01D007CD.DBCE39C0] 2014-11-23 13:00 GMT+01:00 >>: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk> To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk> You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk> When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. Re: need the original files charts.xml and charts.xwd (Kemp Johnathan) ---------------------------------------------------------------------- Message: 1 Date: Sat, 22 Nov 2014 18:28:15 +0000 From: Kemp Johnathan >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: need the original files charts.xml and charts.xwd Message-ID: >> Content-Type: text/plain; charset="utf-8" Are you using Xerte Online Toolkits, the most recent version of Xerte, or Xerte with the original Page Wizards? It will be easier to answer your question if I know which development environment you are using. Kind regards Johnathan On 21 November 2014 at 01:38, sara djezar >> wrote: > hello develpers ! > please help me i need the charts.xml file and charts.xwd to create a > similair template with some modification . > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, Issue 48 ***************************************** This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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.png Type: image/png Size: 31815 bytes Desc: image001.png URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, Issue 50 ***************************************** This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From reijnders at tor.nl Mon Nov 24 13:08:54 2014 From: reijnders at tor.nl (Tom Reijnders) Date: Mon, 24 Nov 2014 14:08:54 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9A8D8963@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0D9A8D8963@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <54732DE6.40806@tor.nl> Or on github: https://github.com/thexerteproject/xerteonlinetoolkits (In the src folder) Julian Tenney schreef op 24-11-2014 13:57: > > You'll find them in the toolkits zip file, > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *sara > djezar > *Sent:* 24 November 2014 12:56 > *To:* xerte-dev at lists.nottingham.ac.uk > *Subject:* [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 > > i just want to create a new template in xerte 2.18 so i need to create > file.xml and file.xwd . i need charts.xml and charts.xwd to do some > modifications . > > 2014-11-24 10:44 GMT+01:00 >: > > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: Xerte-dev Digest, Vol 39, Issue 48 (Julian Tenney) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 24 Nov 2014 10:03:13 +0000 > From: Julian Tenney > > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 > Message-ID: > > <12C67A1EEC419342AF5E59DA31562C3F0D9A8D87C5 at EXCHANGE1.ad.nottingham.ac.uk > > > > Content-Type: text/plain; charset="utf-8" > > Xerte 3 is a compiler for the flex sdk. I?m not sure if this is what > you want to be using? It doesn?t have templates the same way that > xerte does: we?re not developing it actively anymore, and I have no > idea if it works with the current flex sdk. In the end the sdk was > changing so fast it became impossible to keep up with it, > > If you want to do flex development, use FlashDevelop. > > From: xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk > ] On Behalf Of sara > djezar > Sent: 23 November 2014 17:48 > To: xerte-dev at lists.nottingham.ac.uk > > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 > > i"m not using xerte online toolkits . but the desktop version > [cid:image001.png at 01D007CD.DBCE39C0] > > 2014-11-23 13:00 GMT+01:00 >>: > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: need the original files charts.xml and charts.xwd > (Kemp Johnathan) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 22 Nov 2014 18:28:15 +0000 > From: Kemp Johnathan >> > To: For Xerte technical developers >> > Subject: [Xerte-dev] Re: need the original files charts.xml and > charts.xwd > Message-ID: > > >> > Content-Type: text/plain; charset="utf-8" > > Are you using Xerte Online Toolkits, the most recent version of Xerte, or > Xerte with the original Page Wizards? > > It will be easier to answer your question if I know which development > environment you are using. > > Kind regards > > Johnathan > > On 21 November 2014 at 01:38, sara djezar >> wrote: > > > hello develpers ! > > please help me i need the charts.xml file and charts.xwd to create a > > similair template with some modification . > > > > > > > > This message and any attachment are intended solely for the > addressee and may contain confidential information. If you have > received this message in error, please send it back to me, and > immediately delete it. Please do not use, copy or disclose the > information contained in this message or in any attachment. Any views > or opinions expressed by the author of this email do not necessarily > reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, Issue 48 > ***************************************** > > > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer 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.png > Type: image/png > Size: 31815 bytes > Desc: image001.png > URL: > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, Issue 50 > ***************************************** > > > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this > message in error, please send it back to me, and immediately delete > it. Please do not use, copy or disclose the information contained in > this message or in any attachment. Any views or opinions expressed by > the author of this email do not necessarily reflect the views of the > University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From johnathan.kemp at ntlworld.com Mon Nov 24 15:58:59 2014 From: johnathan.kemp at ntlworld.com (Kemp Johnathan) Date: Mon, 24 Nov 2014 15:58:59 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 In-Reply-To: References: Message-ID: As you are working in Xerte 2.18 all the files you need are already available in your Xerte installation. Based on your recent email to me it is clear that your understanding of how to create a template in Xerte is based on the Xerte help files listing the 7 stages for creating a template. This help predates a lot of development work that has taken place in Xerte. It makes no reference to .rlm files. .rlm files can be used to contain the structure of a single page, when matched to a .xwd file that defines the data input form for that page you have a complete definition for a page type in Xerte. If what you want to achieve is to define a new page type that you can use in Xerte along with all the other page types then the simplest way of achieving it is to create a .rlm and .xwd file for the new page type. The .rlm file goes in C:\xerte\pages\models The .xwd file is placed in C:\xerte\pages\wizards\en-GB There is even a php script in the Xerte installation that will add this new page type to the template.xwd file so that you can use it in projects that offer the author an interface similar to Xerte Online Toolkits. These two files can most easily be created in the pages type project environment as indicated in the document I sent to you in my last email. Trust me this is based on my personal experience of creating all the connector page types, plus the Inventory and Scenario pages. If you want to go down that route I can help you with any queries you have as there is little documentation available. Once you have created the files and updated the template.xwd file then you can easily create a .xtp file that can be placed in other Xerte installations by doing the following 1) open the Xerte installation in which you have saved your new .rlm and .xwd files. 2) Do Pages / Create Template Project From Pages - follow the instructions to create the project and make a note of the folder you create it in. 3) In File Manager go to that folder where you will find a number of folders including a template.rlt file, template.xml file and template.xwd file 4) Select the contents of this folder and send them to a compressed folder to create a zip file. 5) Change the zip files .zip extension to .xtp 6) Copy the .xtp file to any Xerte installation's c:\xerte\wizards folder then when you next open Xerte you will see listed under the Templates menu your new template. Just to be clear The structure of the chart page is in chart.rlm (you can find it in C:\xerte\pages\models) The form for the chart page is in chart.xwd (you can find it in C:\xerte\pages\wizards\en-GB) There is no chart.xlm file Kind regards Johnathan On 24 November 2014 at 12:56, sara djezar wrote: > i just want to create a new template in xerte 2.18 so i need to create > file.xml and file.xwd . i need charts.xml and charts.xwd to do some > modifications . > > 2014-11-24 10:44 GMT+01:00 : > >> Send Xerte-dev mailing list submissions to >> xerte-dev at lists.nottingham.ac.uk >> >> To subscribe or unsubscribe via the World Wide Web, visit >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> or, via email, send a message with subject or body 'help' to >> xerte-dev-request at lists.nottingham.ac.uk >> >> You can reach the person managing the list at >> xerte-dev-owner at lists.nottingham.ac.uk >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Xerte-dev digest..." >> >> >> Today's Topics: >> >> 1. Re: Xerte-dev Digest, Vol 39, Issue 48 (Julian Tenney) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Mon, 24 Nov 2014 10:03:13 +0000 >> From: Julian Tenney >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 >> Message-ID: >> < >> 12C67A1EEC419342AF5E59DA31562C3F0D9A8D87C5 at EXCHANGE1.ad.nottingham.ac.uk> >> >> Content-Type: text/plain; charset="utf-8" >> >> Xerte 3 is a compiler for the flex sdk. I?m not sure if this is what you >> want to be using? It doesn?t have templates the same way that xerte does: >> we?re not developing it actively anymore, and I have no idea if it works >> with the current flex sdk. In the end the sdk was changing so fast it >> became impossible to keep up with it, >> >> If you want to do flex development, use FlashDevelop. >> >> From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: >> xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar >> Sent: 23 November 2014 17:48 >> To: xerte-dev at lists.nottingham.ac.uk >> Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 >> >> i"m not using xerte online toolkits . but the desktop version >> [cid:image001.png at 01D007CD.DBCE39C0] >> >> 2014-11-23 13:00 GMT+01:00 > >: >> Send Xerte-dev mailing list submissions to >> xerte-dev at lists.nottingham.ac.uk> xerte-dev at lists.nottingham.ac.uk> >> >> To subscribe or unsubscribe via the World Wide Web, visit >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> or, via email, send a message with subject or body 'help' to >> xerte-dev-request at lists.nottingham.ac.uk> xerte-dev-request at lists.nottingham.ac.uk> >> >> You can reach the person managing the list at >> xerte-dev-owner at lists.nottingham.ac.uk> xerte-dev-owner at lists.nottingham.ac.uk> >> >> When replying, please edit your Subject line so it is more specific >> than "Re: Contents of Xerte-dev digest..." >> >> >> Today's Topics: >> >> 1. Re: need the original files charts.xml and charts.xwd >> (Kemp Johnathan) >> >> >> ---------------------------------------------------------------------- >> >> Message: 1 >> Date: Sat, 22 Nov 2014 18:28:15 +0000 >> From: Kemp Johnathan > johnathan.kemp at ntlworld.com>> >> To: For Xerte technical developers > > >> Subject: [Xerte-dev] Re: need the original files charts.xml and >> charts.xwd >> Message-ID: >> > N5zm1P3Kd8mpGqu-1gAx7etzw at mail.gmail.com> N5zm1P3Kd8mpGqu-1gAx7etzw at mail.gmail.com>> >> Content-Type: text/plain; charset="utf-8" >> >> Are you using Xerte Online Toolkits, the most recent version of Xerte, or >> Xerte with the original Page Wizards? >> >> It will be easier to answer your question if I know which development >> environment you are using. >> >> Kind regards >> >> Johnathan >> >> On 21 November 2014 at 01:38, sara djezar > djezarsara at gmail.com>> wrote: >> >> > hello develpers ! >> > please help me i need the charts.xml file and charts.xwd to create a >> > similair template with some modification . >> > >> > >> > >> > This message and any attachment are intended solely for the addressee >> and may contain confidential information. If you have received this message >> in error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >> > >> > This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer system, you are advised to perform your own checks. Email >> communications with the University of Nottingham may be monitored as >> permitted by UK legislation. >> > >> > >> > _______________________________________________ >> > Xerte-dev mailing list >> > Xerte-dev at lists.nottingham.ac.uk> Xerte-dev at lists.nottingham.ac.uk> >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> > >> > >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: < >> http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141122/8217beb6/attachment-0001.html >> > >> >> ------------------------------ >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> End of Xerte-dev Digest, Vol 39, Issue 48 >> ***************************************** >> >> >> >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer 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-dev/attachments/20141124/1c615d4c/attachment.html >> > >> -------------- next part -------------- >> A non-text attachment was scrubbed... >> Name: image001.png >> Type: image/png >> Size: 31815 bytes >> Desc: image001.png >> URL: < >> http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141124/1c615d4c/attachment.png >> > >> >> ------------------------------ >> >> _______________________________________________ >> Xerte-dev mailing list >> Xerte-dev at lists.nottingham.ac.uk >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev >> >> >> End of Xerte-dev Digest, Vol 39, Issue 50 >> ***************************************** >> >> >> >> >> This message and any attachment are intended solely for the addressee and >> may contain confidential information. If you have received this message in >> error, please send it back to me, and immediately delete it. Please do >> not use, copy or disclose the information contained in this message or in >> any attachment. Any views or opinions expressed by the author of this >> email do not necessarily reflect the views of the University of Nottingham. >> >> This message has been checked for viruses but the contents of an >> attachment may still contain software viruses which could damage your >> computer system, you are advised to perform your own checks. Email >> communications with the University of Nottingham may be monitored as >> permitted by UK legislation. >> >> > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Mon Nov 24 16:28:17 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Mon, 24 Nov 2014 16:28:17 +0000 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9AA29617@EXCHANGE1.ad.nottingham.ac.uk> If you are working in 2.18, bear in mind that the software is not being actively developed any more. It still works as far as I know, and I?m aware of some large and long standing projects that still get a lot of use: but due to the Flash player / iOS, we are no longer actively developing it. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Kemp Johnathan Sent: 24 November 2014 15:59 To: For Xerte technical developers Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 As you are working in Xerte 2.18 all the files you need are already available in your Xerte installation. Based on your recent email to me it is clear that your understanding of how to create a template in Xerte is based on the Xerte help files listing the 7 stages for creating a template. This help predates a lot of development work that has taken place in Xerte. It makes no reference to .rlm files. .rlm files can be used to contain the structure of a single page, when matched to a .xwd file that defines the data input form for that page you have a complete definition for a page type in Xerte. If what you want to achieve is to define a new page type that you can use in Xerte along with all the other page types then the simplest way of achieving it is to create a .rlm and .xwd file for the new page type. The .rlm file goes in C:\xerte\pages\models The .xwd file is placed in C:\xerte\pages\wizards\en-GB There is even a php script in the Xerte installation that will add this new page type to the template.xwd file so that you can use it in projects that offer the author an interface similar to Xerte Online Toolkits. These two files can most easily be created in the pages type project environment as indicated in the document I sent to you in my last email. Trust me this is based on my personal experience of creating all the connector page types, plus the Inventory and Scenario pages. If you want to go down that route I can help you with any queries you have as there is little documentation available. Once you have created the files and updated the template.xwd file then you can easily create a .xtp file that can be placed in other Xerte installations by doing the following 1) open the Xerte installation in which you have saved your new .rlm and .xwd files. 2) Do Pages / Create Template Project From Pages - follow the instructions to create the project and make a note of the folder you create it in. 3) In File Manager go to that folder where you will find a number of folders including a template.rlt file, template.xml file and template.xwd file 4) Select the contents of this folder and send them to a compressed folder to create a zip file. 5) Change the zip files .zip extension to .xtp 6) Copy the .xtp file to any Xerte installation's c:\xerte\wizards folder then when you next open Xerte you will see listed under the Templates menu your new template. Just to be clear The structure of the chart page is in chart.rlm (you can find it in C:\xerte\pages\models) The form for the chart page is in chart.xwd (you can find it in C:\xerte\pages\wizards\en-GB) There is no chart.xlm file Kind regards Johnathan On 24 November 2014 at 12:56, sara djezar > wrote: i just want to create a new template in xerte 2.18 so i need to create file.xml and file.xwd . i need charts.xml and charts.xwd to do some modifications . 2014-11-24 10:44 GMT+01:00 >: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. Re: Xerte-dev Digest, Vol 39, Issue 48 (Julian Tenney) ---------------------------------------------------------------------- Message: 1 Date: Mon, 24 Nov 2014 10:03:13 +0000 From: Julian Tenney > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9A8D87C5 at EXCHANGE1.ad.nottingham.ac.uk> Content-Type: text/plain; charset="utf-8" Xerte 3 is a compiler for the flex sdk. I?m not sure if this is what you want to be using? It doesn?t have templates the same way that xerte does: we?re not developing it actively anymore, and I have no idea if it works with the current flex sdk. In the end the sdk was changing so fast it became impossible to keep up with it, If you want to do flex development, use FlashDevelop. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar Sent: 23 November 2014 17:48 To: xerte-dev at lists.nottingham.ac.uk Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 i"m not using xerte online toolkits . but the desktop version [cid:image001.png at 01D007CD.DBCE39C0] 2014-11-23 13:00 GMT+01:00 >>: Send Xerte-dev mailing list submissions to xerte-dev at lists.nottingham.ac.uk> To subscribe or unsubscribe via the World Wide Web, visit http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev or, via email, send a message with subject or body 'help' to xerte-dev-request at lists.nottingham.ac.uk> You can reach the person managing the list at xerte-dev-owner at lists.nottingham.ac.uk> When replying, please edit your Subject line so it is more specific than "Re: Contents of Xerte-dev digest..." Today's Topics: 1. Re: need the original files charts.xml and charts.xwd (Kemp Johnathan) ---------------------------------------------------------------------- Message: 1 Date: Sat, 22 Nov 2014 18:28:15 +0000 From: Kemp Johnathan >> To: For Xerte technical developers >> Subject: [Xerte-dev] Re: need the original files charts.xml and charts.xwd Message-ID: >> Content-Type: text/plain; charset="utf-8" Are you using Xerte Online Toolkits, the most recent version of Xerte, or Xerte with the original Page Wizards? It will be easier to answer your question if I know which development environment you are using. Kind regards Johnathan On 21 November 2014 at 01:38, sara djezar >> wrote: > hello develpers ! > please help me i need the charts.xml file and charts.xwd to create a > similair template with some modification . > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, Issue 48 ***************************************** This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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.png Type: image/png Size: 31815 bytes Desc: image001.png URL: ------------------------------ _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev End of Xerte-dev Digest, Vol 39, Issue 50 ***************************************** This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From djezarsara at gmail.com Mon Nov 24 18:47:51 2014 From: djezarsara at gmail.com (sara djezar) Date: Mon, 24 Nov 2014 19:47:51 +0100 Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 53 In-Reply-To: References: Message-ID: thnak you ! i will try that now ^^ 2014-11-24 16:40 GMT+01:00 : > Send Xerte-dev mailing list submissions to > xerte-dev at lists.nottingham.ac.uk > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > or, via email, send a message with subject or body 'help' to > xerte-dev-request at lists.nottingham.ac.uk > > You can reach the person managing the list at > xerte-dev-owner at lists.nottingham.ac.uk > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Xerte-dev digest..." > > > Today's Topics: > > 1. Re: Xerte-dev Digest, Vol 39, Issue 50 (Kemp Johnathan) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 24 Nov 2014 15:58:59 +0000 > From: Kemp Johnathan > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 50 > Message-ID: > VUzqE9GJnLoEm+Rp80+y58eDvjPcRiPrrpyfVqV1tqBA at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > As you are working in Xerte 2.18 all the files you need are already > available in your Xerte installation. > > Based on your recent email to me it is clear that your understanding of how > to create a template in Xerte is based on the Xerte help files listing the > 7 stages for creating a template. This help predates a lot of development > work that has taken place in Xerte. It makes no reference to .rlm files. > > .rlm files can be used to contain the structure of a single page, when > matched to a .xwd file that defines the data input form for that page you > have a complete definition for a page type in Xerte. > > If what you want to achieve is to define a new page type that you can use > in Xerte along with all the other page types then the simplest way of > achieving it is to create a .rlm and .xwd file for the new page type. > > The .rlm file goes in C:\xerte\pages\models > The .xwd file is placed in C:\xerte\pages\wizards\en-GB > > There is even a php script in the Xerte installation that will add this new > page type to the template.xwd file so that you can use it in projects that > offer the author an interface similar to Xerte Online Toolkits. > > These two files can most easily be created in the pages type project > environment as indicated in the document I sent to you in my last email. > Trust me this is based on my personal experience of creating all the > connector page types, plus the Inventory and Scenario pages. If you want to > go down that route I can help you with any queries you have as there is > little documentation available. > > Once you have created the files and updated the template.xwd file then you > can easily create a .xtp file that can be placed in other Xerte > installations by doing the following > > 1) open the Xerte installation in which you have saved your new .rlm and > .xwd files. > 2) Do Pages / Create Template Project From Pages - follow the instructions > to create the project and make a note of the folder you create it in. > 3) In File Manager go to that folder where you will find a number of > folders including a template.rlt file, template.xml file and template.xwd > file > 4) Select the contents of this folder and send them to a compressed folder > to create a zip file. > 5) Change the zip files .zip extension to .xtp > 6) Copy the .xtp file to any Xerte installation's c:\xerte\wizards folder > then when you next open Xerte you will see listed under the Templates menu > your new template. > > Just to be clear > The structure of the chart page is in chart.rlm (you can find it in > C:\xerte\pages\models) > The form for the chart page is in chart.xwd (you can find it in > C:\xerte\pages\wizards\en-GB) > There is no chart.xlm file > > Kind regards > > Johnathan > > > > > > > On 24 November 2014 at 12:56, sara djezar wrote: > > > i just want to create a new template in xerte 2.18 so i need to create > > file.xml and file.xwd . i need charts.xml and charts.xwd to do some > > modifications . > > > > 2014-11-24 10:44 GMT+01:00 : > > > >> Send Xerte-dev mailing list submissions to > >> xerte-dev at lists.nottingham.ac.uk > >> > >> To subscribe or unsubscribe via the World Wide Web, visit > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> or, via email, send a message with subject or body 'help' to > >> xerte-dev-request at lists.nottingham.ac.uk > >> > >> You can reach the person managing the list at > >> xerte-dev-owner at lists.nottingham.ac.uk > >> > >> When replying, please edit your Subject line so it is more specific > >> than "Re: Contents of Xerte-dev digest..." > >> > >> > >> Today's Topics: > >> > >> 1. Re: Xerte-dev Digest, Vol 39, Issue 48 (Julian Tenney) > >> > >> > >> ---------------------------------------------------------------------- > >> > >> Message: 1 > >> Date: Mon, 24 Nov 2014 10:03:13 +0000 > >> From: Julian Tenney > >> To: For Xerte technical developers > >> Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 > >> Message-ID: > >> < > >> > 12C67A1EEC419342AF5E59DA31562C3F0D9A8D87C5 at EXCHANGE1.ad.nottingham.ac.uk> > >> > >> Content-Type: text/plain; charset="utf-8" > >> > >> Xerte 3 is a compiler for the flex sdk. I?m not sure if this is what you > >> want to be using? It doesn?t have templates the same way that xerte > does: > >> we?re not developing it actively anymore, and I have no idea if it works > >> with the current flex sdk. In the end the sdk was changing so fast it > >> became impossible to keep up with it, > >> > >> If you want to do flex development, use FlashDevelop. > >> > >> From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto: > >> xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of sara djezar > >> Sent: 23 November 2014 17:48 > >> To: xerte-dev at lists.nottingham.ac.uk > >> Subject: [Xerte-dev] Re: Xerte-dev Digest, Vol 39, Issue 48 > >> > >> i"m not using xerte online toolkits . but the desktop version > >> [cid:image001.png at 01D007CD.DBCE39C0] > >> > >> 2014-11-23 13:00 GMT+01:00 >> >: > >> Send Xerte-dev mailing list submissions to > >> xerte-dev at lists.nottingham.ac.uk >> xerte-dev at lists.nottingham.ac.uk> > >> > >> To subscribe or unsubscribe via the World Wide Web, visit > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> or, via email, send a message with subject or body 'help' to > >> xerte-dev-request at lists.nottingham.ac.uk >> xerte-dev-request at lists.nottingham.ac.uk> > >> > >> You can reach the person managing the list at > >> xerte-dev-owner at lists.nottingham.ac.uk >> xerte-dev-owner at lists.nottingham.ac.uk> > >> > >> When replying, please edit your Subject line so it is more specific > >> than "Re: Contents of Xerte-dev digest..." > >> > >> > >> Today's Topics: > >> > >> 1. Re: need the original files charts.xml and charts.xwd > >> (Kemp Johnathan) > >> > >> > >> ---------------------------------------------------------------------- > >> > >> Message: 1 > >> Date: Sat, 22 Nov 2014 18:28:15 +0000 > >> From: Kemp Johnathan >> johnathan.kemp at ntlworld.com>> > >> To: For Xerte technical developers >> > > >> Subject: [Xerte-dev] Re: need the original files charts.xml and > >> charts.xwd > >> Message-ID: > >> >> N5zm1P3Kd8mpGqu-1gAx7etzw at mail.gmail.com >> N5zm1P3Kd8mpGqu-1gAx7etzw at mail.gmail.com>> > >> Content-Type: text/plain; charset="utf-8" > >> > >> Are you using Xerte Online Toolkits, the most recent version of Xerte, > or > >> Xerte with the original Page Wizards? > >> > >> It will be easier to answer your question if I know which development > >> environment you are using. > >> > >> Kind regards > >> > >> Johnathan > >> > >> On 21 November 2014 at 01:38, sara djezar >> djezarsara at gmail.com>> wrote: > >> > >> > hello develpers ! > >> > please help me i need the charts.xml file and charts.xwd to create a > >> > similair template with some modification . > >> > > >> > > >> > > >> > This message and any attachment are intended solely for the addressee > >> and may contain confidential information. If you have received this > message > >> in error, please send it back to me, and immediately delete it. > Please do > >> not use, copy or disclose the information contained in this message or > in > >> any attachment. Any views or opinions expressed by the author of this > >> email do not necessarily reflect the views of the University of > Nottingham. > >> > > >> > This message has been checked for viruses but the contents of an > >> attachment may still contain software viruses which could damage your > >> computer system, you are advised to perform your own checks. Email > >> communications with the University of Nottingham may be monitored as > >> permitted by UK legislation. > >> > > >> > > >> > _______________________________________________ > >> > Xerte-dev mailing list > >> > Xerte-dev at lists.nottingham.ac.uk >> Xerte-dev at lists.nottingham.ac.uk> > >> > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > > >> > > >> -------------- next part -------------- > >> An HTML attachment was scrubbed... > >> URL: < > >> > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141122/8217beb6/attachment-0001.html > >> > > >> > >> ------------------------------ > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk Xerte-dev at lists.nottingham.ac.uk> > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> > >> End of Xerte-dev Digest, Vol 39, Issue 48 > >> ***************************************** > >> > >> > >> > >> > >> This message and any attachment are intended solely for the addressee > and > >> may contain confidential information. If you have received this message > in > >> error, please send it back to me, and immediately delete it. Please do > >> not use, copy or disclose the information contained in this message or > in > >> any attachment. Any views or opinions expressed by the author of this > >> email do not necessarily reflect the views of the University of > Nottingham. > >> > >> This message has been checked for viruses but the contents of an > >> attachment may still contain software viruses which could damage your > >> computer 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-dev/attachments/20141124/1c615d4c/attachment.html > >> > > >> -------------- next part -------------- > >> A non-text attachment was scrubbed... > >> Name: image001.png > >> Type: image/png > >> Size: 31815 bytes > >> Desc: image001.png > >> URL: < > >> > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141124/1c615d4c/attachment.png > >> > > >> > >> ------------------------------ > >> > >> _______________________________________________ > >> Xerte-dev mailing list > >> Xerte-dev at lists.nottingham.ac.uk > >> http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > >> > >> > >> End of Xerte-dev Digest, Vol 39, Issue 50 > >> ***************************************** > >> > >> > >> > >> > >> This message and any attachment are intended solely for the addressee > and > >> may contain confidential information. If you have received this message > in > >> error, please send it back to me, and immediately delete it. Please do > >> not use, copy or disclose the information contained in this message or > in > >> any attachment. Any views or opinions expressed by the author of this > >> email do not necessarily reflect the views of the University of > Nottingham. > >> > >> This message has been checked for viruses but the contents of an > >> attachment may still contain software viruses which could damage your > >> computer system, you are advised to perform your own checks. Email > >> communications with the University of Nottingham may be monitored as > >> permitted by UK legislation. > >> > >> > > > > > > This message and any attachment are intended solely for the addressee > and may contain confidential information. If you have received this message > in error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer system, you are advised to perform your own checks. Email > communications with the University of Nottingham may be monitored as > permitted by UK legislation. > > > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.nottingham.ac.uk/pipermail/xerte-dev/attachments/20141124/f0fff0da/attachment.html > > > > ------------------------------ > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > End of Xerte-dev Digest, Vol 39, Issue 53 > ***************************************** > > > > > This message and any attachment are intended solely for the addressee and > may contain confidential information. If you have received this message in > error, please send it back to me, and immediately delete it. Please do > not use, copy or disclose the information contained in this message or in > any attachment. Any views or opinions expressed by the author of this > email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an > attachment may still contain software viruses which could damage your > computer 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 brsmith at akamai.com Mon Nov 24 23:15:01 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Mon, 24 Nov 2014 23:15:01 +0000 Subject: [Xerte-dev] Custom layout for questions? Message-ID: Hello all, Not sure if this is better send to xerte or xerte-dev, but I'll try the latter first. Personally, I'm not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a "vertical" layout that just shows the instruction/prompt (when you only have one question, I'm unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page's width. The closest I've gotten to this is to set the Panel Width setting to "full", and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser's dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what's the best way to do what I want here? I see there's also an option to upload a "custom interface", but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven't seen any docs that explain exactly how to make one anyway. Suggestions? -Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Nov 25 09:26:06 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 25 Nov 2014 09:26:06 +0000 Subject: [Xerte-dev] Re: Custom layout for questions? In-Reply-To: References: Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> A custom interface is a legacy from the old flash runtime, where you could use a swf as a custom interface: that swf could then call the navigation methods in the main engine. I'm not so close to the html5 runtime, Fay will give you a better answer tomorrow: try overriding with !important in css? Otherwise extend the code in the template to handle an optional property for layout? J From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 24 November 2014 23:15 To: For Xerte technical developers Subject: [Xerte-dev] Custom layout for questions? Hello all, Not sure if this is better send to xerte or xerte-dev, but I'll try the latter first. Personally, I'm not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a "vertical" layout that just shows the instruction/prompt (when you only have one question, I'm unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page's width. The closest I've gotten to this is to set the Panel Width setting to "full", and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser's dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what's the best way to do what I want here? I see there's also an option to upload a "custom interface", but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven't seen any docs that explain exactly how to make one anyway. Suggestions? -Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: From i.donkervoort at 12change.eu Tue Nov 25 12:27:35 2014 From: i.donkervoort at 12change.eu (Inge Donkervoort 12Change) Date: Tue, 25 Nov 2014 13:27:35 +0100 Subject: [Xerte-dev] Design editor In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <547475B7.1050005@12change.eu> Hi all, One of our Norwegian users Jens Magnus Jensen made an example for a new design of the editor. Is this something he can go on with? Any suggestions? Bye, Inge 12Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Julian Tenney schreef op 25-11-2014 10:26: > > A custom interface is a legacy from the old flash runtime, where you > could use a swf as a custom interface: that swf could then call the > navigation methods in the main engine. > > I'm not so close to the html5 runtime, Fay will give you a better > answer tomorrow: try overriding with !important in css? > > Otherwise extend the code in the template to handle an optional > property for layout? > > J > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Smith, Bradley > *Sent:* 24 November 2014 23:15 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Custom layout for questions? > > Hello all, > > Not sure if this is better send to xerte or xerte-dev, but I'll try > the latter first. > > Personally, I'm not a fan of the two-column sort of layout that Xerte > seems to prefer for questions. Often, both my questions and answers > may include unix commands, screen shots, and other things that take up > a lot of horizontal space. What I would like to have is a "vertical" > layout that just shows the instruction/prompt (when you only have one > question, I'm unclear why you would distinguish between these > anyway), followed by the answer options, each taking up 100% of the > page's width. > > The closest I've gotten to this is to set the Panel Width setting to > "full", and put the instruction and prompt text both in the Prompt box > . However, the prompt is rendered as an H3 tag, so the whole question > appears bolded. This causes problems with text-heavy questions where I > need more variety in the formatting. > > I noticed an option to include a custom stylesheet with a learning > object, so I uploaded one with: > > h3.question { > > font-weight: normal; > > } > > When I load the preview, my browser's dev tools show that the > stylesheet is loaded by something, but there is no change to the > formatting of the question. > > So my question is: what's the best way to do what I want here? I see > there's also an option to upload a "custom interface", but that only > seems to be available at the the learning object level (as opposed to > a specific component like a question), and I haven't seen any docs > that explain exactly how to make one anyway. > > Suggestions? > > ---Brad > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 113100 bytes Desc: not available URL: From ronm at mitchellmedia.co.uk Tue Nov 25 13:56:04 2014 From: ronm at mitchellmedia.co.uk (Ron Mitchell) Date: Tue, 25 Nov 2014 13:56:04 -0000 Subject: [Xerte-dev] Re: Design editor In-Reply-To: <547475B7.1050005@12change.eu> References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> <547475B7.1050005@12change.eu> Message-ID: <00e101d008b7$8ee14630$aca3d290$@co.uk> That looks great to me! From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort 12Change Sent: 25 November 2014 12:28 To: For Xerte technical developers Subject: [Xerte-dev] Design editor Hi all, One of our Norwegian users Jens Magnus Jensen made an example for a new design of the editor. Is this something he can go on with? Any suggestions? Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Julian Tenney schreef op 25-11-2014 10:26: A custom interface is a legacy from the old flash runtime, where you could use a swf as a custom interface: that swf could then call the navigation methods in the main engine. I'm not so close to the html5 runtime, Fay will give you a better answer tomorrow: try overriding with !important in css? Otherwise extend the code in the template to handle an optional property for layout? J From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 24 November 2014 23:15 To: For Xerte technical developers Subject: [Xerte-dev] Custom layout for questions? Hello all, Not sure if this is better send to xerte or xerte-dev, but I'll try the latter first. Personally, I'm not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a "vertical" layout that just shows the instruction/prompt (when you only have one question, I'm unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page's width. The closest I've gotten to this is to set the Panel Width setting to "full", and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser's dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what's the best way to do what I want here? I see there's also an option to upload a "custom interface", but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven't seen any docs that explain exactly how to make one anyway. Suggestions? -Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Julian.Tenney at nottingham.ac.uk Tue Nov 25 13:59:13 2014 From: Julian.Tenney at nottingham.ac.uk (Julian Tenney) Date: Tue, 25 Nov 2014 13:59:13 +0000 Subject: [Xerte-dev] Re: Design editor In-Reply-To: <00e101d008b7$8ee14630$aca3d290$@co.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> <547475B7.1050005@12change.eu> <00e101d008b7$8ee14630$aca3d290$@co.uk> Message-ID: <12C67A1EEC419342AF5E59DA31562C3F0D9AA29A2C@EXCHANGE1.ad.nottingham.ac.uk> I think so too, really nice. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 25 November 2014 13:56 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Design editor That looks great to me! From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort 12Change Sent: 25 November 2014 12:28 To: For Xerte technical developers Subject: [Xerte-dev] Design editor Hi all, One of our Norwegian users Jens Magnus Jensen made an example for a new design of the editor. Is this something he can go on with? Any suggestions? Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Julian Tenney schreef op 25-11-2014 10:26: A custom interface is a legacy from the old flash runtime, where you could use a swf as a custom interface: that swf could then call the navigation methods in the main engine. I'm not so close to the html5 runtime, Fay will give you a better answer tomorrow: try overriding with !important in css? Otherwise extend the code in the template to handle an optional property for layout? J From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 24 November 2014 23:15 To: For Xerte technical developers Subject: [Xerte-dev] Custom layout for questions? Hello all, Not sure if this is better send to xerte or xerte-dev, but I'll try the latter first. Personally, I'm not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a "vertical" layout that just shows the instruction/prompt (when you only have one question, I'm unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page's width. The closest I've gotten to this is to set the Panel Width setting to "full", and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser's dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what's the best way to do what I want here? I see there's also an option to upload a "custom interface", but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven't seen any docs that explain exactly how to make one anyway. Suggestions? -Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 brsmith at akamai.com Tue Nov 25 15:23:19 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Tue, 25 Nov 2014 15:23:19 +0000 Subject: [Xerte-dev] Re: Design editor In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9AA29A2C@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> <547475B7.1050005@12change.eu> <00e101d008b7$8ee14630$aca3d290$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0D9AA29A2C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Yeah, the stylesheet is lovely. Nicely done. Does this change anything functionally/structurally, though? Or would this be separate from things like fixing the way the Insert menu works? ?Brad From: Julian Tenney > Reply-To: For Xerte technical developers > Date: Tuesday, November 25, 2014 at 8:59 AM To: For Xerte technical developers > Subject: [Xerte-dev] Re: Design editor I think so too, really nice. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 25 November 2014 13:56 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Design editor That looks great to me! From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort 12Change Sent: 25 November 2014 12:28 To: For Xerte technical developers Subject: [Xerte-dev] Design editor Hi all, One of our Norwegian users Jens Magnus Jensen made an example for a new design of the editor. Is this something he can go on with? Any suggestions? Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Julian Tenney schreef op 25-11-2014 10:26: A custom interface is a legacy from the old flash runtime, where you could use a swf as a custom interface: that swf could then call the navigation methods in the main engine. I?m not so close to the html5 runtime, Fay will give you a better answer tomorrow: try overriding with !important in css? Otherwise extend the code in the template to handle an optional property for layout? J From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 24 November 2014 23:15 To: For Xerte technical developers Subject: [Xerte-dev] Custom layout for questions? Hello all, Not sure if this is better send to xerte or xerte-dev, but I?ll try the latter first. Personally, I?m not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a ?vertical? layout that just shows the instruction/prompt (when you only have one question, I?m unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page?s width. The closest I?ve gotten to this is to set the Panel Width setting to ?full?, and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser?s dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what?s the best way to do what I want here? I see there?s also an option to upload a ?custom interface?, but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven?t seen any docs that explain exactly how to make one anyway. Suggestions? ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From i.donkervoort at 12change.eu Tue Nov 25 15:26:42 2014 From: i.donkervoort at 12change.eu (Inge Donkervoort 12Change) Date: Tue, 25 Nov 2014 16:26:42 +0100 Subject: [Xerte-dev] Re: Design editor In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> <547475B7.1050005@12change.eu> <00e101d008b7$8ee14630$aca3d290$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0D9AA29A2C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: <54749FB2.1090109@12change.eu> No it doesn't, so your ideas for the insert page are stil very welcome. Are you working on that? 12Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Smith, Bradley schreef op 25-11-2014 16:23: > Yeah, the stylesheet is lovely. Nicely done. > > Does this change anything functionally/structurally, though? Or would > this be separate from things like fixing the way the Insert menu works? > > ---Brad > > From: Julian Tenney > > Reply-To: For Xerte technical developers > > > Date: Tuesday, November 25, 2014 at 8:59 AM > To: For Xerte technical developers > > Subject: [Xerte-dev] Re: Design editor > > I think so too, really nice. > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Ron > Mitchell > *Sent:* 25 November 2014 13:56 > *To:* 'For Xerte technical developers' > *Subject:* [Xerte-dev] Re: Design editor > > That looks great to me! > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of *Inge > Donkervoort 12Change > *Sent:* 25 November 2014 12:28 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Design editor > > Hi all, > > One of our Norwegian users Jens Magnus Jensen made an example for a > new design of the editor. Is this something he can go on with? Any > suggestions? > > > > Bye, > Inge > > 12Change > > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > M 06-50267104 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > > Julian Tenney schreef op 25-11-2014 10:26: > > A custom interface is a legacy from the old flash runtime, where > you could use a swf as a custom interface: that swf could then > call the navigation methods in the main engine. > > I'm not so close to the html5 runtime, Fay will give you a better > answer tomorrow: try overriding with !important in css? > > Otherwise extend the code in the template to handle an optional > property for layout? > > J > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk > > [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] *On Behalf Of > *Smith, Bradley > *Sent:* 24 November 2014 23:15 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Custom layout for questions? > > Hello all, > > Not sure if this is better send to xerte or xerte-dev, but I'll > try the latter first. > > Personally, I'm not a fan of the two-column sort of layout that > Xerte seems to prefer for questions. Often, both my questions and > answers may include unix commands, screen shots, and other things > that take up a lot of horizontal space. What I would like to have > is a "vertical" layout that just shows the instruction/prompt > (when you only have one question, I'm unclear why you would > distinguish between these anyway), followed by the answer > options, each taking up 100% of the page's width. > > The closest I've gotten to this is to set the Panel Width setting > to "full", and put the instruction and prompt text both in the > Prompt box . However, the prompt is rendered as an H3 tag, so the > whole question appears bolded. This causes problems with > text-heavy questions where I need more variety in the formatting. > > I noticed an option to include a custom stylesheet with a learning > object, so I uploaded one with: > > h3.question { > > font-weight: normal; > > } > > When I load the preview, my browser's dev tools show that the > stylesheet is loaded by something, but there is no change to the > formatting of the question. > > So my question is: what's the best way to do what I want here? I > see there's also an option to upload a "custom interface", but > that only seems to be available at the the learning object level > (as opposed to a specific component like a question), and I > haven't seen any docs that explain exactly how to make one anyway. > > Suggestions? > > ---Brad > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: From brsmith at akamai.com Tue Nov 25 15:41:14 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Tue, 25 Nov 2014 15:41:14 +0000 Subject: [Xerte-dev] Re: Design editor In-Reply-To: <54749FB2.1090109@12change.eu> References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> <547475B7.1050005@12change.eu> <00e101d008b7$8ee14630$aca3d290$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0D9AA29A2C@EXCHANGE1.ad.nottingham.ac.uk> <54749FB2.1090109@12change.eu> Message-ID: Unfortunately I have a work deadline that is going to keep me from being able to contribute anything more than ideas and mockups until some time in December, most likely. :( ?Brad From: Inge Donkervoort 12Change > Organization: 12Change Reply-To: For Xerte technical developers > Date: Tuesday, November 25, 2014 at 10:26 AM To: "xerte-dev at lists.nottingham.ac.uk" > Subject: [Xerte-dev] Re: Design editor No it doesn't, so your ideas for the insert page are stil very welcome. Are you working on that? 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Smith, Bradley schreef op 25-11-2014 16:23: Yeah, the stylesheet is lovely. Nicely done. Does this change anything functionally/structurally, though? Or would this be separate from things like fixing the way the Insert menu works? ?Brad From: Julian Tenney > Reply-To: For Xerte technical developers > Date: Tuesday, November 25, 2014 at 8:59 AM To: For Xerte technical developers > Subject: [Xerte-dev] Re: Design editor I think so too, really nice. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Ron Mitchell Sent: 25 November 2014 13:56 To: 'For Xerte technical developers' Subject: [Xerte-dev] Re: Design editor That looks great to me! From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Inge Donkervoort 12Change Sent: 25 November 2014 12:28 To: For Xerte technical developers Subject: [Xerte-dev] Design editor Hi all, One of our Norwegian users Jens Magnus Jensen made an example for a new design of the editor. Is this something he can go on with? Any suggestions? Bye, Inge 1 2 Change Chopinlaan 27 5242 HM Rosmalen T 073-5226195 M 06-50267104 F 073-5226196 E i.donkervoort at 12change.eu I www.12change.eu T twitter L linkedIn Julian Tenney schreef op 25-11-2014 10:26: A custom interface is a legacy from the old flash runtime, where you could use a swf as a custom interface: that swf could then call the navigation methods in the main engine. I?m not so close to the html5 runtime, Fay will give you a better answer tomorrow: try overriding with !important in css? Otherwise extend the code in the template to handle an optional property for layout? J From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 24 November 2014 23:15 To: For Xerte technical developers Subject: [Xerte-dev] Custom layout for questions? Hello all, Not sure if this is better send to xerte or xerte-dev, but I?ll try the latter first. Personally, I?m not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a ?vertical? layout that just shows the instruction/prompt (when you only have one question, I?m unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page?s width. The closest I?ve gotten to this is to set the Panel Width setting to ?full?, and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser?s dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what?s the best way to do what I want here? I see there?s also an option to upload a ?custom interface?, but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven?t seen any docs that explain exactly how to make one anyway. Suggestions? ?Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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 jenmagjen at gmail.com Tue Nov 25 16:12:26 2014 From: jenmagjen at gmail.com (Jens Magnus Jensen) Date: Tue, 25 Nov 2014 17:12:26 +0100 Subject: [Xerte-dev] Re: Design editor In-Reply-To: References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> <547475B7.1050005@12change.eu> <00e101d008b7$8ee14630$aca3d290$@co.uk> <12C67A1EEC419342AF5E59DA31562C3F0D9AA29A2C@EXCHANGE1.ad.nottingham.ac.uk> <54749FB2.1090109@12change.eu> Message-ID: Hi! :) My sketch does not really change anything other than appearance; what can be done through CSS. Maybe also some js/jquery for the on/off buttons at the bottom middle, depending on how they are implemented. The only major change I propose, is moving the Save/Play/Publish buttons to a more intuitive position, which in the sketch displays the "power" these buttons are in possesion of. This also creates more tidy workspace in the main column. But this also is just CSS styling and placement. Other changes that I focus on are (inspired by getuikit.com): - Use of an elegant and easy-to-read font (From Google Fonts or similar) - Applying more margin/padding so the page feels "airy" - Simple, elegant icons using icon-font instead of images: - http://fortawesome.github.io/Font-Awesome/ - Using button-icons instead of text at the most obvious functions like Insert, Copy and Delete in the left coloumn. As this is just a way of CSS-styling, my suggestions for design should not at all interfer with your changes in functionality. It just gives some ideas on how things can look. :) Feel free to comment/criticise! Mvh Jens Magnus 2014-11-25 16:41 GMT+01:00 Smith, Bradley : > Unfortunately I have a work deadline that is going to keep me from being > able to contribute anything more than ideas and mockups until some time in > December, most likely. :( > > ?Brad > > From: Inge Donkervoort 12Change > Organization: 12Change > Reply-To: For Xerte technical developers > > Date: Tuesday, November 25, 2014 at 10:26 AM > To: "xerte-dev at lists.nottingham.ac.uk" > Subject: [Xerte-dev] Re: Design editor > > No it doesn't, so your ideas for the insert page are stil very welcome. > Are you working on that? > > 1 2 Change > > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > M 06-50267104 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > Smith, Bradley schreef op 25-11-2014 16:23: > > Yeah, the stylesheet is lovely. Nicely done. > > Does this change anything functionally/structurally, though? Or would > this be separate from things like fixing the way the Insert menu works? > > ?Brad > > From: Julian Tenney > Reply-To: For Xerte technical developers > > Date: Tuesday, November 25, 2014 at 8:59 AM > To: For Xerte technical developers > Subject: [Xerte-dev] Re: Design editor > > I think so too, really nice. > > > > *From:* xerte-dev-bounces at lists.nottingham.ac.uk [ > mailto:xerte-dev-bounces at lists.nottingham.ac.uk > ] *On Behalf Of *Ron Mitchell > *Sent:* 25 November 2014 13:56 > *To:* 'For Xerte technical developers' > *Subject:* [Xerte-dev] Re: Design editor > > > > That looks great to me! > > > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk [ > mailto:xerte-dev-bounces at lists.nottingham.ac.uk > ] *On Behalf Of *Inge > Donkervoort 12Change > *Sent:* 25 November 2014 12:28 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Design editor > > > > Hi all, > > One of our Norwegian users Jens Magnus Jensen made an example for a new > design of the editor. Is this something he can go on with? Any suggestions? > > > > Bye, > Inge > > 1 2 Change > > Chopinlaan 27 > 5242 HM Rosmalen > T 073-5226195 > M 06-50267104 > F 073-5226196 > E i.donkervoort at 12change.eu > I www.12change.eu > > T twitter > L linkedIn > > Julian Tenney schreef op 25-11-2014 10:26: > > A custom interface is a legacy from the old flash runtime, where you could > use a swf as a custom interface: that swf could then call the navigation > methods in the main engine. > > > > I?m not so close to the html5 runtime, Fay will give you a better answer > tomorrow: try overriding with !important in css? > > > > Otherwise extend the code in the template to handle an optional property > for layout? > > > > J > > > > *From:*xerte-dev-bounces at lists.nottingham.ac.uk [ > mailto:xerte-dev-bounces at lists.nottingham.ac.uk > ] *On Behalf Of *Smith, Bradley > *Sent:* 24 November 2014 23:15 > *To:* For Xerte technical developers > *Subject:* [Xerte-dev] Custom layout for questions? > > > > Hello all, > > > > Not sure if this is better send to xerte or xerte-dev, but I?ll try the > latter first. > > > > Personally, I?m not a fan of the two-column sort of layout that Xerte > seems to prefer for questions. Often, both my questions and answers may > include unix commands, screen shots, and other things that take up a lot of > horizontal space. What I would like to have is a ?vertical? layout that > just shows the instruction/prompt (when you only have one question, I?m > unclear why you would distinguish between these anyway), followed by the > answer options, each taking up 100% of the page?s width. > > > > The closest I?ve gotten to this is to set the Panel Width setting to > ?full?, and put the instruction and prompt text both in the Prompt box . > However, the prompt is rendered as an H3 tag, so the whole question appears > bolded. This causes problems with text-heavy questions where I need more > variety in the formatting. > > > > I noticed an option to include a custom stylesheet with a learning object, > so I uploaded one with: > > > > h3.question { > > font-weight: normal; > > } > > > > When I load the preview, my browser?s dev tools show that the stylesheet > is loaded by something, but there is no change to the formatting of the > question. > > > > So my question is: what?s the best way to do what I want here? I see > there?s also an option to upload a ?custom interface?, but that only seems > to be available at the the learning object level (as opposed to a specific > component like a question), and I haven?t seen any docs that explain > exactly how to make one anyway. > > > > Suggestions? > > ?Brad > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > > Xerte-dev mailing list > > Xerte-dev at lists.nottingham.ac.uk > > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > > > > > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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. > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > > _______________________________________________ > Xerte-dev mailing listXerte-dev at lists.nottingham.ac.ukhttp://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > > This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. > > This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. > > > _______________________________________________ > Xerte-dev mailing list > Xerte-dev at lists.nottingham.ac.uk > http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Fay.Cross at nottingham.ac.uk Wed Nov 26 10:45:26 2014 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Wed, 26 Nov 2014 10:45:26 +0000 Subject: [Xerte-dev] Re: Custom layout for questions? In-Reply-To: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> References: <12C67A1EEC419342AF5E59DA31562C3F0D9AA2974C@EXCHANGE1.ad.nottingham.ac.uk> Message-ID: Question is the element's id so if you use # it works... h3#question { font-weight: normal; } From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 25 November 2014 09:26 To: For Xerte technical developers Subject: [Xerte-dev] Re: Custom layout for questions? A custom interface is a legacy from the old flash runtime, where you could use a swf as a custom interface: that swf could then call the navigation methods in the main engine. I'm not so close to the html5 runtime, Fay will give you a better answer tomorrow: try overriding with !important in css? Otherwise extend the code in the template to handle an optional property for layout? J From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 24 November 2014 23:15 To: For Xerte technical developers Subject: [Xerte-dev] Custom layout for questions? Hello all, Not sure if this is better send to xerte or xerte-dev, but I'll try the latter first. Personally, I'm not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a "vertical" layout that just shows the instruction/prompt (when you only have one question, I'm unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page's width. The closest I've gotten to this is to set the Panel Width setting to "full", and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser's dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what's the best way to do what I want here? I see there's also an option to upload a "custom interface", but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven't seen any docs that explain exactly how to make one anyway. Suggestions? -Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: From Fay.Cross at nottingham.ac.uk Wed Nov 26 11:01:51 2014 From: Fay.Cross at nottingham.ac.uk (Fay Cross) Date: Wed, 26 Nov 2014 11:01:51 +0000 Subject: [Xerte-dev] Re: New Decision Tree module In-Reply-To: <546E7473.6010601@tor.nl> References: <546CF92F.6030605@tor.nl> <546E7473.6010601@tor.nl> Message-ID: Thanks Tom, I've just tried it out and it works fine now. From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 20 November 2014 23:09 To: For Xerte technical developers Subject: [Xerte-dev] Re: New Decision Tree module I fixed this tonight. It should work correctly now. Fay Cross schreef op 20-11-2014 10:22: It works ok on the privatebeta site but I was testing on an xampp install using the xertetoolkits_unstable zip from the website yesterday. Pages show the correct wizard when they don't have nested nodes. But when you add a more complicated page the fields you are given to fill in are always for the parent of that node. There's a screen shot attached which shows what happens for the Tabbed Navigator + page. Also, I like the breadcrumbs a lot, but they're not working quite right. If you click on a page and then click back to the Learning Object folder the breadcrumbs still show as if you are on the page (you can see this on privatebeta site) When in nested pages the breadcrumbs work ok for the first level of children but if there is more nesting then breadcrumbs is abbreviated (see screenshot). Fay From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Tom Reijnders Sent: 19 November 2014 20:10 To: For Xerte technical developers Subject: [Xerte-dev] Re: New Decision Tree module No, I don't know about the nested page problem. Can you please elaborate a bit, than I can fix it a.s.a.p. Fay Cross schreef op 19-11-2014 17:47: Hello I've just uploaded a new template to the repository called 'Decision Tree'. Here are a couple of examples of the type of content you can produce with it: * The Environmental Guide * Compile Result Example - this looks similar to the link above but instead of routing through different steps like a flow chart, each question that's answered saves a 'result' which is presented on the last step. I am also working on a slightly simpler version of the template that can be used as a page type in the main template. By the way (Tom?), this template works fine in the Flash editor but I can't test it properly in the new one because when you click on a nested node in the page list it seems to show the wizard for the parent page instead. This is a problem when editing normal projects too so I'm sure it's something you probably already know about. I'll make sure it works properly in the html editor when this is sorted. Thanks Fay This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer system, you are advised to perform your own checks. Email communications with the University of Nottingham may be monitored as permitted by UK legislation. _______________________________________________ Xerte-dev mailing list Xerte-dev at lists.nottingham.ac.uk http://lists.nottingham.ac.uk/mailman/listinfo/xerte-dev -- -- Tom Reijnders TOR Informatica Chopinlaan 27 5242HM Rosmalen Tel: 073 5226191 Fax: 073 5226196 -------------- next part -------------- An HTML attachment was scrubbed... URL: From brsmith at akamai.com Wed Nov 26 20:43:12 2014 From: brsmith at akamai.com (Smith, Bradley) Date: Wed, 26 Nov 2014 20:43:12 +0000 Subject: [Xerte-dev] Re: Custom layout for questions? Message-ID: Yeah, I figured that out, but was hoping no one else would notice the mistake. :P Thanks the help, though! :) -Brad From: Fay Cross > Reply-To: For Xerte technical developers > Date: Wednesday, November 26, 2014 at 5:45 AM To: For Xerte technical developers > Subject: [Xerte-dev] Re: Custom layout for questions? Question is the element's id so if you use # it works... h3#question { font-weight: normal; } From: xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Julian Tenney Sent: 25 November 2014 09:26 To: For Xerte technical developers Subject: [Xerte-dev] Re: Custom layout for questions? A custom interface is a legacy from the old flash runtime, where you could use a swf as a custom interface: that swf could then call the navigation methods in the main engine. I'm not so close to the html5 runtime, Fay will give you a better answer tomorrow: try overriding with !important in css? Otherwise extend the code in the template to handle an optional property for layout? J From:xerte-dev-bounces at lists.nottingham.ac.uk [mailto:xerte-dev-bounces at lists.nottingham.ac.uk] On Behalf Of Smith, Bradley Sent: 24 November 2014 23:15 To: For Xerte technical developers Subject: [Xerte-dev] Custom layout for questions? Hello all, Not sure if this is better send to xerte or xerte-dev, but I'll try the latter first. Personally, I'm not a fan of the two-column sort of layout that Xerte seems to prefer for questions. Often, both my questions and answers may include unix commands, screen shots, and other things that take up a lot of horizontal space. What I would like to have is a "vertical" layout that just shows the instruction/prompt (when you only have one question, I'm unclear why you would distinguish between these anyway), followed by the answer options, each taking up 100% of the page's width. The closest I've gotten to this is to set the Panel Width setting to "full", and put the instruction and prompt text both in the Prompt box . However, the prompt is rendered as an H3 tag, so the whole question appears bolded. This causes problems with text-heavy questions where I need more variety in the formatting. I noticed an option to include a custom stylesheet with a learning object, so I uploaded one with: h3.question { font-weight: normal; } When I load the preview, my browser's dev tools show that the stylesheet is loaded by something, but there is no change to the formatting of the question. So my question is: what's the best way to do what I want here? I see there's also an option to upload a "custom interface", but that only seems to be available at the the learning object level (as opposed to a specific component like a question), and I haven't seen any docs that explain exactly how to make one anyway. Suggestions? -Brad This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham. This message has been checked for viruses but the contents of an attachment may still contain software viruses which could damage your computer 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: