Index: lams_flash/src/central/flex/Learner/.actionScriptProperties =================================================================== diff -u --- lams_flash/src/central/flex/Learner/.actionScriptProperties (revision 0) +++ lams_flash/src/central/flex/Learner/.actionScriptProperties (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/.flexProperties =================================================================== diff -u --- lams_flash/src/central/flex/Learner/.flexProperties (revision 0) +++ lams_flash/src/central/flex/Learner/.flexProperties (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,2 @@ + + Index: lams_flash/src/central/flex/Learner/.project =================================================================== diff -u --- lams_flash/src/central/flex/Learner/.project (revision 0) +++ lams_flash/src/central/flex/Learner/.project (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,30 @@ + + + Learner + + + + + + com.adobe.flexbuilder.project.flexbuilder + + + + + + com.adobe.flexbuilder.project.flexnature + com.adobe.flexbuilder.project.actionscriptnature + + + + bin-release1 + 2 + D:/LAMS_HEAD/lams_learning/web + + + [source path] flex + 2 + D:/LAMS_HEAD/lams_flash/src/common/flex + + + Index: lams_flash/src/central/flex/Learner/.settings/org.eclipse.core.resources.prefs =================================================================== diff -u --- lams_flash/src/central/flex/Learner/.settings/org.eclipse.core.resources.prefs (revision 0) +++ lams_flash/src/central/flex/Learner/.settings/org.eclipse.core.resources.prefs (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,3 @@ +#Tue Apr 21 17:46:17 EST 2009 +eclipse.preferences.version=1 +encoding/=utf-8 Index: lams_flash/src/central/flex/Learner/bin-debug/AC_OETags.js =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/AC_OETags.js (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/AC_OETags.js (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,292 @@ +// Flash Player Version Detection - Rev 1.6 +// Detect Client Browser type +// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved. +var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false; +var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; +var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false; + +function ControlVersion() +{ + var version; + var axo; + var e; + + // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry + + try { + // version will be set for 7.X or greater players + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); + version = axo.GetVariable("$version"); + } catch (e) { + } + + if (!version) + { + try { + // version will be set for 6.X players only + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); + + // installed player is some revision of 6.0 + // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29, + // so we have to be careful. + + // default to the first public version + version = "WIN 6,0,21,0"; + + // throws if AllowScripAccess does not exist (introduced in 6.0r47) + axo.AllowScriptAccess = "always"; + + // safe to call for 6.0r47 or greater + version = axo.GetVariable("$version"); + + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 4.X or 5.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = axo.GetVariable("$version"); + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 3.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = "WIN 3,0,18,0"; + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 2.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); + version = "WIN 2,0,0,11"; + } catch (e) { + version = -1; + } + } + + return version; +} + +// JavaScript helper required to detect Flash Player PlugIn version information +function GetSwfVer(){ + // NS/Opera version >= 3 check for Flash plugin in plugin array + var flashVer = -1; + + if (navigator.plugins != null && navigator.plugins.length > 0) { + if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) { + var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; + var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description; + var descArray = flashDescription.split(" "); + var tempArrayMajor = descArray[2].split("."); + var versionMajor = tempArrayMajor[0]; + var versionMinor = tempArrayMajor[1]; + var versionRevision = descArray[3]; + if (versionRevision == "") { + versionRevision = descArray[4]; + } + if (versionRevision[0] == "d") { + versionRevision = versionRevision.substring(1); + } else if (versionRevision[0] == "r") { + versionRevision = versionRevision.substring(1); + if (versionRevision.indexOf("d") > 0) { + versionRevision = versionRevision.substring(0, versionRevision.indexOf("d")); + } + } else if (versionRevision[0] == "b") { + versionRevision = versionRevision.substring(1); + } + var flashVer = versionMajor + "." + versionMinor + "." + versionRevision; + } + } + // MSN/WebTV 2.6 supports Flash 4 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4; + // WebTV 2.5 supports Flash 3 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3; + // older WebTV supports Flash 2 + else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; + else if ( isIE && isWin && !isOpera ) { + flashVer = ControlVersion(); + } + return flashVer; +} + +// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available +function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) +{ + versionStr = GetSwfVer(); + if (versionStr == -1 ) { + return false; + } else if (versionStr != 0) { + if(isIE && isWin && !isOpera) { + // Given "WIN 2,0,0,11" + tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"] + tempString = tempArray[1]; // "2,0,0,11" + versionArray = tempString.split(","); // ['2', '0', '0', '11'] + } else { + versionArray = versionStr.split("."); + } + var versionMajor = versionArray[0]; + var versionMinor = versionArray[1]; + var versionRevision = versionArray[2]; + + // is the major.revision >= requested major.revision AND the minor version >= requested minor + if (versionMajor > parseFloat(reqMajorVer)) { + return true; + } else if (versionMajor == parseFloat(reqMajorVer)) { + if (versionMinor > parseFloat(reqMinorVer)) + return true; + else if (versionMinor == parseFloat(reqMinorVer)) { + if (versionRevision >= parseFloat(reqRevision)) + return true; + } + } + return false; + } +} + +function AC_AddExtension(src, ext) +{ + var qIndex = src.indexOf('?'); + if ( qIndex != -1) + { + // Add the extention (if needed) before the query params + var path = src.substring(0, qIndex); + if (path.length >= ext.length && path.lastIndexOf(ext) == (path.length - ext.length)) + return src; + else + return src.replace(/\?/, ext+'?'); + } + else + { + // Add the extension (if needed) to the end of the URL + if (src.length >= ext.length && src.lastIndexOf(ext) == (src.length - ext.length)) + return src; // Already have extension + else + return src + ext; + } +} + +function AC_Generateobj(objAttrs, params, embedAttrs) +{ + var str = ''; + if (isIE && isWin && !isOpera) + { + str += ' '; + str += ''; + } else { + str += ' + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/bin-debug/Learner.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/24-heart-gold.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/24-heart-red.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/24-heart-silver.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/application.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/deleteIcon.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/downArrow.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/exportIcon.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/lamsLogo.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/pencil.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/playerVolume.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/tick.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/upArrow.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/images/user.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-debug/assets/styles/main.css =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/assets/styles/main.css (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/assets/styles/main.css (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,95 @@ +/* CSS file */ +Application { + backgroundColor: #FFFFFF; + themeColor: #0087e5; +} + +Alert { + backgroundColor: #FFFFFF; + color: #000000; +} + +Panel { + borderColor: #45a6ed; + borderThicknessLeft: 1; + borderThicknessRight: 1; + borderThicknessBottom: 1; + borderAlpha: 1; + + paddingTop: 0; + paddingLeft: 0; + paddingRight: 0; + paddingBottom: 0; + + highlightAlphas: 0.67, 0; + headerColors: #45a6ed, #0087e5; + + titleStyleName: "myPanelStyle"; +} + +Panel.complexActivity { + titleStyleName: "complexActivity"; + borderColor: #D7D7D7; + borderThicknessLeft: 1; + borderThicknessRight: 1; + borderThicknessBottom: 1; + borderThicknessTop: 1; + + paddingTop: 0; + paddingLeft: 0; + paddingRight: 0; + paddingBottom: 0; + + highlightAlphas: 0.67, 0; + headerColors: #8a8a8a, #d7d7d7; + + roundedBottomCorners: false; + headerHeight: 12; + + fontFamily: Verdana; + fontSize: 10; + cornerRadius: 0; +} + +Wizard { + horizontalAlign : center; +} + +.mainBody { + backgroundColor: #FFFFFF; + paddingTop: 20; + horizontalAlign : center; +} + +Form, Label, TextInput { + color: #000000; + font-weight: normal; +} + +FormItem, List { + font-weight: bold; + text-align: left; +} + +.myPanelStyle { + color: #FFFFFF; +} + +.panelText { + color: #000000; + font-weight: none; + text-align: left; +} +.panelStatus +{ +} +.panelControlBar +{ +} +@font-face +{ + fontFamily: Alba; + fontWeight: normal; + fontStyle: normal; + src: local("Alba"); +} Index: lams_flash/src/central/flex/Learner/bin-debug/history/history.css =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/history/history.css (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/history/history.css (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,6 @@ +/* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */ + +#ie_historyFrame { width: 0px; height: 0px; display:none } +#firefox_anchorDiv { width: 0px; height: 0px; display:none } +#safari_formDiv { width: 0px; height: 0px; display:none } +#safari_rememberDiv { width: 0px; height: 0px; display:none } Index: lams_flash/src/central/flex/Learner/bin-debug/history/history.js =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/history/history.js (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/history/history.js (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,662 @@ +BrowserHistoryUtils = { + addEvent: function(elm, evType, fn, useCapture) { + useCapture = useCapture || false; + if (elm.addEventListener) { + elm.addEventListener(evType, fn, useCapture); + return true; + } + else if (elm.attachEvent) { + var r = elm.attachEvent('on' + evType, fn); + return r; + } + else { + elm['on' + evType] = fn; + } + } +} + +BrowserHistory = (function() { + // type of browser + var browser = { + ie: false, + firefox: false, + safari: false, + opera: false, + version: -1 + }; + + // if setDefaultURL has been called, our first clue + // that the SWF is ready and listening + //var swfReady = false; + + // the URL we'll send to the SWF once it is ready + //var pendingURL = ''; + + // Default app state URL to use when no fragment ID present + var defaultHash = ''; + + // Last-known app state URL + var currentHref = document.location.href; + + // Initial URL (used only by IE) + var initialHref = document.location.href; + + // Initial URL (used only by IE) + var initialHash = document.location.hash; + + // History frame source URL prefix (used only by IE) + var historyFrameSourcePrefix = 'history/historyFrame.html?'; + + // History maintenance (used only by Safari) + var currentHistoryLength = -1; + + var historyHash = []; + + var initialState = createState(initialHref, initialHref + '#' + initialHash, initialHash); + + var backStack = []; + var forwardStack = []; + + var currentObjectId = null; + + //UserAgent detection + var useragent = navigator.userAgent.toLowerCase(); + + if (useragent.indexOf("opera") != -1) { + browser.opera = true; + } else if (useragent.indexOf("msie") != -1) { + browser.ie = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('msie') + 4)); + } else if (useragent.indexOf("safari") != -1) { + browser.safari = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('safari') + 7)); + } else if (useragent.indexOf("gecko") != -1) { + browser.firefox = true; + } + + if (browser.ie == true && browser.version == 7) { + window["_ie_firstload"] = false; + } + + // Accessor functions for obtaining specific elements of the page. + function getHistoryFrame() + { + return document.getElementById('ie_historyFrame'); + } + + function getAnchorElement() + { + return document.getElementById('firefox_anchorDiv'); + } + + function getFormElement() + { + return document.getElementById('safari_formDiv'); + } + + function getRememberElement() + { + return document.getElementById("safari_remember_field"); + } + + // Get the Flash player object for performing ExternalInterface callbacks. + // Updated for changes to SWFObject2. + function getPlayer(id) { + if (id && document.getElementById(id)) { + var r = document.getElementById(id); + if (typeof r.SetVariable != "undefined") { + return r; + } + else { + var o = r.getElementsByTagName("object"); + var e = r.getElementsByTagName("embed"); + if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + } + } + else { + var o = document.getElementsByTagName("object"); + var e = document.getElementsByTagName("embed"); + if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + else if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (o.length > 1 && typeof o[1].SetVariable != "undefined") { + return o[1]; + } + } + return undefined; + } + + function getPlayers() { + var players = []; + if (players.length == 0) { + var tmp = document.getElementsByTagName('object'); + players = tmp; + } + + if (players.length == 0 || players[0].object == null) { + var tmp = document.getElementsByTagName('embed'); + players = tmp; + } + return players; + } + + function getIframeHash() { + var doc = getHistoryFrame().contentWindow.document; + var hash = String(doc.location.search); + if (hash.length == 1 && hash.charAt(0) == "?") { + hash = ""; + } + else if (hash.length >= 2 && hash.charAt(0) == "?") { + hash = hash.substring(1); + } + return hash; + } + + /* Get the current location hash excluding the '#' symbol. */ + function getHash() { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + var idx = document.location.href.indexOf('#'); + return (idx >= 0) ? document.location.href.substr(idx+1) : ''; + } + + /* Get the current location hash excluding the '#' symbol. */ + function setHash(hash) { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + if (hash == '') hash = '#' + document.location.hash = hash; + } + + function createState(baseUrl, newUrl, flexAppUrl) { + return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null }; + } + + /* Add a history entry to the browser. + * baseUrl: the portion of the location prior to the '#' + * newUrl: the entire new URL, including '#' and following fragment + * flexAppUrl: the portion of the location following the '#' only + */ + function addHistoryEntry(baseUrl, newUrl, flexAppUrl) { + + //delete all the history entries + forwardStack = []; + + if (browser.ie) { + //Check to see if we are being asked to do a navigate for the first + //history entry, and if so ignore, because it's coming from the creation + //of the history iframe + if (flexAppUrl == defaultHash && document.location.href == initialHref && window['_ie_firstload']) { + currentHref = initialHref; + return; + } + if ((!flexAppUrl || flexAppUrl == defaultHash) && window['_ie_firstload']) { + newUrl = baseUrl + '#' + defaultHash; + flexAppUrl = defaultHash; + } else { + // for IE, tell the history frame to go somewhere without a '#' + // in order to get this entry into the browser history. + getHistoryFrame().src = historyFrameSourcePrefix + flexAppUrl; + } + setHash(flexAppUrl); + } else { + + //ADR + if (backStack.length == 0 && initialState.flexAppUrl == flexAppUrl) { + initialState = createState(baseUrl, newUrl, flexAppUrl); + } else if(backStack.length > 0 && backStack[backStack.length - 1].flexAppUrl == flexAppUrl) { + backStack[backStack.length - 1] = createState(baseUrl, newUrl, flexAppUrl); + } + + if (browser.safari) { + // for Safari, submit a form whose action points to the desired URL + if (browser.version <= 419.3) { + var file = window.location.pathname.toString(); + file = file.substring(file.lastIndexOf("/")+1); + getFormElement().innerHTML = '
'; + //get the current elements and add them to the form + var qs = window.location.search.substring(1); + var qs_arr = qs.split("&"); + for (var i = 0; i < qs_arr.length; i++) { + var tmp = qs_arr[i].split("="); + var elem = document.createElement("input"); + elem.type = "hidden"; + elem.name = tmp[0]; + elem.value = tmp[1]; + document.forms.historyForm.appendChild(elem); + } + document.forms.historyForm.submit(); + } else { + top.location.hash = flexAppUrl; + } + // We also have to maintain the history by hand for Safari + historyHash[history.length] = flexAppUrl; + _storeStates(); + } else { + // Otherwise, write an anchor into the page and tell the browser to go there + addAnchor(flexAppUrl); + setHash(flexAppUrl); + } + } + backStack.push(createState(baseUrl, newUrl, flexAppUrl)); + } + + function _storeStates() { + if (browser.safari) { + getRememberElement().value = historyHash.join(","); + } + } + + function handleBackButton() { + //The "current" page is always at the top of the history stack. + var current = backStack.pop(); + if (!current) { return; } + var last = backStack[backStack.length - 1]; + if (!last && backStack.length == 0){ + last = initialState; + } + forwardStack.push(current); + } + + function handleForwardButton() { + //summary: private method. Do not call this directly. + + var last = forwardStack.pop(); + if (!last) { return; } + backStack.push(last); + } + + function handleArbitraryUrl() { + //delete all the history entries + forwardStack = []; + } + + /* Called periodically to poll to see if we need to detect navigation that has occurred */ + function checkForUrlChange() { + + if (browser.ie) { + if (currentHref != document.location.href && currentHref + '#' != document.location.href) { + //This occurs when the user has navigated to a specific URL + //within the app, and didn't use browser back/forward + //IE seems to have a bug where it stops updating the URL it + //shows the end-user at this point, but programatically it + //appears to be correct. Do a full app reload to get around + //this issue. + if (browser.version < 7) { + currentHref = document.location.href; + document.location.reload(); + } else { + if (getHash() != getIframeHash()) { + // this.iframe.src = this.blankURL + hash; + var sourceToSet = historyFrameSourcePrefix + getHash(); + getHistoryFrame().src = sourceToSet; + } + } + } + } + + if (browser.safari) { + // For Safari, we have to check to see if history.length changed. + if (currentHistoryLength >= 0 && history.length != currentHistoryLength) { + //alert("did change: " + history.length + ", " + historyHash.length + "|" + historyHash[history.length] + "|>" + historyHash.join("|")); + // If it did change, then we have to look the old state up + // in our hand-maintained array since document.location.hash + // won't have changed, then call back into BrowserManager. + currentHistoryLength = history.length; + var flexAppUrl = historyHash[currentHistoryLength]; + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + _storeStates(); + } + } + if (browser.firefox) { + if (currentHref != document.location.href) { + var bsl = backStack.length; + + var urlActions = { + back: false, + forward: false, + set: false + } + + if ((window.location.hash == initialHash || window.location.href == initialHref) && (bsl == 1)) { + urlActions.back = true; + // FIXME: could this ever be a forward button? + // we can't clear it because we still need to check for forwards. Ugg. + // clearInterval(this.locationTimer); + handleBackButton(); + } + + // first check to see if we could have gone forward. We always halt on + // a no-hash item. + if (forwardStack.length > 0) { + if (forwardStack[forwardStack.length-1].flexAppUrl == getHash()) { + urlActions.forward = true; + handleForwardButton(); + } + } + + // ok, that didn't work, try someplace back in the history stack + if ((bsl >= 2) && (backStack[bsl - 2])) { + if (backStack[bsl - 2].flexAppUrl == getHash()) { + urlActions.back = true; + handleBackButton(); + } + } + + if (!urlActions.back && !urlActions.forward) { + var foundInStacks = { + back: -1, + forward: -1 + } + + for (var i = 0; i < backStack.length; i++) { + if (backStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.back = i; + } + } + for (var i = 0; i < forwardStack.length; i++) { + if (forwardStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.forward = i; + } + } + handleArbitraryUrl(); + } + + // Firefox changed; do a callback into BrowserManager to tell it. + currentHref = document.location.href; + var flexAppUrl = getHash(); + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + } + } + //setTimeout(checkForUrlChange, 50); + } + + /* Write an anchor into the page to legitimize it as a URL for Firefox et al. */ + function addAnchor(flexAppUrl) + { + if (document.getElementsByName(flexAppUrl).length == 0) { + getAnchorElement().innerHTML += "" + flexAppUrl + ""; + } + } + + var _initialize = function () { + if (browser.ie) + { + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + var iframe_location = (new String(s.src)).replace("history.js", "historyFrame.html"); + } + } + historyFrameSourcePrefix = iframe_location + "?"; + var src = historyFrameSourcePrefix; + + var iframe = document.createElement("iframe"); + iframe.id = 'ie_historyFrame'; + iframe.name = 'ie_historyFrame'; + //iframe.src = historyFrameSourcePrefix; + try { + document.body.appendChild(iframe); + } catch(e) { + setTimeout(function() { + document.body.appendChild(iframe); + }, 0); + } + } + + if (browser.safari) + { + var rememberDiv = document.createElement("div"); + rememberDiv.id = 'safari_rememberDiv'; + document.body.appendChild(rememberDiv); + rememberDiv.innerHTML = ''; + + var formDiv = document.createElement("div"); + formDiv.id = 'safari_formDiv'; + document.body.appendChild(formDiv); + + var reloader_content = document.createElement('div'); + reloader_content.id = 'safarireloader'; + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + html = (new String(s.src)).replace(".js", ".html"); + } + } + reloader_content.innerHTML = ''; + document.body.appendChild(reloader_content); + reloader_content.style.position = 'absolute'; + reloader_content.style.left = reloader_content.style.top = '-9999px'; + iframe = reloader_content.getElementsByTagName('iframe')[0]; + + if (document.getElementById("safari_remember_field").value != "" ) { + historyHash = document.getElementById("safari_remember_field").value.split(","); + } + + } + + if (browser.firefox) + { + var anchorDiv = document.createElement("div"); + anchorDiv.id = 'firefox_anchorDiv'; + document.body.appendChild(anchorDiv); + } + + //setTimeout(checkForUrlChange, 50); + } + + return { + historyHash: historyHash, + backStack: function() { return backStack; }, + forwardStack: function() { return forwardStack }, + getPlayer: getPlayer, + initialize: function(src) { + _initialize(src); + }, + setURL: function(url) { + document.location.href = url; + }, + getURL: function() { + return document.location.href; + }, + getTitle: function() { + return document.title; + }, + setTitle: function(title) { + try { + backStack[backStack.length - 1].title = title; + } catch(e) { } + //if on safari, set the title to be the empty string. + if (browser.safari) { + if (title == "") { + try { + var tmp = window.location.href.toString(); + title = tmp.substring((tmp.lastIndexOf("/")+1), tmp.lastIndexOf("#")); + } catch(e) { + title = ""; + } + } + } + document.title = title; + }, + setDefaultURL: function(def) + { + defaultHash = def; + def = getHash(); + //trailing ? is important else an extra frame gets added to the history + //when navigating back to the first page. Alternatively could check + //in history frame navigation to compare # and ?. + if (browser.ie) + { + window['_ie_firstload'] = true; + var sourceToSet = historyFrameSourcePrefix + def; + var func = function() { + getHistoryFrame().src = sourceToSet; + window.location.replace("#" + def); + setInterval(checkForUrlChange, 50); + } + try { + func(); + } catch(e) { + window.setTimeout(function() { func(); }, 0); + } + } + + if (browser.safari) + { + currentHistoryLength = history.length; + if (historyHash.length == 0) { + historyHash[currentHistoryLength] = def; + var newloc = "#" + def; + window.location.replace(newloc); + } else { + //alert(historyHash[historyHash.length-1]); + } + //setHash(def); + setInterval(checkForUrlChange, 50); + } + + + if (browser.firefox || browser.opera) + { + var reg = new RegExp("#" + def + "$"); + if (window.location.toString().match(reg)) { + } else { + var newloc ="#" + def; + window.location.replace(newloc); + } + setInterval(checkForUrlChange, 50); + //setHash(def); + } + + }, + + /* Set the current browser URL; called from inside BrowserManager to propagate + * the application state out to the container. + */ + setBrowserURL: function(flexAppUrl, objectId) { + if (browser.ie && typeof objectId != "undefined") { + currentObjectId = objectId; + } + //fromIframe = fromIframe || false; + //fromFlex = fromFlex || false; + //alert("setBrowserURL: " + flexAppUrl); + //flexAppUrl = (flexAppUrl == "") ? defaultHash : flexAppUrl ; + + var pos = document.location.href.indexOf('#'); + var baseUrl = pos != -1 ? document.location.href.substr(0, pos) : document.location.href; + var newUrl = baseUrl + '#' + flexAppUrl; + + if (document.location.href != newUrl && document.location.href + '#' != newUrl) { + currentHref = newUrl; + addHistoryEntry(baseUrl, newUrl, flexAppUrl); + currentHistoryLength = history.length; + } + + return false; + }, + + browserURLChange: function(flexAppUrl) { + var objectId = null; + if (browser.ie && currentObjectId != null) { + objectId = currentObjectId; + } + pendingURL = ''; + + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + try { + pl[i].browserURLChange(flexAppUrl); + } catch(e) { } + } + } else { + try { + getPlayer(objectId).browserURLChange(flexAppUrl); + } catch(e) { } + } + + currentObjectId = null; + } + + } + +})(); + +// Initialization + +// Automated unit testing and other diagnostics + +function setURL(url) +{ + document.location.href = url; +} + +function backButton() +{ + history.back(); +} + +function forwardButton() +{ + history.forward(); +} + +function goForwardOrBackInHistory(step) +{ + history.go(step); +} + +//BrowserHistoryUtils.addEvent(window, "load", function() { BrowserHistory.initialize(); }); +(function(i) { + var u =navigator.userAgent;var e=/*@cc_on!@*/false; + var st = setTimeout; + if(/webkit/i.test(u)){ + st(function(){ + var dr=document.readyState; + if(dr=="loaded"||dr=="complete"){i()} + else{st(arguments.callee,10);}},10); + } else if((/mozilla/i.test(u)&&!/(compati)/.test(u)) || (/opera/i.test(u))){ + document.addEventListener("DOMContentLoaded",i,false); + } else if(e){ + (function(){ + var t=document.createElement('doc:rdy'); + try{t.doScroll('left'); + i();t=null; + }catch(e){st(arguments.callee,0);}})(); + } else{ + window.onload=i; + } +})( function() {BrowserHistory.initialize();} ); Index: lams_flash/src/central/flex/Learner/bin-debug/history/historyFrame.html =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/history/historyFrame.html (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/history/historyFrame.html (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,29 @@ + + + + + + + + Hidden frame for Browser History support. + + Index: lams_flash/src/central/flex/Learner/bin-debug/lib/mate.license.txt =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/lib/mate.license.txt (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/lib/mate.license.txt (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,55 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and + + 2. You must cause any modified files to carry prominent notices stating that You changed the files; and + + 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS Index: lams_flash/src/central/flex/Learner/bin-debug/lib/mate_06_2.license.txt =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/lib/mate_06_2.license.txt (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/lib/mate_06_2.license.txt (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,55 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and + + 2. You must cause any modified files to carry prominent notices stating that You changed the files; and + + 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS Index: lams_flash/src/central/flex/Learner/bin-debug/lib/wddx.license.txt =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-debug/lib/wddx.license.txt (revision 0) +++ lams_flash/src/central/flex/Learner/bin-debug/lib/wddx.license.txt (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,23 @@ +http://www.opensource.org/licenses/mit-license.php + +The MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. Index: lams_flash/src/central/flex/Learner/bin-debug/playerProductInstall.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/AC_OETags.js =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-release/AC_OETags.js (revision 0) +++ lams_flash/src/central/flex/Learner/bin-release/AC_OETags.js (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,292 @@ +// Flash Player Version Detection - Rev 1.6 +// Detect Client Browser type +// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved. +var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false; +var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; +var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false; + +function ControlVersion() +{ + var version; + var axo; + var e; + + // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry + + try { + // version will be set for 7.X or greater players + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); + version = axo.GetVariable("$version"); + } catch (e) { + } + + if (!version) + { + try { + // version will be set for 6.X players only + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); + + // installed player is some revision of 6.0 + // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29, + // so we have to be careful. + + // default to the first public version + version = "WIN 6,0,21,0"; + + // throws if AllowScripAccess does not exist (introduced in 6.0r47) + axo.AllowScriptAccess = "always"; + + // safe to call for 6.0r47 or greater + version = axo.GetVariable("$version"); + + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 4.X or 5.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = axo.GetVariable("$version"); + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 3.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = "WIN 3,0,18,0"; + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 2.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); + version = "WIN 2,0,0,11"; + } catch (e) { + version = -1; + } + } + + return version; +} + +// JavaScript helper required to detect Flash Player PlugIn version information +function GetSwfVer(){ + // NS/Opera version >= 3 check for Flash plugin in plugin array + var flashVer = -1; + + if (navigator.plugins != null && navigator.plugins.length > 0) { + if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) { + var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; + var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description; + var descArray = flashDescription.split(" "); + var tempArrayMajor = descArray[2].split("."); + var versionMajor = tempArrayMajor[0]; + var versionMinor = tempArrayMajor[1]; + var versionRevision = descArray[3]; + if (versionRevision == "") { + versionRevision = descArray[4]; + } + if (versionRevision[0] == "d") { + versionRevision = versionRevision.substring(1); + } else if (versionRevision[0] == "r") { + versionRevision = versionRevision.substring(1); + if (versionRevision.indexOf("d") > 0) { + versionRevision = versionRevision.substring(0, versionRevision.indexOf("d")); + } + } else if (versionRevision[0] == "b") { + versionRevision = versionRevision.substring(1); + } + var flashVer = versionMajor + "." + versionMinor + "." + versionRevision; + } + } + // MSN/WebTV 2.6 supports Flash 4 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4; + // WebTV 2.5 supports Flash 3 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3; + // older WebTV supports Flash 2 + else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; + else if ( isIE && isWin && !isOpera ) { + flashVer = ControlVersion(); + } + return flashVer; +} + +// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available +function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) +{ + versionStr = GetSwfVer(); + if (versionStr == -1 ) { + return false; + } else if (versionStr != 0) { + if(isIE && isWin && !isOpera) { + // Given "WIN 2,0,0,11" + tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"] + tempString = tempArray[1]; // "2,0,0,11" + versionArray = tempString.split(","); // ['2', '0', '0', '11'] + } else { + versionArray = versionStr.split("."); + } + var versionMajor = versionArray[0]; + var versionMinor = versionArray[1]; + var versionRevision = versionArray[2]; + + // is the major.revision >= requested major.revision AND the minor version >= requested minor + if (versionMajor > parseFloat(reqMajorVer)) { + return true; + } else if (versionMajor == parseFloat(reqMajorVer)) { + if (versionMinor > parseFloat(reqMinorVer)) + return true; + else if (versionMinor == parseFloat(reqMinorVer)) { + if (versionRevision >= parseFloat(reqRevision)) + return true; + } + } + return false; + } +} + +function AC_AddExtension(src, ext) +{ + var qIndex = src.indexOf('?'); + if ( qIndex != -1) + { + // Add the extention (if needed) before the query params + var path = src.substring(0, qIndex); + if (path.length >= ext.length && path.lastIndexOf(ext) == (path.length - ext.length)) + return src; + else + return src.replace(/\?/, ext+'?'); + } + else + { + // Add the extension (if needed) to the end of the URL + if (src.length >= ext.length && src.lastIndexOf(ext) == (src.length - ext.length)) + return src; // Already have extension + else + return src + ext; + } +} + +function AC_Generateobj(objAttrs, params, embedAttrs) +{ + var str = ''; + if (isIE && isWin && !isOpera) + { + str += ' '; + str += ''; + } else { + str += ' + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/bin-release/Learner.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/24-heart-gold.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/24-heart-red.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/24-heart-silver.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/application.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/deleteIcon.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/downArrow.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/exportIcon.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/lamsLogo.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/pencil.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/playerVolume.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/tick.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/upArrow.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/images/user.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/bin-release/assets/styles/main.css =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-release/assets/styles/main.css (revision 0) +++ lams_flash/src/central/flex/Learner/bin-release/assets/styles/main.css (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,35 @@ +Application { + backgroundColor:#ECECEC; + backgroundGradientColors:#ECECEC,#ECECEC; +} + +Tile { + top: 10; + bottom: 10; + left: 10; + right: 10; +} + +Label { + color: #000000; + fontWeight: bold; + fontSize: 14; +} + +.box { + borderColor: #50B2CB; + cornerRadius: 10; + borderStyle: solid; + borderThickness: 1; + paddingBottom: 10; + paddingTop: 10; + paddingLeft: 10; + paddingRight: 10; + backgroundColor:#ffffff; + backgroundAlpha: 1; +} + +Text { + fontSize: 12; + fontWeight: normal; +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/bin-release/history/history.css =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-release/history/history.css (revision 0) +++ lams_flash/src/central/flex/Learner/bin-release/history/history.css (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,6 @@ +/* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */ + +#ie_historyFrame { width: 0px; height: 0px; display:none } +#firefox_anchorDiv { width: 0px; height: 0px; display:none } +#safari_formDiv { width: 0px; height: 0px; display:none } +#safari_rememberDiv { width: 0px; height: 0px; display:none } Index: lams_flash/src/central/flex/Learner/bin-release/history/history.js =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-release/history/history.js (revision 0) +++ lams_flash/src/central/flex/Learner/bin-release/history/history.js (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,662 @@ +BrowserHistoryUtils = { + addEvent: function(elm, evType, fn, useCapture) { + useCapture = useCapture || false; + if (elm.addEventListener) { + elm.addEventListener(evType, fn, useCapture); + return true; + } + else if (elm.attachEvent) { + var r = elm.attachEvent('on' + evType, fn); + return r; + } + else { + elm['on' + evType] = fn; + } + } +} + +BrowserHistory = (function() { + // type of browser + var browser = { + ie: false, + firefox: false, + safari: false, + opera: false, + version: -1 + }; + + // if setDefaultURL has been called, our first clue + // that the SWF is ready and listening + //var swfReady = false; + + // the URL we'll send to the SWF once it is ready + //var pendingURL = ''; + + // Default app state URL to use when no fragment ID present + var defaultHash = ''; + + // Last-known app state URL + var currentHref = document.location.href; + + // Initial URL (used only by IE) + var initialHref = document.location.href; + + // Initial URL (used only by IE) + var initialHash = document.location.hash; + + // History frame source URL prefix (used only by IE) + var historyFrameSourcePrefix = 'history/historyFrame.html?'; + + // History maintenance (used only by Safari) + var currentHistoryLength = -1; + + var historyHash = []; + + var initialState = createState(initialHref, initialHref + '#' + initialHash, initialHash); + + var backStack = []; + var forwardStack = []; + + var currentObjectId = null; + + //UserAgent detection + var useragent = navigator.userAgent.toLowerCase(); + + if (useragent.indexOf("opera") != -1) { + browser.opera = true; + } else if (useragent.indexOf("msie") != -1) { + browser.ie = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('msie') + 4)); + } else if (useragent.indexOf("safari") != -1) { + browser.safari = true; + browser.version = parseFloat(useragent.substring(useragent.indexOf('safari') + 7)); + } else if (useragent.indexOf("gecko") != -1) { + browser.firefox = true; + } + + if (browser.ie == true && browser.version == 7) { + window["_ie_firstload"] = false; + } + + // Accessor functions for obtaining specific elements of the page. + function getHistoryFrame() + { + return document.getElementById('ie_historyFrame'); + } + + function getAnchorElement() + { + return document.getElementById('firefox_anchorDiv'); + } + + function getFormElement() + { + return document.getElementById('safari_formDiv'); + } + + function getRememberElement() + { + return document.getElementById("safari_remember_field"); + } + + // Get the Flash player object for performing ExternalInterface callbacks. + // Updated for changes to SWFObject2. + function getPlayer(id) { + if (id && document.getElementById(id)) { + var r = document.getElementById(id); + if (typeof r.SetVariable != "undefined") { + return r; + } + else { + var o = r.getElementsByTagName("object"); + var e = r.getElementsByTagName("embed"); + if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + } + } + else { + var o = document.getElementsByTagName("object"); + var e = document.getElementsByTagName("embed"); + if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + else if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (o.length > 1 && typeof o[1].SetVariable != "undefined") { + return o[1]; + } + } + return undefined; + } + + function getPlayers() { + var players = []; + if (players.length == 0) { + var tmp = document.getElementsByTagName('object'); + players = tmp; + } + + if (players.length == 0 || players[0].object == null) { + var tmp = document.getElementsByTagName('embed'); + players = tmp; + } + return players; + } + + function getIframeHash() { + var doc = getHistoryFrame().contentWindow.document; + var hash = String(doc.location.search); + if (hash.length == 1 && hash.charAt(0) == "?") { + hash = ""; + } + else if (hash.length >= 2 && hash.charAt(0) == "?") { + hash = hash.substring(1); + } + return hash; + } + + /* Get the current location hash excluding the '#' symbol. */ + function getHash() { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + var idx = document.location.href.indexOf('#'); + return (idx >= 0) ? document.location.href.substr(idx+1) : ''; + } + + /* Get the current location hash excluding the '#' symbol. */ + function setHash(hash) { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + if (hash == '') hash = '#' + document.location.hash = hash; + } + + function createState(baseUrl, newUrl, flexAppUrl) { + return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null }; + } + + /* Add a history entry to the browser. + * baseUrl: the portion of the location prior to the '#' + * newUrl: the entire new URL, including '#' and following fragment + * flexAppUrl: the portion of the location following the '#' only + */ + function addHistoryEntry(baseUrl, newUrl, flexAppUrl) { + + //delete all the history entries + forwardStack = []; + + if (browser.ie) { + //Check to see if we are being asked to do a navigate for the first + //history entry, and if so ignore, because it's coming from the creation + //of the history iframe + if (flexAppUrl == defaultHash && document.location.href == initialHref && window['_ie_firstload']) { + currentHref = initialHref; + return; + } + if ((!flexAppUrl || flexAppUrl == defaultHash) && window['_ie_firstload']) { + newUrl = baseUrl + '#' + defaultHash; + flexAppUrl = defaultHash; + } else { + // for IE, tell the history frame to go somewhere without a '#' + // in order to get this entry into the browser history. + getHistoryFrame().src = historyFrameSourcePrefix + flexAppUrl; + } + setHash(flexAppUrl); + } else { + + //ADR + if (backStack.length == 0 && initialState.flexAppUrl == flexAppUrl) { + initialState = createState(baseUrl, newUrl, flexAppUrl); + } else if(backStack.length > 0 && backStack[backStack.length - 1].flexAppUrl == flexAppUrl) { + backStack[backStack.length - 1] = createState(baseUrl, newUrl, flexAppUrl); + } + + if (browser.safari) { + // for Safari, submit a form whose action points to the desired URL + if (browser.version <= 419.3) { + var file = window.location.pathname.toString(); + file = file.substring(file.lastIndexOf("/")+1); + getFormElement().innerHTML = '
'; + //get the current elements and add them to the form + var qs = window.location.search.substring(1); + var qs_arr = qs.split("&"); + for (var i = 0; i < qs_arr.length; i++) { + var tmp = qs_arr[i].split("="); + var elem = document.createElement("input"); + elem.type = "hidden"; + elem.name = tmp[0]; + elem.value = tmp[1]; + document.forms.historyForm.appendChild(elem); + } + document.forms.historyForm.submit(); + } else { + top.location.hash = flexAppUrl; + } + // We also have to maintain the history by hand for Safari + historyHash[history.length] = flexAppUrl; + _storeStates(); + } else { + // Otherwise, write an anchor into the page and tell the browser to go there + addAnchor(flexAppUrl); + setHash(flexAppUrl); + } + } + backStack.push(createState(baseUrl, newUrl, flexAppUrl)); + } + + function _storeStates() { + if (browser.safari) { + getRememberElement().value = historyHash.join(","); + } + } + + function handleBackButton() { + //The "current" page is always at the top of the history stack. + var current = backStack.pop(); + if (!current) { return; } + var last = backStack[backStack.length - 1]; + if (!last && backStack.length == 0){ + last = initialState; + } + forwardStack.push(current); + } + + function handleForwardButton() { + //summary: private method. Do not call this directly. + + var last = forwardStack.pop(); + if (!last) { return; } + backStack.push(last); + } + + function handleArbitraryUrl() { + //delete all the history entries + forwardStack = []; + } + + /* Called periodically to poll to see if we need to detect navigation that has occurred */ + function checkForUrlChange() { + + if (browser.ie) { + if (currentHref != document.location.href && currentHref + '#' != document.location.href) { + //This occurs when the user has navigated to a specific URL + //within the app, and didn't use browser back/forward + //IE seems to have a bug where it stops updating the URL it + //shows the end-user at this point, but programatically it + //appears to be correct. Do a full app reload to get around + //this issue. + if (browser.version < 7) { + currentHref = document.location.href; + document.location.reload(); + } else { + if (getHash() != getIframeHash()) { + // this.iframe.src = this.blankURL + hash; + var sourceToSet = historyFrameSourcePrefix + getHash(); + getHistoryFrame().src = sourceToSet; + } + } + } + } + + if (browser.safari) { + // For Safari, we have to check to see if history.length changed. + if (currentHistoryLength >= 0 && history.length != currentHistoryLength) { + //alert("did change: " + history.length + ", " + historyHash.length + "|" + historyHash[history.length] + "|>" + historyHash.join("|")); + // If it did change, then we have to look the old state up + // in our hand-maintained array since document.location.hash + // won't have changed, then call back into BrowserManager. + currentHistoryLength = history.length; + var flexAppUrl = historyHash[currentHistoryLength]; + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + _storeStates(); + } + } + if (browser.firefox) { + if (currentHref != document.location.href) { + var bsl = backStack.length; + + var urlActions = { + back: false, + forward: false, + set: false + } + + if ((window.location.hash == initialHash || window.location.href == initialHref) && (bsl == 1)) { + urlActions.back = true; + // FIXME: could this ever be a forward button? + // we can't clear it because we still need to check for forwards. Ugg. + // clearInterval(this.locationTimer); + handleBackButton(); + } + + // first check to see if we could have gone forward. We always halt on + // a no-hash item. + if (forwardStack.length > 0) { + if (forwardStack[forwardStack.length-1].flexAppUrl == getHash()) { + urlActions.forward = true; + handleForwardButton(); + } + } + + // ok, that didn't work, try someplace back in the history stack + if ((bsl >= 2) && (backStack[bsl - 2])) { + if (backStack[bsl - 2].flexAppUrl == getHash()) { + urlActions.back = true; + handleBackButton(); + } + } + + if (!urlActions.back && !urlActions.forward) { + var foundInStacks = { + back: -1, + forward: -1 + } + + for (var i = 0; i < backStack.length; i++) { + if (backStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.back = i; + } + } + for (var i = 0; i < forwardStack.length; i++) { + if (forwardStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.forward = i; + } + } + handleArbitraryUrl(); + } + + // Firefox changed; do a callback into BrowserManager to tell it. + currentHref = document.location.href; + var flexAppUrl = getHash(); + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + } + } + //setTimeout(checkForUrlChange, 50); + } + + /* Write an anchor into the page to legitimize it as a URL for Firefox et al. */ + function addAnchor(flexAppUrl) + { + if (document.getElementsByName(flexAppUrl).length == 0) { + getAnchorElement().innerHTML += "" + flexAppUrl + ""; + } + } + + var _initialize = function () { + if (browser.ie) + { + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + var iframe_location = (new String(s.src)).replace("history.js", "historyFrame.html"); + } + } + historyFrameSourcePrefix = iframe_location + "?"; + var src = historyFrameSourcePrefix; + + var iframe = document.createElement("iframe"); + iframe.id = 'ie_historyFrame'; + iframe.name = 'ie_historyFrame'; + //iframe.src = historyFrameSourcePrefix; + try { + document.body.appendChild(iframe); + } catch(e) { + setTimeout(function() { + document.body.appendChild(iframe); + }, 0); + } + } + + if (browser.safari) + { + var rememberDiv = document.createElement("div"); + rememberDiv.id = 'safari_rememberDiv'; + document.body.appendChild(rememberDiv); + rememberDiv.innerHTML = ''; + + var formDiv = document.createElement("div"); + formDiv.id = 'safari_formDiv'; + document.body.appendChild(formDiv); + + var reloader_content = document.createElement('div'); + reloader_content.id = 'safarireloader'; + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + html = (new String(s.src)).replace(".js", ".html"); + } + } + reloader_content.innerHTML = ''; + document.body.appendChild(reloader_content); + reloader_content.style.position = 'absolute'; + reloader_content.style.left = reloader_content.style.top = '-9999px'; + iframe = reloader_content.getElementsByTagName('iframe')[0]; + + if (document.getElementById("safari_remember_field").value != "" ) { + historyHash = document.getElementById("safari_remember_field").value.split(","); + } + + } + + if (browser.firefox) + { + var anchorDiv = document.createElement("div"); + anchorDiv.id = 'firefox_anchorDiv'; + document.body.appendChild(anchorDiv); + } + + //setTimeout(checkForUrlChange, 50); + } + + return { + historyHash: historyHash, + backStack: function() { return backStack; }, + forwardStack: function() { return forwardStack }, + getPlayer: getPlayer, + initialize: function(src) { + _initialize(src); + }, + setURL: function(url) { + document.location.href = url; + }, + getURL: function() { + return document.location.href; + }, + getTitle: function() { + return document.title; + }, + setTitle: function(title) { + try { + backStack[backStack.length - 1].title = title; + } catch(e) { } + //if on safari, set the title to be the empty string. + if (browser.safari) { + if (title == "") { + try { + var tmp = window.location.href.toString(); + title = tmp.substring((tmp.lastIndexOf("/")+1), tmp.lastIndexOf("#")); + } catch(e) { + title = ""; + } + } + } + document.title = title; + }, + setDefaultURL: function(def) + { + defaultHash = def; + def = getHash(); + //trailing ? is important else an extra frame gets added to the history + //when navigating back to the first page. Alternatively could check + //in history frame navigation to compare # and ?. + if (browser.ie) + { + window['_ie_firstload'] = true; + var sourceToSet = historyFrameSourcePrefix + def; + var func = function() { + getHistoryFrame().src = sourceToSet; + window.location.replace("#" + def); + setInterval(checkForUrlChange, 50); + } + try { + func(); + } catch(e) { + window.setTimeout(function() { func(); }, 0); + } + } + + if (browser.safari) + { + currentHistoryLength = history.length; + if (historyHash.length == 0) { + historyHash[currentHistoryLength] = def; + var newloc = "#" + def; + window.location.replace(newloc); + } else { + //alert(historyHash[historyHash.length-1]); + } + //setHash(def); + setInterval(checkForUrlChange, 50); + } + + + if (browser.firefox || browser.opera) + { + var reg = new RegExp("#" + def + "$"); + if (window.location.toString().match(reg)) { + } else { + var newloc ="#" + def; + window.location.replace(newloc); + } + setInterval(checkForUrlChange, 50); + //setHash(def); + } + + }, + + /* Set the current browser URL; called from inside BrowserManager to propagate + * the application state out to the container. + */ + setBrowserURL: function(flexAppUrl, objectId) { + if (browser.ie && typeof objectId != "undefined") { + currentObjectId = objectId; + } + //fromIframe = fromIframe || false; + //fromFlex = fromFlex || false; + //alert("setBrowserURL: " + flexAppUrl); + //flexAppUrl = (flexAppUrl == "") ? defaultHash : flexAppUrl ; + + var pos = document.location.href.indexOf('#'); + var baseUrl = pos != -1 ? document.location.href.substr(0, pos) : document.location.href; + var newUrl = baseUrl + '#' + flexAppUrl; + + if (document.location.href != newUrl && document.location.href + '#' != newUrl) { + currentHref = newUrl; + addHistoryEntry(baseUrl, newUrl, flexAppUrl); + currentHistoryLength = history.length; + } + + return false; + }, + + browserURLChange: function(flexAppUrl) { + var objectId = null; + if (browser.ie && currentObjectId != null) { + objectId = currentObjectId; + } + pendingURL = ''; + + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + try { + pl[i].browserURLChange(flexAppUrl); + } catch(e) { } + } + } else { + try { + getPlayer(objectId).browserURLChange(flexAppUrl); + } catch(e) { } + } + + currentObjectId = null; + } + + } + +})(); + +// Initialization + +// Automated unit testing and other diagnostics + +function setURL(url) +{ + document.location.href = url; +} + +function backButton() +{ + history.back(); +} + +function forwardButton() +{ + history.forward(); +} + +function goForwardOrBackInHistory(step) +{ + history.go(step); +} + +//BrowserHistoryUtils.addEvent(window, "load", function() { BrowserHistory.initialize(); }); +(function(i) { + var u =navigator.userAgent;var e=/*@cc_on!@*/false; + var st = setTimeout; + if(/webkit/i.test(u)){ + st(function(){ + var dr=document.readyState; + if(dr=="loaded"||dr=="complete"){i()} + else{st(arguments.callee,10);}},10); + } else if((/mozilla/i.test(u)&&!/(compati)/.test(u)) || (/opera/i.test(u))){ + document.addEventListener("DOMContentLoaded",i,false); + } else if(e){ + (function(){ + var t=document.createElement('doc:rdy'); + try{t.doScroll('left'); + i();t=null; + }catch(e){st(arguments.callee,0);}})(); + } else{ + window.onload=i; + } +})( function() {BrowserHistory.initialize();} ); Index: lams_flash/src/central/flex/Learner/bin-release/history/historyFrame.html =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-release/history/historyFrame.html (revision 0) +++ lams_flash/src/central/flex/Learner/bin-release/history/historyFrame.html (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,29 @@ + + + + + + + + Hidden frame for Browser History support. + + Index: lams_flash/src/central/flex/Learner/bin-release/lib/mate.license.txt =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-release/lib/mate.license.txt (revision 0) +++ lams_flash/src/central/flex/Learner/bin-release/lib/mate.license.txt (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,55 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and + + 2. You must cause any modified files to carry prominent notices stating that You changed the files; and + + 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + +You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS Index: lams_flash/src/central/flex/Learner/bin-release/lib/wddx.license.txt =================================================================== diff -u --- lams_flash/src/central/flex/Learner/bin-release/lib/wddx.license.txt (revision 0) +++ lams_flash/src/central/flex/Learner/bin-release/lib/wddx.license.txt (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,23 @@ +http://www.opensource.org/licenses/mit-license.php + +The MIT License + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. Index: lams_flash/src/central/flex/Learner/bin-release/playerProductInstall.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/html-template/AC_OETags.js =================================================================== diff -u --- lams_flash/src/central/flex/Learner/html-template/AC_OETags.js (revision 0) +++ lams_flash/src/central/flex/Learner/html-template/AC_OETags.js (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,292 @@ +// Flash Player Version Detection - Rev 1.6 +// Detect Client Browser type +// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved. +var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false; +var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; +var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false; + +function ControlVersion() +{ + var version; + var axo; + var e; + + // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry + + try { + // version will be set for 7.X or greater players + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); + version = axo.GetVariable("$version"); + } catch (e) { + } + + if (!version) + { + try { + // version will be set for 6.X players only + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); + + // installed player is some revision of 6.0 + // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29, + // so we have to be careful. + + // default to the first public version + version = "WIN 6,0,21,0"; + + // throws if AllowScripAccess does not exist (introduced in 6.0r47) + axo.AllowScriptAccess = "always"; + + // safe to call for 6.0r47 or greater + version = axo.GetVariable("$version"); + + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 4.X or 5.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = axo.GetVariable("$version"); + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 3.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); + version = "WIN 3,0,18,0"; + } catch (e) { + } + } + + if (!version) + { + try { + // version will be set for 2.X player + axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); + version = "WIN 2,0,0,11"; + } catch (e) { + version = -1; + } + } + + return version; +} + +// JavaScript helper required to detect Flash Player PlugIn version information +function GetSwfVer(){ + // NS/Opera version >= 3 check for Flash plugin in plugin array + var flashVer = -1; + + if (navigator.plugins != null && navigator.plugins.length > 0) { + if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) { + var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; + var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description; + var descArray = flashDescription.split(" "); + var tempArrayMajor = descArray[2].split("."); + var versionMajor = tempArrayMajor[0]; + var versionMinor = tempArrayMajor[1]; + var versionRevision = descArray[3]; + if (versionRevision == "") { + versionRevision = descArray[4]; + } + if (versionRevision[0] == "d") { + versionRevision = versionRevision.substring(1); + } else if (versionRevision[0] == "r") { + versionRevision = versionRevision.substring(1); + if (versionRevision.indexOf("d") > 0) { + versionRevision = versionRevision.substring(0, versionRevision.indexOf("d")); + } + } else if (versionRevision[0] == "b") { + versionRevision = versionRevision.substring(1); + } + var flashVer = versionMajor + "." + versionMinor + "." + versionRevision; + } + } + // MSN/WebTV 2.6 supports Flash 4 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4; + // WebTV 2.5 supports Flash 3 + else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3; + // older WebTV supports Flash 2 + else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; + else if ( isIE && isWin && !isOpera ) { + flashVer = ControlVersion(); + } + return flashVer; +} + +// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available +function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) +{ + versionStr = GetSwfVer(); + if (versionStr == -1 ) { + return false; + } else if (versionStr != 0) { + if(isIE && isWin && !isOpera) { + // Given "WIN 2,0,0,11" + tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"] + tempString = tempArray[1]; // "2,0,0,11" + versionArray = tempString.split(","); // ['2', '0', '0', '11'] + } else { + versionArray = versionStr.split("."); + } + var versionMajor = versionArray[0]; + var versionMinor = versionArray[1]; + var versionRevision = versionArray[2]; + + // is the major.revision >= requested major.revision AND the minor version >= requested minor + if (versionMajor > parseFloat(reqMajorVer)) { + return true; + } else if (versionMajor == parseFloat(reqMajorVer)) { + if (versionMinor > parseFloat(reqMinorVer)) + return true; + else if (versionMinor == parseFloat(reqMinorVer)) { + if (versionRevision >= parseFloat(reqRevision)) + return true; + } + } + return false; + } +} + +function AC_AddExtension(src, ext) +{ + var qIndex = src.indexOf('?'); + if ( qIndex != -1) + { + // Add the extention (if needed) before the query params + var path = src.substring(0, qIndex); + if (path.length >= ext.length && path.lastIndexOf(ext) == (path.length - ext.length)) + return src; + else + return src.replace(/\?/, ext+'?'); + } + else + { + // Add the extension (if needed) to the end of the URL + if (src.length >= ext.length && src.lastIndexOf(ext) == (src.length - ext.length)) + return src; // Already have extension + else + return src + ext; + } +} + +function AC_Generateobj(objAttrs, params, embedAttrs) +{ + var str = ''; + if (isIE && isWin && !isOpera) + { + str += ' '; + str += ''; + } else { + str += ' 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + } + } + else { + var o = document.getElementsByTagName("object"); + var e = document.getElementsByTagName("embed"); + if (e.length > 0 && typeof e[0].SetVariable != "undefined") { + return e[0]; + } + else if (o.length > 0 && typeof o[0].SetVariable != "undefined") { + return o[0]; + } + else if (o.length > 1 && typeof o[1].SetVariable != "undefined") { + return o[1]; + } + } + return undefined; + } + + function getPlayers() { + var players = []; + if (players.length == 0) { + var tmp = document.getElementsByTagName('object'); + players = tmp; + } + + if (players.length == 0 || players[0].object == null) { + var tmp = document.getElementsByTagName('embed'); + players = tmp; + } + return players; + } + + function getIframeHash() { + var doc = getHistoryFrame().contentWindow.document; + var hash = String(doc.location.search); + if (hash.length == 1 && hash.charAt(0) == "?") { + hash = ""; + } + else if (hash.length >= 2 && hash.charAt(0) == "?") { + hash = hash.substring(1); + } + return hash; + } + + /* Get the current location hash excluding the '#' symbol. */ + function getHash() { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + var idx = document.location.href.indexOf('#'); + return (idx >= 0) ? document.location.href.substr(idx+1) : ''; + } + + /* Get the current location hash excluding the '#' symbol. */ + function setHash(hash) { + // It would be nice if we could use document.location.hash here, + // but it's faulty sometimes. + if (hash == '') hash = '#' + document.location.hash = hash; + } + + function createState(baseUrl, newUrl, flexAppUrl) { + return { 'baseUrl': baseUrl, 'newUrl': newUrl, 'flexAppUrl': flexAppUrl, 'title': null }; + } + + /* Add a history entry to the browser. + * baseUrl: the portion of the location prior to the '#' + * newUrl: the entire new URL, including '#' and following fragment + * flexAppUrl: the portion of the location following the '#' only + */ + function addHistoryEntry(baseUrl, newUrl, flexAppUrl) { + + //delete all the history entries + forwardStack = []; + + if (browser.ie) { + //Check to see if we are being asked to do a navigate for the first + //history entry, and if so ignore, because it's coming from the creation + //of the history iframe + if (flexAppUrl == defaultHash && document.location.href == initialHref && window['_ie_firstload']) { + currentHref = initialHref; + return; + } + if ((!flexAppUrl || flexAppUrl == defaultHash) && window['_ie_firstload']) { + newUrl = baseUrl + '#' + defaultHash; + flexAppUrl = defaultHash; + } else { + // for IE, tell the history frame to go somewhere without a '#' + // in order to get this entry into the browser history. + getHistoryFrame().src = historyFrameSourcePrefix + flexAppUrl; + } + setHash(flexAppUrl); + } else { + + //ADR + if (backStack.length == 0 && initialState.flexAppUrl == flexAppUrl) { + initialState = createState(baseUrl, newUrl, flexAppUrl); + } else if(backStack.length > 0 && backStack[backStack.length - 1].flexAppUrl == flexAppUrl) { + backStack[backStack.length - 1] = createState(baseUrl, newUrl, flexAppUrl); + } + + if (browser.safari) { + // for Safari, submit a form whose action points to the desired URL + if (browser.version <= 419.3) { + var file = window.location.pathname.toString(); + file = file.substring(file.lastIndexOf("/")+1); + getFormElement().innerHTML = '
'; + //get the current elements and add them to the form + var qs = window.location.search.substring(1); + var qs_arr = qs.split("&"); + for (var i = 0; i < qs_arr.length; i++) { + var tmp = qs_arr[i].split("="); + var elem = document.createElement("input"); + elem.type = "hidden"; + elem.name = tmp[0]; + elem.value = tmp[1]; + document.forms.historyForm.appendChild(elem); + } + document.forms.historyForm.submit(); + } else { + top.location.hash = flexAppUrl; + } + // We also have to maintain the history by hand for Safari + historyHash[history.length] = flexAppUrl; + _storeStates(); + } else { + // Otherwise, write an anchor into the page and tell the browser to go there + addAnchor(flexAppUrl); + setHash(flexAppUrl); + } + } + backStack.push(createState(baseUrl, newUrl, flexAppUrl)); + } + + function _storeStates() { + if (browser.safari) { + getRememberElement().value = historyHash.join(","); + } + } + + function handleBackButton() { + //The "current" page is always at the top of the history stack. + var current = backStack.pop(); + if (!current) { return; } + var last = backStack[backStack.length - 1]; + if (!last && backStack.length == 0){ + last = initialState; + } + forwardStack.push(current); + } + + function handleForwardButton() { + //summary: private method. Do not call this directly. + + var last = forwardStack.pop(); + if (!last) { return; } + backStack.push(last); + } + + function handleArbitraryUrl() { + //delete all the history entries + forwardStack = []; + } + + /* Called periodically to poll to see if we need to detect navigation that has occurred */ + function checkForUrlChange() { + + if (browser.ie) { + if (currentHref != document.location.href && currentHref + '#' != document.location.href) { + //This occurs when the user has navigated to a specific URL + //within the app, and didn't use browser back/forward + //IE seems to have a bug where it stops updating the URL it + //shows the end-user at this point, but programatically it + //appears to be correct. Do a full app reload to get around + //this issue. + if (browser.version < 7) { + currentHref = document.location.href; + document.location.reload(); + } else { + if (getHash() != getIframeHash()) { + // this.iframe.src = this.blankURL + hash; + var sourceToSet = historyFrameSourcePrefix + getHash(); + getHistoryFrame().src = sourceToSet; + } + } + } + } + + if (browser.safari) { + // For Safari, we have to check to see if history.length changed. + if (currentHistoryLength >= 0 && history.length != currentHistoryLength) { + //alert("did change: " + history.length + ", " + historyHash.length + "|" + historyHash[history.length] + "|>" + historyHash.join("|")); + // If it did change, then we have to look the old state up + // in our hand-maintained array since document.location.hash + // won't have changed, then call back into BrowserManager. + currentHistoryLength = history.length; + var flexAppUrl = historyHash[currentHistoryLength]; + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + _storeStates(); + } + } + if (browser.firefox) { + if (currentHref != document.location.href) { + var bsl = backStack.length; + + var urlActions = { + back: false, + forward: false, + set: false + } + + if ((window.location.hash == initialHash || window.location.href == initialHref) && (bsl == 1)) { + urlActions.back = true; + // FIXME: could this ever be a forward button? + // we can't clear it because we still need to check for forwards. Ugg. + // clearInterval(this.locationTimer); + handleBackButton(); + } + + // first check to see if we could have gone forward. We always halt on + // a no-hash item. + if (forwardStack.length > 0) { + if (forwardStack[forwardStack.length-1].flexAppUrl == getHash()) { + urlActions.forward = true; + handleForwardButton(); + } + } + + // ok, that didn't work, try someplace back in the history stack + if ((bsl >= 2) && (backStack[bsl - 2])) { + if (backStack[bsl - 2].flexAppUrl == getHash()) { + urlActions.back = true; + handleBackButton(); + } + } + + if (!urlActions.back && !urlActions.forward) { + var foundInStacks = { + back: -1, + forward: -1 + } + + for (var i = 0; i < backStack.length; i++) { + if (backStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.back = i; + } + } + for (var i = 0; i < forwardStack.length; i++) { + if (forwardStack[i].flexAppUrl == getHash() && i != (bsl - 2)) { + arbitraryUrl = true; + foundInStacks.forward = i; + } + } + handleArbitraryUrl(); + } + + // Firefox changed; do a callback into BrowserManager to tell it. + currentHref = document.location.href; + var flexAppUrl = getHash(); + if (flexAppUrl == '') { + //flexAppUrl = defaultHash; + } + //ADR: to fix multiple + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + pl[i].browserURLChange(flexAppUrl); + } + } else { + getPlayer().browserURLChange(flexAppUrl); + } + } + } + //setTimeout(checkForUrlChange, 50); + } + + /* Write an anchor into the page to legitimize it as a URL for Firefox et al. */ + function addAnchor(flexAppUrl) + { + if (document.getElementsByName(flexAppUrl).length == 0) { + getAnchorElement().innerHTML += "" + flexAppUrl + ""; + } + } + + var _initialize = function () { + if (browser.ie) + { + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + var iframe_location = (new String(s.src)).replace("history.js", "historyFrame.html"); + } + } + historyFrameSourcePrefix = iframe_location + "?"; + var src = historyFrameSourcePrefix; + + var iframe = document.createElement("iframe"); + iframe.id = 'ie_historyFrame'; + iframe.name = 'ie_historyFrame'; + //iframe.src = historyFrameSourcePrefix; + try { + document.body.appendChild(iframe); + } catch(e) { + setTimeout(function() { + document.body.appendChild(iframe); + }, 0); + } + } + + if (browser.safari) + { + var rememberDiv = document.createElement("div"); + rememberDiv.id = 'safari_rememberDiv'; + document.body.appendChild(rememberDiv); + rememberDiv.innerHTML = ''; + + var formDiv = document.createElement("div"); + formDiv.id = 'safari_formDiv'; + document.body.appendChild(formDiv); + + var reloader_content = document.createElement('div'); + reloader_content.id = 'safarireloader'; + var scripts = document.getElementsByTagName('script'); + for (var i = 0, s; s = scripts[i]; i++) { + if (s.src.indexOf("history.js") > -1) { + html = (new String(s.src)).replace(".js", ".html"); + } + } + reloader_content.innerHTML = ''; + document.body.appendChild(reloader_content); + reloader_content.style.position = 'absolute'; + reloader_content.style.left = reloader_content.style.top = '-9999px'; + iframe = reloader_content.getElementsByTagName('iframe')[0]; + + if (document.getElementById("safari_remember_field").value != "" ) { + historyHash = document.getElementById("safari_remember_field").value.split(","); + } + + } + + if (browser.firefox) + { + var anchorDiv = document.createElement("div"); + anchorDiv.id = 'firefox_anchorDiv'; + document.body.appendChild(anchorDiv); + } + + //setTimeout(checkForUrlChange, 50); + } + + return { + historyHash: historyHash, + backStack: function() { return backStack; }, + forwardStack: function() { return forwardStack }, + getPlayer: getPlayer, + initialize: function(src) { + _initialize(src); + }, + setURL: function(url) { + document.location.href = url; + }, + getURL: function() { + return document.location.href; + }, + getTitle: function() { + return document.title; + }, + setTitle: function(title) { + try { + backStack[backStack.length - 1].title = title; + } catch(e) { } + //if on safari, set the title to be the empty string. + if (browser.safari) { + if (title == "") { + try { + var tmp = window.location.href.toString(); + title = tmp.substring((tmp.lastIndexOf("/")+1), tmp.lastIndexOf("#")); + } catch(e) { + title = ""; + } + } + } + document.title = title; + }, + setDefaultURL: function(def) + { + defaultHash = def; + def = getHash(); + //trailing ? is important else an extra frame gets added to the history + //when navigating back to the first page. Alternatively could check + //in history frame navigation to compare # and ?. + if (browser.ie) + { + window['_ie_firstload'] = true; + var sourceToSet = historyFrameSourcePrefix + def; + var func = function() { + getHistoryFrame().src = sourceToSet; + window.location.replace("#" + def); + setInterval(checkForUrlChange, 50); + } + try { + func(); + } catch(e) { + window.setTimeout(function() { func(); }, 0); + } + } + + if (browser.safari) + { + currentHistoryLength = history.length; + if (historyHash.length == 0) { + historyHash[currentHistoryLength] = def; + var newloc = "#" + def; + window.location.replace(newloc); + } else { + //alert(historyHash[historyHash.length-1]); + } + //setHash(def); + setInterval(checkForUrlChange, 50); + } + + + if (browser.firefox || browser.opera) + { + var reg = new RegExp("#" + def + "$"); + if (window.location.toString().match(reg)) { + } else { + var newloc ="#" + def; + window.location.replace(newloc); + } + setInterval(checkForUrlChange, 50); + //setHash(def); + } + + }, + + /* Set the current browser URL; called from inside BrowserManager to propagate + * the application state out to the container. + */ + setBrowserURL: function(flexAppUrl, objectId) { + if (browser.ie && typeof objectId != "undefined") { + currentObjectId = objectId; + } + //fromIframe = fromIframe || false; + //fromFlex = fromFlex || false; + //alert("setBrowserURL: " + flexAppUrl); + //flexAppUrl = (flexAppUrl == "") ? defaultHash : flexAppUrl ; + + var pos = document.location.href.indexOf('#'); + var baseUrl = pos != -1 ? document.location.href.substr(0, pos) : document.location.href; + var newUrl = baseUrl + '#' + flexAppUrl; + + if (document.location.href != newUrl && document.location.href + '#' != newUrl) { + currentHref = newUrl; + addHistoryEntry(baseUrl, newUrl, flexAppUrl); + currentHistoryLength = history.length; + } + + return false; + }, + + browserURLChange: function(flexAppUrl) { + var objectId = null; + if (browser.ie && currentObjectId != null) { + objectId = currentObjectId; + } + pendingURL = ''; + + if (typeof BrowserHistory_multiple != "undefined" && BrowserHistory_multiple == true) { + var pl = getPlayers(); + for (var i = 0; i < pl.length; i++) { + try { + pl[i].browserURLChange(flexAppUrl); + } catch(e) { } + } + } else { + try { + getPlayer(objectId).browserURLChange(flexAppUrl); + } catch(e) { } + } + + currentObjectId = null; + } + + } + +})(); + +// Initialization + +// Automated unit testing and other diagnostics + +function setURL(url) +{ + document.location.href = url; +} + +function backButton() +{ + history.back(); +} + +function forwardButton() +{ + history.forward(); +} + +function goForwardOrBackInHistory(step) +{ + history.go(step); +} + +//BrowserHistoryUtils.addEvent(window, "load", function() { BrowserHistory.initialize(); }); +(function(i) { + var u =navigator.userAgent;var e=/*@cc_on!@*/false; + var st = setTimeout; + if(/webkit/i.test(u)){ + st(function(){ + var dr=document.readyState; + if(dr=="loaded"||dr=="complete"){i()} + else{st(arguments.callee,10);}},10); + } else if((/mozilla/i.test(u)&&!/(compati)/.test(u)) || (/opera/i.test(u))){ + document.addEventListener("DOMContentLoaded",i,false); + } else if(e){ + (function(){ + var t=document.createElement('doc:rdy'); + try{t.doScroll('left'); + i();t=null; + }catch(e){st(arguments.callee,0);}})(); + } else{ + window.onload=i; + } +})( function() {BrowserHistory.initialize();} ); Index: lams_flash/src/central/flex/Learner/html-template/history/historyFrame.html =================================================================== diff -u --- lams_flash/src/central/flex/Learner/html-template/history/historyFrame.html (revision 0) +++ lams_flash/src/central/flex/Learner/html-template/history/historyFrame.html (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,29 @@ + + + + + + + + Hidden frame for Browser History support. + + Index: lams_flash/src/central/flex/Learner/html-template/index.template.html =================================================================== diff -u --- lams_flash/src/central/flex/Learner/html-template/index.template.html (revision 0) +++ lams_flash/src/central/flex/Learner/html-template/index.template.html (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,121 @@ + + + + + + + + + + + + +${title} + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/html-template/playerProductInstall.swf =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/libs/blank =================================================================== diff -u --- lams_flash/src/central/flex/Learner/libs/blank (revision 0) +++ lams_flash/src/central/flex/Learner/libs/blank (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1 @@ \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/Learner.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/Learner.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/Learner.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/assets/images/application.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/src/assets/images/pencil.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/src/assets/images/tick.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/src/assets/images/user.png =================================================================== diff -u Binary files differ Index: lams_flash/src/central/flex/Learner/src/assets/styles/main.css =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/assets/styles/main.css (revision 0) +++ lams_flash/src/central/flex/Learner/src/assets/styles/main.css (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,95 @@ +/* CSS file */ +Application { + backgroundColor: #FFFFFF; + themeColor: #0087e5; +} + +Alert { + backgroundColor: #FFFFFF; + color: #000000; +} + +Panel { + borderColor: #45a6ed; + borderThicknessLeft: 1; + borderThicknessRight: 1; + borderThicknessBottom: 1; + borderAlpha: 1; + + paddingTop: 0; + paddingLeft: 0; + paddingRight: 0; + paddingBottom: 0; + + highlightAlphas: 0.67, 0; + headerColors: #45a6ed, #0087e5; + + titleStyleName: "myPanelStyle"; +} + +Panel.complexActivity { + titleStyleName: "complexActivity"; + borderColor: #D7D7D7; + borderThicknessLeft: 1; + borderThicknessRight: 1; + borderThicknessBottom: 1; + borderThicknessTop: 1; + + paddingTop: 0; + paddingLeft: 0; + paddingRight: 0; + paddingBottom: 0; + + highlightAlphas: 0.67, 0; + headerColors: #8a8a8a, #d7d7d7; + + roundedBottomCorners: false; + headerHeight: 12; + + fontFamily: Verdana; + fontSize: 10; + cornerRadius: 0; +} + +Wizard { + horizontalAlign : center; +} + +.mainBody { + backgroundColor: #FFFFFF; + paddingTop: 20; + horizontalAlign : center; +} + +Form, Label, TextInput { + color: #000000; + font-weight: normal; +} + +FormItem, List { + font-weight: bold; + text-align: left; +} + +.myPanelStyle { + color: #FFFFFF; +} + +.panelText { + color: #000000; + font-weight: none; + text-align: left; +} +.panelStatus +{ +} +.panelControlBar +{ +} +@font-face +{ + fontFamily: Alba; + fontWeight: normal; + fontStyle: normal; + src: local("Alba"); +} Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerConstants.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerConstants.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerConstants.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,18 @@ +package org.lamsfoundation.lams.business +{ + public class LearnerConstants + { + public static var BRANCHING_ACTIVITY_TYPE_ID:int = 8; + public static var DOUBLE_CLICK_DELAY:int = 150; + + public static var UNATTEMPTED_PROGRESS:String = "unattempted"; + public static var ATTEMPTING_PROGRESS:String = "attempting"; + public static var ATTEMPTED_PROGRESS:String = "attempted"; + public static var COMPLETED_PROGRESS:String = "completed"; + + public function LearnerConstants() + { + } + + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerFactory.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerFactory.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerFactory.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,17 @@ +package org.lamsfoundation.lams.business +{ + import org.lamsfoundation.lams.vos.Activity; + + public class LearnerFactory + { + public function LearnerFactory() + { + } + + public function createActivity(xml:XML):Activity{ + var activity:Activity = new Activity(); + activity.setFromXML(xml); + return activity; + } + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerManager.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerManager.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/business/LearnerManager.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,264 @@ +package org.lamsfoundation.lams.business +{ + import flash.events.Event; + import flash.events.EventDispatcher; + import flash.external.*; + import flash.net.URLRequest; + import flash.net.navigateToURL; + + import mx.collections.ArrayCollection; + + import org.lamsfoundation.lams.common.dictionary.XMLDictionaryRegistry; + import org.lamsfoundation.lams.vos.Activity; + import org.lamsfoundation.lams.vos.LearningDesign; + import org.lamsfoundation.lams.vos.Lesson; + import org.lamsfoundation.lams.vos.Progress; + + public class LearnerManager extends EventDispatcher + { + /*-.........................................Properties from FlashVars ..........................................*/ + private var _serverUrl:String; + private var _lessonID:uint; + private var _userID:uint; + + /*-.........................................Properties from service calls ..........................................*/ + private var _dictionary:XMLDictionaryRegistry; + private var _lesson:Lesson; + private var _learningDesign:LearningDesign; + private var _learningDesignXML:XMLList; + private var _progress:Progress; + + /*-......................................... Static variables ..........................................*/ + private static var withAttributes:String = "?"; + private static var and:String = "&"; + private static var learnerAction:String = "learning/learner.do"; + private static var launchActivityMethod:String = "method=forwardToLearnerActivityURL"; + + /*-.........................................Constructor..........................................*/ + public function LearnerManager(serverUrl:String, lessonID:uint, userID:uint) + { + // set initial variables + _dictionary = new XMLDictionaryRegistry(new XML()); + _serverUrl = serverUrl; + _lessonID = lessonID; + _userID = userID; + + // add external interface callbacks + ExternalInterface.addCallback("setProgressUpdate", setProgressUpdate); + ExternalInterface.addCallback("setLearningDesigns", setLearningDesign); + } + + /*-.........................................Setters and Getters..........................................*/ + [Bindable (event="serverURLChanged")] + public function get serverURL():String + { + return _serverUrl; + } + + [Bindable (event="lessonIDChanged")] + public function get lessonID():uint + { + return _lessonID; + } + + [Bindable (event="userIDChanged")] + public function get userID():uint + { + return _userID; + } + + [Bindable (event="dictionaryChanged")] + public function get dictionary():XMLDictionaryRegistry + { + return _dictionary; + } + + [Bindable (event="lessonChanged")] + public function get lesson():Lesson{ + return _lesson; + } + + [Bindable (event="learningDesignChanged")] + public function get learningDesign():LearningDesign{ + return _learningDesign; + } + + [Bindable (event="learningDesignXMLChanged")] + public function get learningDesignXML():XMLList{ + return _learningDesignXML; + } + + [Bindable (event="progressChanged")] + public function get progress():Progress{ + return _progress; + } + + /*-.........................................Methods..........................................*/ + + public function setServerURL(serverURL:String):void { + _serverUrl = serverURL; + + dispatchEvent(new Event("serverURLChanged")); + } + + public function setLessonID(lessonID:uint):void { + _lessonID = lessonID; + + dispatchEvent(new Event("lessonIDChanged")); + } + + public function setUserID(userID:uint):void { + _userID = userID; + + dispatchEvent(new Event("userIDChanged")); + } + + public function setDictionary(xml:XML):void { + _dictionary.xml = xml; + + dispatchEvent(new Event("dictionaryChanged")); + } + + public function setLesson(lesson:Object):void { + if(!_lesson){ + _lesson = new Lesson(); + } + + _lesson.setFromWDDX(lesson); + + dispatchEvent(new Event("lessonChanged")); + } + + public function setLearningDesign(learningDesign:Object):void { + if(!_learningDesign){ + _learningDesign = new LearningDesign(); + } + + _learningDesign.setFromWDDX(learningDesign); + + dispatchEvent(new Event("learningDesignChanged")); + + _learningDesignXML = constructLearningDesignXML(_learningDesign); + + dispatchEvent(new Event("learningDesignXMLChanged")); + } + + public function setProgress(progress:Object):void { + if(!_progress){ + _progress = new Progress(); + } + + _progress.setFromWDDX(progress); + + dispatchEvent(new Event("progressChanged")); + } + + public function setProgressUpdate(progress:Object):void{ + if(!_progress){ + _progress = new Progress(); + } + + _progress.setFromArgs(progress.attemptedActivities, progress.completedActivities, progress.currentActivity.activityId); + + dispatchEvent(new Event("progressChanged")); + } + + public function getLesson():Lesson{ + return _lesson; + } + + private function constructLearningDesignXML(learningDesign:LearningDesign):XMLList{ + // base of our XML + var baseXML:XML = + ; + + // make an XMLList with our base + var learningDesignXML:XMLList = new XMLList(baseXML); + + // let the XML creating begin, start it up with the first activityUIID + learningDesignXML[0].appendChild(createActivityXML(learningDesign.firstActivityUIID, learningDesign)); + + return learningDesignXML; + } + + private function createActivityXML(activityUIID:uint, learningDesign:LearningDesign):XMLList{ + var baseXML:XML; + var activityXML:XMLList; + + var activity:Object; + var childActivities:ArrayCollection = new ArrayCollection(); + var nextActivity:Object; + + // find the activity and its children + for(var i:int = 0; i < _learningDesign.activities.length; i++){ + var x:Object = _learningDesign.activities.getItemAt(i); + if(x.activityUIID == activityUIID){ + activity = x; + }else if(x.parentUIID == activityUIID){ + childActivities.addItem(x); + } + } + + // if no activity is found, return null XML + if(!activity){ + return null; + } + + // create the base activity XML + baseXML = + ; + + // create the XMLList with the base + activityXML = new XMLList(baseXML); + + // for each child activity, create some more XML and append it to the current activity's node + if(childActivities.length != 0){ + for(i = 0; i < childActivities.length; i++){ + x = childActivities.getItemAt(i); + activityXML[0].appendChild(createActivityXML(x.activityUIID, _learningDesign)); + + /* + if the activity being checked is a branch (sequence with transitions), + ignore the other children and break the loop and let the transition + loop finish up the XML creation + */ + if(uint(activity.activityTypeID) == 8){ + break; + } + } + } + + // find the next activity to the current activity and create a node for it + for(i = 0; i < _learningDesign.transitions.length; i++){ + x = _learningDesign.transitions.getItemAt(i); + if(x.fromUIID == activityUIID){ + if(x.toUIID){ + activityXML += createActivityXML(x.toUIID, _learningDesign); + } + + break; + } + } + + return activityXML; + } + + public function launchActivity(xml:XML):void{ + var activity:Activity = new Activity(); + activity.setFromXML(xml); + var url:String; + + url = serverURL + learnerAction + withAttributes + launchActivityMethod + and + + "activityID=" + String(activity.activityID) + and + + "userID=" + String(userID) + and + + "lessonID=" + String(lessonID); + + navigateToURL(new URLRequest(url), '_blank'); + } + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/descriptors/ComplexActivityDescriptor.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/descriptors/ComplexActivityDescriptor.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/descriptors/ComplexActivityDescriptor.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,55 @@ +package org.lamsfoundation.lams.descriptors +{ + import flash.events.EventDispatcher; + + import mx.collections.ArrayCollection; + import mx.collections.ICollectionView; + import mx.controls.treeClasses.ITreeDataDescriptor; + + import org.lamsfoundation.lams.events.WizardEvent; + + public class ComplexActivityDescriptor implements ITreeDataDescriptor + { + + public function ComplexActivityDescriptor() { + } + + public function getChildren(node:Object, model:Object=null):ICollectionView + { + return node.children; + } + + public function hasChildren(node:Object, model:Object=null):Boolean + { + return (node.children.length > 0); + } + + public function isBranch(node:Object, model:Object=null):Boolean + { + if(node is WorkspaceItem && node.resourceType == WorkspaceItem.RT_FOLDER) { + return true; + } + + return false; + } + + public function getData(node:Object, model:Object=null):Object + { + if(node is WorkspaceItem && node.resourceType == WorkspaceItem.RT_FOLDER) { + return {resourceID: node.resourceID, children:node.children}; + } + return null; + } + + public function addChildAt(parent:Object, newChild:Object, index:int, model:Object=null):Boolean + { + return false; + } + + public function removeChildAt(parent:Object, child:Object, index:int, model:Object=null):Boolean + { + return false; + } + + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerActivityEvent.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerActivityEvent.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerActivityEvent.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,28 @@ +package org.lamsfoundation.lams.events +{ + import flash.events.Event; + + import org.lamsfoundation.lams.vos.Activity; + + public class LearnerActivityEvent extends Event + { + /*-.........................................Constants..........................................*/ + + public static const LAUNCH_ACTIVITY:String = "launchActivity"; + + /*-.........................................Properties..........................................*/ + + public var activity:Activity; + public var activityID:uint; + public var lessonID:uint; + public var userID:uint; + + /*-.........................................Constructor..........................................*/ + + public function LearnerActivityEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=true) + { + super(type, bubbles, cancelable); + } + + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerActivityMouseEvent.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerActivityMouseEvent.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerActivityMouseEvent.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,28 @@ +package org.lamsfoundation.lams.events +{ + import flash.events.Event; + import flash.events.MouseEvent; + + import mx.events.ListEvent; + + public class LearnerActivityMouseEvent extends Event + { + /*-.........................................Constants..........................................*/ + + public static const SIMPLE_ACTIVITY_CLICK:String = "simpleActivityClick"; + public static const SIMPLE_ACTIVITY_DOUBLE_CLICK:String = "simpleActivityDoubleClick"; + public static const COMPLEX_ACTIVITY_CLICK:String = "complexActivityClick"; + public static const COMPLEX_ACTIVITY_DOUBLE_CLICK:String = "complexActivityDoubleClick"; + public static const COMPLEX_ACTIVITY_ITEM_CLICK:String = "complexActivityItemClick"; + public static const COMPLEX_ACTIVITY_ITEM_DOUBLE_CLICK:String = "complexActivityItemDoubleClick"; + + public var mouseEvent:MouseEvent; + public var listEvent:ListEvent; + + public function LearnerActivityMouseEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=true) + { + super(type, bubbles, cancelable); + } + + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerErrorEvent.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerErrorEvent.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerErrorEvent.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,22 @@ +package org.lamsfoundation.lams.events +{ + import flash.events.Event; + + public class LearnerErrorEvent extends Event + { + /*-.........................................Constants..........................................*/ + + public static const SHOW_ERROR:String = "showErrorEvent"; + + + /*-.........................................Properties..........................................*/ + public var message:String; + /*-.........................................Constructor..........................................*/ + + public function LearnerErrorEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) + { + super(type, bubbles, cancelable); + } + + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerEvent.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerEvent.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/events/LearnerEvent.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,34 @@ +package org.lamsfoundation.lams.events +{ + import flash.events.Event; + + import mx.collections.ArrayCollection; + import mx.core.Application; + + import org.lamsfoundation.lams.vos.Lesson; + + public class LearnerEvent extends Event + { + /*-.........................................Constants..........................................*/ + + public static const GET_LESSON:String = "getLessonEvent"; + public static const JOIN_LESSON:String = "joinLessonEvent"; + public static const RESUME_LESSON:String = "resumeLessonEvent"; + public static const EXIT_LESSON:String = "exitLessonEvent"; + public static const GET_FLASH_PROGRESS:String = "getFlashProgressEvent"; + public static const GET_LEARNING_DESIGN_DETAILS:String = "getLearningDesignDetailsEvent"; + + /*-.........................................Properties..........................................*/ + + public var lessonID:uint; + public var lesson:Lesson; + + /*-.........................................Constructor..........................................*/ + + public function LearnerEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) + { + super(type, bubbles, cancelable); + } + + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityIconCanvas.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityIconCanvas.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityIconCanvas.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityItemRenderer.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityItemRenderer.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityItemRenderer.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,115 @@ + + + + + 0); + + // check if branching activity + isBranchingActivity = (data.Activity.activityTypeID == LearnerConstants.BRANCHING_ACTIVITY_TYPE_ID); + + // instantiate the item renderer for the first time + onDataChanged(event); + } + } + + private function addListeners():void{ + // add listeners + addEventListener(FlexEvent.DATA_CHANGE, onDataChanged); + simpleActivityState.addEventListener(LearnerActivityMouseEvent.SIMPLE_ACTIVITY_CLICK, onSimpleActivityClick); + complexActivityState.addEventListener(LearnerActivityMouseEvent.COMPLEX_ACTIVITY_CLICK, onComplexActivityClick); + complexActivityState.addEventListener(LearnerActivityMouseEvent.COMPLEX_ACTIVITY_DOUBLE_CLICK, onComplexActivityDoubleClick); + complexActivityState.addEventListener(LearnerActivityMouseEvent.COMPLEX_ACTIVITY_ITEM_CLICK, onComplexActivityItemClick); + complexActivityState.addEventListener(LearnerActivityMouseEvent.COMPLEX_ACTIVITY_ITEM_DOUBLE_CLICK, onComplexActivityItemDoubleClick); + } + + private function setDefaultState():void{ + var childActivities:XMLList = data.Activity; + if(childActivities.length() == 0){ + activityViewStack.selectedChild = simpleActivityState; + }else{ + activityViewStack.selectedChild = complexActivityState; + } + } + + private function switchState(event:MouseEvent):void{ + if(activityViewStack.selectedChild == simpleActivityState){ + if(isComplexActivity){ + activityViewStack.selectedChild = complexActivityState; + } + } + else if(activityViewStack.selectedChild == complexActivityState){ + if(!(event.target.parent is TreeItemRenderer)){ + activityViewStack.selectedChild = simpleActivityState; + } + } + } + + private function onDataChanged(event:FlexEvent):void{ + + } + + private function onSimpleActivityClick(event:LearnerActivityMouseEvent):void{ + switchState(event.mouseEvent); + } + + private function onSimpleActivityDoubleClick(event:LearnerActivityMouseEvent):void{ + var learnerActivityEvent:LearnerActivityEvent = new LearnerActivityEvent(LearnerActivityEvent.LAUNCH_ACTIVITY); + learnerActivityEvent.activity = new Activity(); + learnerActivityEvent.activity.setFromXML(event.mouseEvent.currentTarget.data); + dispatchEvent(new LearnerActivityEvent(LearnerActivityEvent.LAUNCH_ACTIVITY)); + } + + private function onComplexActivityClick(event:LearnerActivityMouseEvent):void{ + switchState(event.mouseEvent); + } + + private function onComplexActivityDoubleClick(event:LearnerActivityMouseEvent):void{ + dispatchEvent(new LearnerActivityEvent(LearnerActivityEvent.LAUNCH_ACTIVITY)); + } + + private function onComplexActivityItemClick(event:LearnerActivityMouseEvent):void{ + + } + + private function onComplexActivityItemDoubleClick(event:LearnerActivityMouseEvent):void{ + dispatchEvent(new LearnerActivityEvent(LearnerActivityEvent.LAUNCH_ACTIVITY)); + } + ]]> + + + + + + + + + + + \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityListItemRenderer.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityListItemRenderer.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ActivityListItemRenderer.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,13 @@ + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/BranchingActivityState.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/BranchingActivityState.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/BranchingActivityState.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,25 @@ + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ComplexActivityState.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ComplexActivityState.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ComplexActivityState.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,94 @@ + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ComplexActivityTreeItemRenderer.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ComplexActivityTreeItemRenderer.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/ComplexActivityTreeItemRenderer.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,70 @@ +package org.lamsfoundation.lams.itemRenderers +{ + import mx.controls.treeClasses.TreeItemRenderer; + import mx.core.Container; + import mx.core.IFactory; + import mx.events.FlexEvent; + + import org.lamsfoundation.lams.business.LearnerConstants; + + public class ComplexActivityTreeItemRenderer extends TreeItemRenderer implements IFactory + { + private var activityIconCanvas:ActivityIconCanvas; + + public function ComplexActivityTreeItemRenderer() + { + super(); + addListeners(); + activityIconCanvas = new ActivityIconCanvas(); + addChild(activityIconCanvas); + } + + public function newInstance():* { + return new ComplexActivityTreeItemRenderer(); + } + + private function addListeners():void{ + addEventListener(FlexEvent.DATA_CHANGE, onDataChange); + } + + private function onDataChange(event:FlexEvent):void{ + setProgressImage(); + } + + private function setProgressImage(state:Container = null):void{ + if(activityIconCanvas.progressImage){ + if(state){ + activityIconCanvas.progressImage.selectedChild = state; + } + else{ + if(data){ + if(data.@activityProgress == LearnerConstants.UNATTEMPTED_PROGRESS){ + activityIconCanvas.progressImage.selectedChild = activityIconCanvas.unattemptedState; + }else if(data.@activityProgress == LearnerConstants.ATTEMPTING_PROGRESS){ + activityIconCanvas.progressImage.selectedChild = activityIconCanvas.attemptedState; + }else if(data.@activityProgress == LearnerConstants.ATTEMPTED_PROGRESS){ + activityIconCanvas.progressImage.selectedChild = activityIconCanvas.attemptedState; + }else if(data.@activityProgress == LearnerConstants.COMPLETED_PROGRESS){ + activityIconCanvas.progressImage.selectedChild = activityIconCanvas.completedState; + } + } + + } + } + } + + override protected function updateDisplayList(w:Number, h:Number):void { + super.updateDisplayList(w, h); + + // position the icon + if (activityIconCanvas.parent == this) { + if (icon) { + activityIconCanvas.x = icon.x - 1; + } else if (label) { + activityIconCanvas.x = label.x - activityIconCanvas.width - 1; + } + } + } + + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/SimpleActivityState.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/SimpleActivityState.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/itemRenderers/SimpleActivityState.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,91 @@ + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/maps/MainEventMap.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/maps/MainEventMap.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/maps/MainEventMap.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/maps/ModelMap.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/maps/ModelMap.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/maps/ModelMap.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/HeaderView.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/HeaderView.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/HeaderView.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,12 @@ + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/LearningDesignView.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/LearningDesignView.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/LearningDesignView.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,143 @@ + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/MainView.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/MainView.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/MainView.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/ScratchpadView.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/ScratchpadView.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/ScratchpadView.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,5 @@ + + + + + Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/SupportActivitiesView.mxml =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/SupportActivitiesView.mxml (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/views/SupportActivitiesView.mxml (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,4 @@ + + + + \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Activity.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Activity.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Activity.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,36 @@ +package org.lamsfoundation.lams.vos +{ + import mx.collections.ArrayCollection; + + [Bindable] + public class Activity + { + public var activityID:uint; + public var activityTitle:String; + public var activityTypeID:uint; + public var activityUIID:uint; + public var activityChildren:ArrayCollection; + + public function Activity() { + + } + + public function setFromArgs(myActivityID:uint, myActivityTitle:String, myActivityTypeID:uint, myActivityUIID:uint):void{ + activityID = myActivityID; + activityTitle = myActivityTitle + activityTypeID = myActivityTypeID; + activityUIID = myActivityUIID; + } + + public function setFromXML(xml:XML):void{ + activityID = xml.@activityID; + activityTitle = xml.@activityTitle + activityTypeID = xml.@activityTypeID; + activityUIID = xml.@activityUIID; + } + + public function setFromWDDX(WDDXObject:Object):void{ + + } + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/LearningDesign.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/LearningDesign.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/LearningDesign.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,62 @@ +package org.lamsfoundation.lams.vos +{ + import mx.collections.ArrayCollection; + + [Bindable] + public class LearningDesign + { + public var activities:ArrayCollection; + public var branchMappings:ArrayCollection; + public var competences:ArrayCollection; + public var contentFolderID:String; + public var copyTypeID:uint; + public var createDateTime:Date; + public var designVersion:uint; + public var editOverrideLock:Boolean; + public var firstActivityID:uint; + public var firstActivityUIID:uint; + public var floatingActivityID:uint; + public var groupings:ArrayCollection; + public var lastModifiedDateTime:Date; + public var learningDesignID:uint; + public var maxID:uint; + public var originalLearningDesignID:uint; + public var readOnly:Boolean; + public var title:String; + public var transitions:ArrayCollection; + public var userID:uint; + public var validDesign:Boolean; + public var version:String; + public var workspaceFolderID:uint; + + public function LearningDesign() { + + } + + public function setFromWDDX(WDDXObject:Object):void{ + activities = WDDXObject.activities; + branchMappings = WDDXObject.branchMappings; + competences = WDDXObject.competences; + contentFolderID = WDDXObject.contentFolderID; + copyTypeID = WDDXObject.copyTypeID; + createDateTime = new Date(WDDXObject.createDateTime); + designVersion = WDDXObject.designVersion; + editOverrideLock = WDDXObject.editOverrideLock; + firstActivityID = WDDXObject.firstActivityID; + firstActivityUIID = WDDXObject.firstActivityUIID; + floatingActivityID = WDDXObject.floatingActivityID; + groupings = WDDXObject.groupings; + lastModifiedDateTime = new Date(WDDXObject.lastModifiedDateTime); + learningDesignID = WDDXObject.learningDesignID; + maxID = WDDXObject.maxID; + originalLearningDesignID = WDDXObject.originalLearningDesignID; + readOnly = WDDXObject.readOnly; + title = WDDXObject.title; + transitions = WDDXObject.transitions; + userID = WDDXObject.userID; + validDesign = WDDXObject.validDesign; + version = WDDXObject.version; + workspaceFolderID = WDDXObject.workspaceFolderID; + } + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Lesson.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Lesson.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Lesson.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,38 @@ +package org.lamsfoundation.lams.vos +{ + import org.lamsfoundation.lams.common.util.WDDXParser; + + [Bindable] + public class Lesson + { + public var createDateTime:Date; + public var createDateTimeString:String; + public var learnerExportAvailable:Boolean; + public var learnerImAvailable:Boolean; + public var learnerPresenceAvailable:Boolean; + public var learningDesignID:uint; + public var lessonID:uint; + public var lessonName:String; + public var lessonStateID:uint; + public var organisationID:uint; + public var startDateTime:Date; + + public function Lesson() { + + } + + public function setFromWDDX(WDDXObject:Object):void{ + createDateTime = new Date(WDDXObject.createDateTime); + createDateTimeString = WDDXObject.createDateTimeString; + learnerExportAvailable = WDDXObject.learnerExportAvailable; + learnerImAvailable = WDDXObject.learnerImAvailable; + learnerPresenceAvailable = WDDXObject.learnerPresenceAvailable; + learningDesignID = WDDXObject.learningDesignID; + lessonID = WDDXObject.lessonID; + lessonName = WDDXObject.lessonName; + lessonStateID = WDDXObject.lessonStateID; + organisationID = WDDXObject.organisationID; + startDateTime = new Date(WDDXObject.startDateTime); + } + } +} \ No newline at end of file Index: lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Progress.as =================================================================== diff -u --- lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Progress.as (revision 0) +++ lams_flash/src/central/flex/Learner/src/org/lamsfoundation/lams/vos/Progress.as (revision 4e04f46f00d744671af8d40cd4b2c66b3dc7d531) @@ -0,0 +1,42 @@ +package org.lamsfoundation.lams.vos +{ + import mx.collections.ArrayCollection; + + [Bindable] + public class Progress + { + public var attemptedActivities:ArrayCollection; + public var completedActivities:ArrayCollection; + public var currentActivityId:uint; + public var firstName:String; + public var lastName:String; + public var learnerID:uint; + public var lessonComplete:Boolean; + public var lessonID:uint; + public var lessonName:String; + public var userName:String; + + public function Progress() { + + } + + public function setFromArgs(myAttemptedActivities:ArrayCollection, myCompletedActivities:ArrayCollection, myCurrentActivityId:uint):void{ + attemptedActivities = myAttemptedActivities; + completedActivities = myCompletedActivities; + currentActivityId = myCurrentActivityId; + } + + public function setFromWDDX(WDDXObject:Object):void{ + attemptedActivities = WDDXObject.attemptedActivities; + completedActivities = WDDXObject.completedActivities; + currentActivityId = WDDXObject.currentActivityId; + firstName = WDDXObject.firstName; + lastName = WDDXObject.lastName; + learnerID = WDDXObject.learnerId; + lessonComplete = WDDXObject.lessonComplete; + lessonID = WDDXObject.lessonId; + lessonName = WDDXObject.lessonName; + userName = WDDXObject.userName; + } + } +} \ No newline at end of file