Continuo migrazione...

This commit is contained in:
Samuele Locatelli
2024-09-04 15:28:52 +02:00
parent 5722ad4167
commit 109a16070f
987 changed files with 77 additions and 69662 deletions
+2 -1
View File
@@ -16,8 +16,9 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.14" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="StackExchange.Redis" Version="2.7.27" />
<PackageReference Include="StackExchange.Redis" Version="2.8.12" />
<PackageReference Include="StackExchange.Redis.Extensions.AspNetCore" Version="9.1.0" />
<PackageReference Include="StackExchange.Redis.Extensions.Core" Version="9.1.0" />
<PackageReference Include="StackExchange.Redis.Extensions.Newtonsoft" Version="9.1.0" />
+1 -1
View File
@@ -29,7 +29,7 @@
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.14" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GPW.CORE.Data\GPW.CORE.Data.csproj" />
+4 -2
View File
@@ -7,13 +7,15 @@
<ItemGroup>
<PackageReference Include="EgwCoreLib.Utils" Version="1.5.2408.2710" />
<PackageReference Include="MailKit" Version="3.5.0" />
<PackageReference Include="NLog" Version="5.2.2" />
<PackageReference Include="StackExchange.Redis" Version="2.7.27" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.64.0" />
<PackageReference Include="NLog" Version="5.3.3" />
<PackageReference Include="StackExchange.Redis" Version="2.8.12" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.8" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.0" />
</ItemGroup>
</Project>
+3 -3
View File
@@ -71,14 +71,14 @@ namespace GPW.CORE.Data
{
if (!optionsBuilder.IsConfigured)
{
string connString = _configuration.GetConnectionString("GPW.DB");
string connString = _configuration.GetConnectionString("GPW.DB") ?? "Server=W2019-SQL-STEAM; Database=GPW; Trusted_Connection=True; TrustServerCertificate=True;";
if (!string.IsNullOrEmpty(connString))
{
optionsBuilder.UseSqlServer(connString);
}
else
{
optionsBuilder.UseSqlServer("Server=SQLSTEAM;Database=GPW;Trusted_Connection=True;");
optionsBuilder.UseSqlServer("Server=W2019-SQL-STEAM; Database=GPW; Trusted_Connection=True; TrustServerCertificate=True;");
}
}
}
@@ -890,7 +890,7 @@ namespace GPW.CORE.Data
modelBuilder.Entity<TeRaExplModel>(entity =>
{
entity.HasKey(e => new { e.DataLav, e.IdxDipendente});
entity.HasKey(e => new { e.DataLav, e.IdxDipendente });
});
+10 -11
View File
@@ -19,13 +19,13 @@ namespace GPW.CORE.Smart.Data
/// </summary>
/// <param name="configuration"></param>
/// <param name="logger"></param>
/// <param name="distributedCache"></param>
/// <param name="redisConnMult"></param>
public LicenseService(IConfiguration configuration, ILogger<LicenseService> logger, IConnectionMultiplexer redisConnMult)
{
_logger = logger;
_configuration = configuration;
// Conf cache
redisConn = redisConnMult;// ConnectionMultiplexer.Connect(_configuration.GetConnectionString("Redis"));
redisConn = redisConnMult;
redisDb = this.redisConn.GetDatabase();
}
@@ -39,12 +39,10 @@ namespace GPW.CORE.Smart.Data
#region Public Properties
public LiManObj.ApplicativoDTO AppLicense { get; set; } = new LiManObj.ApplicativoDTO();
public List<LiManObj.AttivazioneDTO> ActivList { get; set; } = new List<LiManObj.AttivazioneDTO>();
public List<AnagKeyValueModel> AKVList { get; set; } = new List<AnagKeyValueModel>();
public string Applicazione { get; set; } = "";
public LiManObj.ApplicativoDTO AppLicense { get; set; } = new LiManObj.ApplicativoDTO();
public bool HasActivData
{
@@ -64,6 +62,7 @@ namespace GPW.CORE.Smart.Data
ActivList = await ActivListCache();
});
pUpd.Wait();
answ = ActivList != null && ActivList.Count > 0;
}
}
return answ;
@@ -228,15 +227,16 @@ namespace GPW.CORE.Smart.Data
#region Protected Fields
/// <summary>
/// Chiave redis x info licenza
/// </summary>
protected const string rKeyLic = "LongCache:LicData";
/// <summary>
/// Chiave redis x attivazioni della licenza
/// </summary>
protected const string rKeyAttByLic = "LongCache:AttByLic";
/// <summary>
/// Chiave redis x info licenza
/// </summary>
protected const string rKeyLic = "LongCache:LicData";
protected Random rnd = new Random();
#endregion Protected Fields
@@ -361,9 +361,8 @@ namespace GPW.CORE.Smart.Data
return await Task.FromResult(answ);
}
/// <summary>
/// Dati Applicativo
/// Dati Applicativo
/// </summary>
private async Task<LiManObj.ApplicativoDTO?> OnlineApplicationData()
{
+47
View File
@@ -0,0 +1,47 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31912.275
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPW.CORE.Data", "GPW.CORE.Data\GPW.CORE.Data.csproj", "{718B275D-7573-4CE2-87AF-57FCAAD71BD8}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPW.CORE.Api", "GPW.CORE.Api\GPW.CORE.Api.csproj", "{5204CC6B-88E2-4EFB-9DC8-2C74F32991D0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{845EC4A6-7460-4897-8571-494E0EBB617E}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPW.CORE.Comp", "GPW.CORE.Comp\GPW.CORE.Comp.csproj", "{E136D2E5-8D8D-4319-AFC4-132A5136EB3B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPW.CORE.WRKLOG.old", "GPW.CORE.WRKLOG.old\GPW.CORE.WRKLOG.old.csproj", "{BA852591-B6E1-4072-894F-2494603A4381}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{718B275D-7573-4CE2-87AF-57FCAAD71BD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{718B275D-7573-4CE2-87AF-57FCAAD71BD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{718B275D-7573-4CE2-87AF-57FCAAD71BD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{718B275D-7573-4CE2-87AF-57FCAAD71BD8}.Release|Any CPU.Build.0 = Release|Any CPU
{5204CC6B-88E2-4EFB-9DC8-2C74F32991D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5204CC6B-88E2-4EFB-9DC8-2C74F32991D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5204CC6B-88E2-4EFB-9DC8-2C74F32991D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5204CC6B-88E2-4EFB-9DC8-2C74F32991D0}.Release|Any CPU.Build.0 = Release|Any CPU
{E136D2E5-8D8D-4319-AFC4-132A5136EB3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E136D2E5-8D8D-4319-AFC4-132A5136EB3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E136D2E5-8D8D-4319-AFC4-132A5136EB3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E136D2E5-8D8D-4319-AFC4-132A5136EB3B}.Release|Any CPU.Build.0 = Release|Any CPU
{BA852591-B6E1-4072-894F-2494603A4381}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA852591-B6E1-4072-894F-2494603A4381}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA852591-B6E1-4072-894F-2494603A4381}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA852591-B6E1-4072-894F-2494603A4381}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AE057165-54C4-4678-8617-A03F0E8F6495}
EndGlobalSection
EndGlobal
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>3.0.2408.2717</Version>
<Version>3.0.2409.0411</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
@@ -26,14 +26,14 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="BlazorCalendar" Version="2.5.3" />
<PackageReference Include="EgwCoreLib.Razor" Version="1.5.2402.2411" />
<PackageReference Include="EgwCoreLib.Razor" Version="1.5.2408.2710" />
<PackageReference Include="EgwCoreLib.Utils" Version="1.5.2408.2710" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="6.0.14" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.14" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NLog" Version="5.2.2" />
<PackageReference Include="NLog" Version="5.3.3" />
<PackageReference Include="RestSharp" Version="108.0.3" />
<PackageReference Include="StackExchange.Redis" Version="2.7.27" />
<PackageReference Include="StackExchange.Redis" Version="2.8.12" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GPW.CORE.Data\GPW.CORE.Data.csproj" />
+1
View File
@@ -1,4 +1,5 @@
@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Authorization
@using Microsoft.AspNetCore.Components.Authorization
@using Microsoft.AspNetCore.Components.Forms
@@ -1,244 +0,0 @@
il.LearningModule = {
save_url: '',
toc_refresh_url: '',
init_frame: {},
last_frame_url: {},
all_targets: ["center_bottom", "right", "right_top", "right_bottom"],
rating_url: '',
close_html: '',
setSaveUrl: function (url) {
il.LearningModule.save_url = url;
},
setTocRefreshUrl: function (url) {
il.LearningModule.toc_refresh_url = url;
},
setCloseHTML: function (html) {
il.LearningModule.close_html = html;
},
showContentFrame: function (e, target) {
var href = e.target.href;
$('body').trigger('il-lm-show-' + target + '-slate');
console.log('il-lm-show-' + target + '-slate');
if (!href) {
href = $(e.target).parents("[href]").attr("href");
}
if (href != "") {
return il.LearningModule.loadContentFrame(href, target);
}
},
initContentFrame: function (href, target) {
il.LearningModule.init_frame[target] = href;
},
setLastFrameUrl: function (href, target) {
il.LearningModule.last_frame_url[target] = href;
},
openInitFrames: function () {
var i, t;
for (i = 0; i < il.LearningModule.all_targets.length; i++) {
t = il.LearningModule.all_targets[i];
if (il.LearningModule.init_frame[t]) {
il.LearningModule.loadContentFrame(il.LearningModule.init_frame[t], t);
} else if (il.LearningModule.last_frame_url[t]) {
il.LearningModule.loadContentFrame(il.LearningModule.last_frame_url[t], t);
}
}
il.LearningModule.refreshLayout();
},
refreshLayout: function () {
var e;
// fix right content area
if ($("#right_top_area > iframe").attr("src") &&
$("#right_bottom_area > iframe").attr("src")) {
$("#right_cont_area").addClass("ilRightContAreaSplit");
//console.log("splitting");
} else {
$("#right_cont_area").removeClass("ilRightContAreaSplit");
//console.log("unsplitting");
}
if (!$("#right_top_area > iframe").attr("src") &&
!$("#right_bottom_area > iframe").attr("src")) {
$("#right_cont_area").remove();
}
// adapt main content
e = $("#left_nav");
if (e.length != 0) {
$("#fixed_content").addClass("ilLeftNavSpace");
} else {
$("#fixed_content").removeClass("ilLeftNavSpace");
}
e = $("#right_area, #right_cont_area");
if (e.length != 0) {
$("#fixed_content").addClass("ilRightAreaSpace");
} else {
$("#fixed_content").removeClass("ilRightAreaSpace");
}
},
loadContentFrame: function (href, t) {
var area, el_id = t + "_area";
var doc;
doc = (window.top != window.self)
? window.parent.document : document;
console.log(el_id);
console.log(href);
$("#" + el_id).parent().css("height", "100%"); // workaround for slate height
$("#" + el_id + " > iframe", doc).attr("src", href);
return false;
//console.log("LoadContentFrame:" + href + ":" + t +":");
// exception we should get rid off
if (t == "center_bottom") {
el_id = "bot_center_area";
}
if (t != "right_top" && t != "right_bottom") {
area = $("#" + el_id, doc);
if (area.length == 0) {
$('body').append('<div id="' + el_id + '"><div id="' + el_id + '_drag"></div><button class="btn btn-link ilAreaClose">' + il.LearningModule.close_html + '</button><iframe /></div>');
}
} else {
//check right area existence
area = $("#right_cont_area", doc);
if (area.length == 0) {
$('body').append('<div id="right_cont_area"><div id="right_area_drag"></div></div>');
}
// append right top and right bottom areas
area = $("#right_top_area", doc);
if (area.length == 0) {
$('#right_cont_area').append('<div id="right_top_area"><div id="right_top_drag"></div><button class="btn btn-link ilAreaClose">' + il.LearningModule.close_html + '</button><iframe /></div>');
}
area = $("#right_bottom_area", doc);
if (area.length == 0) {
$('#right_cont_area').append('<div id="right_bottom_area"><div id="right_bottom_drag"></div><button class="btn btn-link ilAreaClose">' + il.LearningModule.close_html + '</button><iframe /></div>');
}
}
$("#" + el_id + " button.ilAreaClose", doc).click(function () {
il.LearningModule.closeContentFrame(t);
});
$("#" + el_id + " > iframe", doc).attr("src", href);
$("#" + el_id, doc).css("display", "block");
il.UICore.initLayoutDrag();
il.LearningModule.refreshLayout();
il.UICore.refreshLayout();
if (il.LearningModule.save_url != '') {
il.Util.sendAjaxGetRequestToUrl(il.LearningModule.save_url + "&target=" + t + "&url=" + encodeURIComponent(href),
{}, {}, il.LearningModule.handleSuccess);
}
return false;
},
handleSuccess: function (o) {
//
},
closeContentFrame: function (t) {
var el_id = t + "_area";
// exception we should get rid off
if (t == "center_bottom") {
el_id = "bot_center_area";
}
//alert("close!");
$("#" + el_id).remove();
il.LearningModule.refreshLayout();
il.UICore.refreshLayout();
if (il.LearningModule.save_url != '') {
il.Util.sendAjaxGetRequestToUrl(il.LearningModule.save_url + "&target=" + t + "&url=",
{}, {}, il.LearningModule.handleSuccess);
}
},
setRatingUrl: function (url) {
this.rating_url = url;
},
saveRating: function (rating) {
$.ajax({
url: this.rating_url,
dataType: 'text',
type: 'POST',
data: {
rating: rating
}
}).done(function(data) {
$('#ilrtrpg').html(data);
});
},
processAnswer: function(questions) {
var correct = true, has_questions = false;
for (var i in questions.answers) {
has_questions = true;
if (!questions.answers[i].passed) {
correct = false;
}
}
//if (has_questions && correct) {
if (ilias.questions.determineSuccessStatus() == "passed") {
$(".ilc_page_rnav_RightNavigation").removeClass("ilNoDisplay");
//if (il.LearningModule.toc_refresh_url != "" && $("#left_nav")) {
// il.Util.ajaxReplaceInner(il.LearningModule.toc_refresh_url, "left_nav");
//}
}
},
refreshToc: function() {
if (ilias.questions.determineSuccessStatus() == "passed") {
if (il.LearningModule.toc_refresh_url != "" && $("#il_expl2_jstree_cont_out_ilLMProgressTree")) {
il.Util.ajaxReplace(il.LearningModule.toc_refresh_url, "il_expl2_jstree_cont_out_ilLMProgressTree");
}
}
},
openMenuLink: function(url) {
window.open(url, '_blank');
}
};
$(function() {
$('body').focus();
il.LearningModule.refreshLayout();
if (typeof ilCOPageQuestionHandler != "undefined") {
ilCOPageQuestionHandler.setSuccessHandler(il.LearningModule.refreshToc);
}
$(document).keydown(function(e) {
if (e.target.tagName != "TEXTAREA" &&
e.target.tagName != "INPUT") {
/* deactivated due to #28962
// right
if (e.keyCode == 39) {
var a = $('.ilc_page_rnavlink_RightNavigationLink').first().attr('href');
if (a) {
top.location.href = a;
}
return false;
}
// left
if (e.keyCode == 37) {
var a = $('.ilc_page_lnavlink_LeftNavigationLink').first().attr('href');
if (a) {
top.location.href = a;
}
return false;
}*/
return true;
}
})});
@@ -1,861 +0,0 @@
/*!
PURE Unobtrusive Rendering Engine for HTML
Licensed under the MIT licenses.
More information at: http://www.opensource.org
Copyright (c) 2013 Michael Cvilic - BeeBole.com
Thanks to Rog Peppe for the functional JS jump
revision: 2.83
*/
var $p = function(){
var args = arguments,
sel = args[0],
ctxt = false;
if(typeof sel === 'string'){
ctxt = args[1] || false;
}else if(sel && !sel[0] && !sel.length){
sel = [sel];
}
return $p.core(sel, ctxt);
},
pure = $p;
$p.core = function(sel, ctxt, plugins){
//get an instance of the plugins
var templates = [], i, ii,
// set the signature string that will be replaced at render time
Sig = '_s' + Math.floor( Math.random() * 1000000 ) + '_',
// another signature to prepend to attributes and avoid checks: style, height, on[events]...
attPfx = '_a' + Math.floor( Math.random() * 1000000 ) + '_',
// rx to parse selectors, e.g. "+tr.foo[class]"
selRx = /^(\+)?([^\@\+]+)?\@?([^\+]+)?(\+)?$/,
// set automatically attributes for some tags
autoAttr = {
IMG:'src',
INPUT:'value'
},
// check if the argument is an array - thanks salty-horse (Ori Avtalion)
isArray = Array.isArray ?
function(o) {
return Array.isArray(o);
} :
function(o) {
return Object.prototype.toString.call(o) === "[object Array]";
};
plugins = plugins || getPlugins();
//search for the template node(s)
switch(typeof sel){
case 'string':
templates = plugins.find(ctxt || document, sel);
if(templates.length === 0) {
error('The template "' + sel + '" was not found');
}
break;
case 'undefined':
error('The root of the template is undefined, check your selector');
break;
default:
templates = sel;
}
for( i = 0, ii = templates.length; i < ii; i++){
plugins[i] = templates[i];
}
plugins.length = ii;
/* * * * * * * * * * * * * * * * * * * * * * * * * *
core functions
* * * * * * * * * * * * * * * * * * * * * * * * * */
// error utility
function error(e){
if(typeof console !== 'undefined'){
console.log(e);
//debugger;
}
throw('pure error: ' + e);
}
//return a new instance of plugins
function getPlugins(){
var plugins = $p.plugins,
f = function(){};
f.prototype = plugins;
// do not overwrite functions if external definition
f.prototype.compile = plugins.compile || compile;
f.prototype.render = plugins.render || render;
f.prototype.autoRender = plugins.autoRender || autoRender;
f.prototype.find = plugins.find || find;
// give the compiler and the error handling to the plugin context
f.prototype._compiler = compiler;
f.prototype._error = error;
return new f();
}
// returns the outer HTML of a node
function outerHTML(node){
// if IE, Chrome take the internal method otherwise build one
return node.outerHTML || (
function(n){
var div = document.createElement('div'), h;
div.appendChild( n.cloneNode(true) );
h = div.innerHTML;
div = null;
return h;
}(node));
}
// returns the string generator function
function wrapquote(qfn, f){
return function(ctxt){
return qfn( String( f.call(ctxt.item || ctxt.context, ctxt) ) ) ;
};
}
// default find using querySelector when available on the browser
function find(n, sel){
if(typeof n === 'string'){
sel = n;
n = false;
}
return (n||document).querySelectorAll( sel );
}
// create a function that concatenates constant string
// sections (given in parts) and the results of called
// functions to fill in the gaps between parts (fns).
// fns[n] fills in the gap between parts[n-1] and parts[n];
// fns[0] is unused.
// this is the inner template evaluation loop.
function concatenator(parts, fns){
return function(ctxt){
var strs = [ parts[ 0 ] ],
n = parts.length,
fnVal, pVal, attLine, pos, i;
try{
for(i = 1; i < n; i++){
fnVal = fns[i].call( this, ctxt );
pVal = parts[i];
// if the value is empty and attribute, remove it
if(fnVal === ''){
attLine = strs[ strs.length - 1 ];
if( ( pos = attLine.search( /[^\s]+=\"?$/ ) ) > -1){
strs[ strs.length - 1 ] = attLine.substring( 0, pos );
pVal = pVal.substr( 1 );
}
}
strs[ strs.length ] = fnVal;
strs[ strs.length ] = pVal;
}
return strs.join('');
}catch(e){
if(console && console.log){
console.log(
e.stack ||
e.message + ' (' + e.type + ( e['arguments'] ? ', ' + e['arguments'].join('-') : '' ) + '). Use Firefox or Chromium/Chrome to get a full stack of the error. ' );
}
return '';
}
};
}
// parse and check the loop directive
function parseloopspec(p){
var m = p.match( /^(\w+)\s*<-\s*(\S+)?$/ );
if(m === null){
error('bad loop spec: "' + p + '"');
}
if(m[1] === 'item'){
error('"item<-..." is a reserved word for the current running iteration.\n\nPlease choose another name for your loop.');
}
if( !m[2] || m[2].toLowerCase() === 'context' ){ //undefined or space(IE)
m[2] = function(ctxt){return ctxt.context;};
}else if( (m[2] && m[2].indexOf('context') === 0 ) ){ //undefined or space(IE)
m[2] = dataselectfn( m[2].replace(/^context\.?/, '') );
}
return {name: m[1], sel: m[2]};
}
// parse a data selector and return a function that
// can traverse the data accordingly, given a context.
function dataselectfn (sel){
if( typeof(sel) === 'function' ){
//handle false values in function directive
return function ( ctxt ){
var r = sel.call( ctxt.item || ctxt.context || ctxt, ctxt );
return !r && r !== 0 ? '' : r;
};
}
//check for a valid js variable name with hyphen(for properties only), $, _ and :
var m = sel.match(/^[\da-zA-Z\$_\@\#][\w\$:\-\#]*(\.[\w\$:\-\#]*[^\.])*$/),
found = false, s = sel, parts = [], pfns = [], i = 0, retStr;
if(m === null){
// check if literal
if(/\'|\"/.test( s.charAt(0) )){
if(/\'|\"/.test( s.charAt(s.length-1) )){
retStr = s.substring(1, s.length-1);
return function(){ return retStr; };
}
}else{
// check if literal + #{var}
while((m = s.match(/#\{([^{}]+)\}/)) !== null){
found = true;
parts[i++] = s.slice(0, m.index);
pfns[i] = dataselectfn(m[1]);
s = s.slice(m.index + m[0].length, s.length);
}
}
if(!found){ //constant, return it
return function(){ return sel; };
}
parts[i] = s;
return concatenator(parts, pfns);
}
m = sel.split('.');
return function(ctxt){
var data = ctxt.context || ctxt,
v = ctxt[m[0]],
i = 0,
n,
dm;
if(v && typeof v.item !== 'undefined'){
i += 1;
if(m[i] === 'pos'){
//allow pos to be kept by string. Tx to Adam Freidin
return v.pos;
}
data = v.item;
}
n = m.length;
while( i < n ){
if(!data){break;}
dm = data[ m[i] ];
//if it is a function call it
data = typeof dm === 'function' ? dm.call( data ) : dm;
i++;
}
return (!data && data !== 0) ? '':data;
};
}
// wrap in an object the target node/attr and their properties
function gettarget(dom, sel, isloop){
var osel, prepend, selector, attr, append, target = [], m,
setstr, getstr, quotefn, isStyle, isClass, attName, setfn;
if( typeof sel === 'string' ){
osel = sel;
m = sel.match(selRx);
if( !m ){
error( 'bad selector syntax: ' + sel );
}
prepend = m[1];
selector = m[2];
attr = m[3];
append = m[4];
if(selector === '.' || ( !selector && attr ) ){
target[0] = dom;
}else{
target = plugins.find(dom, selector);
}
if(!target || target.length === 0){
return error('The node "' + sel + '" was not found in the template:\n' + outerHTML(dom).replace(/\t/g,' '));
}
}else{
// autoRender node
prepend = sel.prepend;
attr = sel.attr;
append = sel.append;
target = [dom];
}
if( prepend || append ){
if( prepend && append ){
error('append/prepend cannot take place at the same time');
}else if( isloop ){
error('no append/prepend/replace modifiers allowed for loop target');
}else if( append && isloop ){
error('cannot append with loop (sel: ' + osel + ')');
}
}
if(attr){
isStyle = (/^style$/i).test(attr);
isClass = (/^class$/i).test(attr);
attName = isClass ? 'className' : attr;
setstr = function(node, s) {
node.setAttribute(attPfx + attr, s);
if ( node[attName] && !isStyle) {
try{node[attName] = '';}catch(e){} //FF4 gives an error sometimes
}
if (node.nodeType === 1) {
node.removeAttribute(attr);
if(isClass){
node.removeAttribute(attName);
}
}
};
if (isStyle || isClass) {//IE no quotes special care
if(isStyle){
getstr = function(n){ return n.style.cssText; };
}else{
getstr = function(n){ return n.className; };
}
}else {
getstr = function(n){ return n.getAttribute(attr); };
}
quotefn = function(s){ return s.replace(/\"/g, '&quot;'); };
if(prepend){
setfn = function(node, s){ setstr( node, s + getstr( node )); };
}else if(append){
setfn = function(node, s){ setstr( node, getstr( node ) + s); };
}else{
setfn = function(node, s){ setstr( node, s ); };
}
}else{
if (isloop) {
setfn = function(node, s) {
var pn = node.parentNode;
if (pn) {
//replace node with s
pn.insertBefore(document.createTextNode(s), node.nextSibling);
pn.removeChild(node);
}else{
error('The template root, can\'t be looped.');
}
};
} else {
if (prepend) {
setfn = function(node, s) { node.insertBefore(document.createTextNode(s), node.firstChild); };
} else if (append) {
setfn = function(node, s) { node.appendChild(document.createTextNode(s));};
} else {
setfn = function(node, s) {
while (node.firstChild) { node.removeChild(node.firstChild); }
node.appendChild(document.createTextNode(s));
};
}
}
quotefn = function(s) { return s; };
}
return { attr: attr, nodes: target, set: setfn, sel: osel, quotefn: quotefn };
}
function setsig(target, n){
var sig = Sig + n + ':', i;
for(i = 0; i < target.nodes.length; i++){
// could check for overlapping targets here.
target.set( target.nodes[i], sig );
}
}
// read de loop data, and pass it to the inner rendering function
function loopfn(name, dselect, inner, sorter, filter){
return function(ctxt){
var a = dselect(ctxt),
old = ctxt[name],
temp = { items : a },
filtered = 0,
length,
strs = [],
buildArg = function(idx, temp, ftr, len){
//keep the current loop. Tx to Adam Freidin
var save_pos = ctxt.pos,
save_item = ctxt.item,
save_items = ctxt.items;
ctxt.pos = temp.pos = idx;
ctxt.item = temp.item = a[ idx ];
ctxt.items = a;
//if array, set a length property - filtered items
if(typeof len !== 'undefined'){ (ctxt.length = len); }
//if filter directive
if(typeof ftr === 'function' && ftr.call(ctxt.item, ctxt) === false){
filtered++;
return;
}
strs.push( inner.call(ctxt.item, ctxt ) );
//restore the current loop
ctxt.pos = save_pos;
ctxt.item = save_item;
ctxt.items = save_items;
},
prop, i, ii;
ctxt[name] = temp;
if( isArray(a) ){
length = a.length || 0;
// if sort directive
if(typeof sorter === 'function'){
a.sort(function(a, b){
return sorter.call(ctxt, a, b);
});
}
//loop on array
for(i = 0, ii = length; i < ii; i++){
buildArg(i, temp, filter, length - filtered);
}
}else{
if(a && typeof sorter !== 'undefined'){
error('sort is only available on arrays, not objects');
}
//loop on collections
for( prop in a ){
if( a.hasOwnProperty( prop ) ){
buildArg(prop, temp, filter);
}
}
}
if( typeof old !== 'undefined'){
ctxt[name] = old;
}else{
delete ctxt[name];
}
return strs.join('');
};
}
// generate the template for a loop node
function loopgen(dom, sel, loop, fns){
var already = false, ls, sorter, filter, prop, dsel, spec, itersel, target, nodes, node, inner;
for(prop in loop){
if(loop.hasOwnProperty(prop)){
if(prop === 'sort'){
sorter = loop.sort;
}else if(prop === 'filter'){
filter = loop.filter;
}else if(already){
error('cannot have more than one loop on a target');
}else{
ls = prop;
already = true;
}
}
}
if(!ls){
error('Error in the selector: ' + sel + '\nA directive action must be a string, a function or a loop(<-)');
}
dsel = loop[ls];
// if it's a simple data selector then we default to contents, not replacement.
if(typeof(dsel) === 'string' || typeof(dsel) === 'function'){
loop = {};
loop[ls] = {root: dsel};
return loopgen(dom, sel, loop, fns);
}
spec = parseloopspec(ls);
itersel = dataselectfn(spec.sel);
target = gettarget(dom, sel, true);
nodes = target.nodes;
for(i = 0; i < nodes.length; i++){
node = nodes[i];
inner = compiler(node, dsel);
fns[fns.length] = wrapquote(target.quotefn, loopfn(spec.name, itersel, inner, sorter, filter));
target.nodes = [node]; // N.B. side effect on target.
setsig(target, fns.length - 1);
}
return target;
}
function getAutoNodes(n, data){
var ns = n.getElementsByTagName('*'),
an = [],
openLoops = {a:[],l:{}},
cspec,
isNodeValue,
i, ii, j, jj, ni, cs, cj;
//for each node found in the template
for(i = -1, ii = ns.length; i < ii; i++){
ni = i > -1 ?ns[i]:n;
if(ni.nodeType === 1 && ni.className !== ''){
//when a className is found
cs = ni.className.split(' ');
// for each className
for(j = 0, jj=cs.length;j<jj;j++){
cj = cs[j];
// check if it is related to a context property
cspec = checkClass(cj, ni.tagName);
// if so, store the node, plus the type of data
if(cspec !== false){
isNodeValue = (/nodevalue/i).test(cspec.attr);
if(cspec.sel.indexOf('@') > -1 || isNodeValue){
ni.className = ni.className.replace('@'+cspec.attr, '');
if(isNodeValue){
cspec.attr = false;
}
}
an.push({n:ni, cspec:cspec});
}
}
}
}
function checkClass(c, tagName){
// read the class
var ca = c.match(selRx),
attr = ca[3] || autoAttr[tagName],
cspec = {prepend:!!ca[1], prop:ca[2], attr:attr, append:!!ca[4], sel:c},
i, ii, loopi, loopil, val;
// check in existing open loops
for(i = openLoops.a.length-1; i >= 0; i--){
loopi = openLoops.a[i];
loopil = loopi.l[0];
val = loopil && loopil[cspec.prop];
if(typeof val !== 'undefined'){
cspec.prop = loopi.p + '.' + cspec.prop;
if(openLoops.l[cspec.prop] === true){
val = val[0];
}
break;
}
}
// not found check first level of data
if(typeof val === 'undefined'){
val = dataselectfn(cspec.prop)(isArray(data) ? data[0] : data);
// nothing found return
if(val === ''){
return false;
}
}
// set the spec for autoNode
if(isArray(val)){
openLoops.a.push( {l:val, p:cspec.prop} );
openLoops.l[cspec.prop] = true;
cspec.t = 'loop';
}else{
cspec.t = 'str';
}
return cspec;
}
return an;
}
// returns a function that, given a context argument,
// will render the template defined by dom and directive.
function compiler(dom, directive, data, ans){
var fns = [], j, jj, cspec, n, target, nodes, itersel, node, inner, dsel, sels, sel, sl, i, h, parts, pfns = [], p;
// autoRendering nodes parsing -> auto-nodes
ans = ans || (data && getAutoNodes(dom, data));
if(data){
// for each auto-nodes
while(ans.length > 0){
cspec = ans[0].cspec;
n = ans[0].n;
ans.splice(0, 1);
if(cspec.t === 'str'){
// if the target is a value
target = gettarget(n, cspec, false);
setsig(target, fns.length);
fns[fns.length] = wrapquote(target.quotefn, dataselectfn(cspec.prop));
}else{
// if the target is a loop
itersel = dataselectfn(cspec.sel);
target = gettarget(n, cspec, true);
nodes = target.nodes;
for(j = 0, jj = nodes.length; j < jj; j++){
node = nodes[j];
inner = compiler(node, false, data, ans);
fns[fns.length] = wrapquote(target.quotefn, loopfn(cspec.sel, itersel, inner));
target.nodes = [node];
setsig(target, fns.length - 1);
}
}
}
}
// read directives
for(sel in directive){
if(directive.hasOwnProperty(sel)){
i = 0;
dsel = directive[sel];
sels = sel.split(/\s*,\s*/); //allow selector separation by quotes
sl = sels.length;
do{
if(typeof(dsel) === 'function' || typeof(dsel) === 'string'){
// set the value for the node/attr
sel = sels[i];
target = gettarget(dom, sel, false);
setsig(target, fns.length);
fns[fns.length] = wrapquote(target.quotefn, dataselectfn(dsel));
}else{
// loop on node
loopgen(dom, sel, dsel, fns);
}
}while(++i < sl);
}
}
// convert node to a string
h = outerHTML(dom);
// IE adds an unremovable "selected, value" attribute
// hard replace while waiting for a better solution
h = h.replace(/<([^>]+)\s(value\=""|selected)\s?([^>]*)>/ig, "<$1 $3>");
// remove attribute prefix
h = h.split(attPfx).join('');
// slice the html string at "Sig"
parts = h.split( Sig );
// for each slice add the return string of
for(i = 1; i < parts.length; i++){
p = parts[i];
// part is of the form "fn-number:..." as placed there by setsig.
pfns[i] = fns[ parseInt(p, 10) ];
parts[i] = p.substring( p.indexOf(':') + 1 );
}
return concatenator(parts, pfns);
}
// compile the template with directive
// if a context is passed, the autoRendering is triggered automatically
// return a function waiting the data as argument
function compile(directive, ctxt, template){
var rfn = compiler( ( template || this[0] ).cloneNode(true), directive, ctxt);
return function(context){
return rfn({context:context});
};
}
//compile with the directive as argument
// run the template function on the context argument
// return an HTML string
// should replace the template and return this
function render(ctxt, directive){
var fn = typeof directive === 'function' && directive, i, ii;
for(i = 0, ii = this.length; i < ii; i++){
this[i] = replaceWith( this[i], (fn || plugins.compile( directive, false, this[i] ))( ctxt, false ));
}
return this;
}
// compile the template with autoRender
// run the template function on the context argument
// return an HTML string
function autoRender(ctxt, directive){
var fn = plugins.compile( directive, ctxt, this[0] ), i, ii;
for(i = 0, ii = this.length; i < ii; i++){
this[i] = replaceWith( this[i], fn( ctxt, false));
}
return this;
}
function replaceWith(elm, html) {
var ne,
ep = elm.parentNode,
depth = 0,
tmp;
if(!ep){ //if no parents
ep = document.createElement('DIV');
ep.appendChild(elm);
}
switch (elm.tagName) {
case 'BODY': //thanks to milan.adamovsky@gmail.com
ep.removeChild(elm);
ep.innerHTML += html;
return ep.getElementsByTagName('BODY')[0];
case 'TBODY': case 'THEAD': case 'TFOOT':
html = '<TABLE>' + html + '</TABLE>';
depth = 1;
break;
case 'TR':
html = '<TABLE><TBODY>' + html + '</TBODY></TABLE>';
depth = 2;
break;
case 'TD': case 'TH':
html = '<TABLE><TBODY><TR>' + html + '</TR></TBODY></TABLE>';
depth = 3;
break;
case 'OPTGROUP': case 'OPTION':
html = '<SELECT>' + html + '</SELECT>';
depth = 1;
break;
}
tmp = document.createElement('SPAN');
tmp.style.display = 'none';
document.body.appendChild(tmp);
tmp.innerHTML = html;
ne = tmp.firstChild;
while (depth--) {
ne = ne.firstChild;
}
ep.insertBefore(ne, elm);
ep.removeChild(elm);
document.body.removeChild(tmp);
elm = ne;
ne = ep = null;
return elm;
}
return plugins;
};
$p.plugins = {};
$p.libs = {
dojo:function(){
return function(n, sel){
return dojo.query(sel, n);
};
},
domassistant:function(){
DOMAssistant.attach({
publicMethods : [ 'compile', 'render', 'autoRender'],
compile:function(directive, ctxt){
return $p([this]).compile(directive, ctxt);
},
render:function(ctxt, directive){
return $( $p([this]).render(ctxt, directive) )[0];
},
autoRender:function(ctxt, directive){
return $( $p([this]).autoRender(ctxt, directive) )[0];
}
});
return function(n, sel){
return $(n).cssSelect(sel);
};
},
ext:function(){//Thanks to Greg Steirer
return function(n, sel){
return Ext.query(sel, n);
};
},
jquery:function(){
jQuery.fn.extend({
directives:function(directive){
this._pure_d = directive; return this;
},
compile:function(directive, ctxt){
return $p(this).compile(this._pure_d || directive, ctxt);
},
render:function(ctxt, directive){
return jQuery( $p( this ).render( ctxt, this._pure_d || directive ) );
},
autoRender:function(ctxt, directive){
return jQuery( $p( this ).autoRender( ctxt, this._pure_d || directive ) );
}
});
return function(n, sel){
return jQuery(n).find(sel);
};
},
mootools:function(){
Element.implement({
compile:function(directive, ctxt){
return $p(this).compile(directive, ctxt);
},
render:function(ctxt, directive){
return $p([this]).render(ctxt, directive);
},
autoRender:function(ctxt, directive){
return $p([this]).autoRender(ctxt, directive);
}
});
return function(n, sel){
return $(n).getElements(sel);
};
},
prototype:function(){
Element.addMethods({
compile:function(element, directive, ctxt){
return $p([element]).compile(directive, ctxt);
},
render:function(element, ctxt, directive){
return $p([element]).render(ctxt, directive);
},
autoRender:function(element, ctxt, directive){
return $p([element]).autoRender(ctxt, directive);
}
});
return function(n, sel){
n = n === document ? n.body : n;
return typeof n === 'string' ? $$(n) : $(n).select(sel);
};
},
sizzle:function(){
return function(n, sel){
return Sizzle(sel, n);
};
},
sly:function(){
return function(n, sel){
return Sly(sel, n);
};
},
yui:function(){ //Thanks to https://github.com/soljin
if(typeof document.querySelector === 'undefined'){
YUI().use("node",function(Y){
$p.plugins.find = function(n, sel){
return Y.NodeList.getDOMNodes(Y.one(n).all(sel));
};
});
}
YUI.add("pure-yui",function(Y){
Y.Node.prototype.directives = function(directive){
this._pure_d = directive; return this;
};
Y.Node.prototype.compile = function(directive, ctxt){
return $p([this._node]).compile(this._pure_d || directive, ctxt);
};
Y.Node.prototype.render = function(ctxt, directive){
return Y.one($p([this._node]).render(ctxt, this._pure_d || directive));
};
Y.Node.prototype.autoRender = function(ctxt, directive){
return Y.one($p([this._node]).autoRender(ctxt, this._pure_d || directive));
};
},"0.1",{requires:["node"]});
return true;
}
};
// get lib specifics if available
(function(){
var libSel,
libkey =
(typeof dojo !== 'undefined' && 'dojo') ||
(typeof DOMAssistant !== 'undefined' && 'domassistant') ||
(typeof Ext !== 'undefined' && 'ext') ||
(typeof jQuery !== 'undefined' && 'jquery') ||
(typeof MooTools !== 'undefined' && 'mootools') ||
(typeof Prototype !== 'undefined' && 'prototype') ||
(typeof Sizzle !== 'undefined' && 'sizzle') ||
(typeof Sly !== 'undefined' && 'sly') ||
(typeof YUI !== 'undefined' && 'yui');
//add library methods
if(libkey){
libSel = $p.libs[libkey]();
}
//if no native selector available
if( typeof document.querySelector === 'undefined' ){
//take it from the JS lib
if( typeof libSel === 'function' ){
$p.plugins.find = libSel;
//if nothing throw an error
}else if( !libSel ){
throw('you need a JS library with a CSS selector engine');
}
}
//for node.js
if(typeof exports !== 'undefined'){
exports.$p = $p;
}
}());
@@ -1,16 +0,0 @@
/* we need because of the placeholder element */
ul.ordering_vrt_terms li {
min-height:20px;
width:400px;
}
ul.ordering_vrt_images li {
}
ul.ordering_hrz li {
}
span.errortext_corrected {
}
a.image_details {
}
img.mc_image {
}
@@ -1,680 +0,0 @@
.kiosk {
padding: 2em;
background-color: #fafafa;
}
.fullwidth_invisible {
background-color: transparent !important;
}
.feedback {
/* border: 1px solid gray;*/
padding: 4px;
display: block;
background: #EEEEEE;
}
.centermessage {
width: 25em;
margin-left: auto;
margin-right: auto;
font-weight: bold;
font-size: 150%;
}
.col2 {
width: 100%;
float: left;
}
.rcol {
width: 50%;
float: right;
}
.lcol {
width: 50%;
float: left;
}
.participant.solution {
padding: 5px;
width: 50%;
overflow-x: auto;
}
.lcol.participant
{
width: 49%;
overflow-x: auto;
}
.rcol.solution {
width: 49%;
overflow-x: auto;
padding: 5px;
background: #E2FFC7; /* Fallback IE 6-8 */
background: rgba(226, 255, 199, .4);
}
#kioskOptions {
clear: both;
overflow: hidden;
width: 100%;
border-top: 1px #aaa solid;
border-bottom: 1px #aaa solid;
margin-bottom: 1em;
padding: 1em 0;
}
#kioskTestTitle {
float: left;
width: 50%;
}
#kioskParticipant {
float: right;
text-align: right;
width: 50%;
}
.print {
visibility: hidden;
}
.ilTstWorkingFormBlock_WorkingTime {
text-align: center;
clear: both;
}
.ilTstWorkingFormInfo_UserWorkingTime {
visibility: hidden;
display: none;
}
.ilTstWorkingFormInfo_ProcessTimeLeft {
font-size: 200%;
font-weight: bold;
}
.ilTstQuestionSummaryBlock_WorkingTime {
clear: both;
}
div.ilc_Question {
padding-left: 20px;
margin-top: 10px;
margin-bottom: 10px;
}
.testSheet {
background: #EEEEEE;
border-spacing: 1px;
border: 1px outset #BBBBBB;
margin: 5px;
padding: 2em;
}
.questionTitle {
margin-top: 5px;
margin-bottom: 5px;
font-size: 140%;
padding-bottom: 3px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-color: #000000;
}
.ilTestQuestionRelatedObjectivesInfo
{
font-size: 0.7em;
font-style: italic;
margin: 5px 0;
}
.questionPrintview {
border: 1px solid #C0C0C0;
padding: 0.25em;
margin-top: 1em;
}
.solutionbox {
color: black;
background-color: white;
padding-left: 5px;
padding-right: 5px;
border-style: inset;
border-width: 1px;
}
td.middle {
color: #000000;
background-color: inherit;
border-spacing: 0px;
border: none;
padding: 3px;
vertical-align: middle;
}
td.top {
color: #000000;
background-color: inherit;
border-spacing: 0px;
border: none;
padding: 3px;
vertical-align: top;
}
/* --- Test tool javascript styles --- */
span.nowrap {
white-space: nowrap;
}
div.termtext {
width: 200px;
height: 100px;
border: 1px solid #000000;
background-color: #F1F1F1;
color: #222222;
padding: 10px;
vertical-align: middle;
border-style: outset;
text-align: center;
}
div.dropzone {
width: 220px;
height: 120px;
border: 1px solid #000000;
background-color: #FFE4E4;
color: #222222;
padding: 10px;
vertical-align: middle;
border-style: dotted;
text-align: center;
}
div.textboximage {
width: 200px;
height: 80px;
border: 1px solid #000000;
background: #DDDDDD;
padding: 10px;
vertical-align: middle;
border-style: outset;
text-align: center;
}
div.imagebox {
width: 200px;
height: 100px;
border: 1px solid #000000;
background-color: #F1F1F1;
color: #222222;
padding: 10px;
vertical-align: middle;
border-style: outset;
text-align: center;
z-index: 200;
}
div.textbox {
width: 200px;
height: 100px;
border: 1px solid #000000;
background-color: #F1F1F1;
color: #222222;
padding: 10px;
vertical-align: middle;
border-style: outset;
text-align: center;
z-index: 200;
}
#filterpanel {
text-align: right;
}
.filteractive {
background-color: #f7face;
border: 1px #d48110 solid;
}
.filterinactive {
background-color: #fff;
}
.manfeedback .toggle-button
{
padding-left:20px;
background:transparent url(images/del_sprite_arrows.gif) 3px -318px no-repeat;
cursor:pointer;
}
.manfeedback .yes
{
padding-left:20px;
background:transparent url(images/del_sprite_arrows.gif) 3px -359px no-repeat;
cursor:pointer;
}
.manfeedback .off
{
padding-left:20px;
background:none;
cursor:default;
}
.clearfix:after
{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
div.odd {
padding: 0.5em 0;
}
div.even {
padding: 0.5em 0;
}
div.last {
border-bottom: none;
}
table.imagemapareas tr,
table.kvpwizard tr,
table.matchingwizard tr,
table.matchingpairwizard tr,
table.errortextwizard tr,
table.singlechoicewizard tr,
table.multiplechoicewizard tr {
vertical-align: top;
}
table.imagemapareas th,
table.kvpwizard th,
table.matchingwizard th,
table.matchingpairwizard th,
table.errortextwizard th,
table.singlechoicewizard th,
table.multiplechoicewizard th,
table.kprimchoicewizard th
{
vertical-align: top;
}
table.kprimchoicewizard th.true,
table.kprimchoicewizard th.false
{
padding: 5px 5px;
}
table.kprimchoicewizard td.correctness
{
vertical-align: top;
text-align: center;
}
table.kprimchoicewizard th
{
font-size: 90%;
font-weight: bold;
text-align: center;
}
table.kprimchoicewizard
{
}
table.kprimchoicewizard
{
margin-bottom: 15px;
}
table.kprimchoicewizard td
{
padding-top: 15px;
}
div.ilAssKprimChoiceTable div.optionLabel,
table.kprimchoicewizard th.optionLabel
{
background-color: lightgrey;
}
table.ilAssKprimChoiceTable tr.aggregaterow td
{
border-bottom: solid lightgrey 1px;
}
table.ilAssKprimChoiceTable tr.aggregaterow td.answer_frequency
{
text-align: right;
}
table.il_tst_answer_aggregation
{
border-collapse: collapse;
}
table.il_tst_answer_aggregation td,
table.il_tst_answer_aggregation th
{
padding: 5px 15px;
}
table.il_tst_answer_aggregation th
{
background-color: lightgrey;
}
table.il_tst_answer_aggregation td
{
border-bottom: solid lightgrey 1px;
}
table.il_tst_answer_aggregation td.answer_option
{
font-style: italic;
}
table.il_tst_answer_aggregation td.answer_frequency
{
text-align: right;
}
#tst_output {
clear: both;
overflow: hidden;
width: 100%;
float: left;
}
#tst_left {
float: left;
width: 0%;
}
#tst_left h1 {
font-size: 110%;
font-weight: bold;
}
#tst_right {
float: right;
width: 100%;
}
.question_description {
font-style: italic;
font-size: 90%;
}
ul.shortlist {
list-style-type: none;
padding: 0;
}
/* fau: testNav - icon for answered/unanswered questions in shortlist */
ul.shortlist li {
padding: 0 0 6px 15px;
background-repeat: no-repeat;
background-size: 10px;
background-position: 0px 5px;
}
ul.shortlist li.answered {
background-image: url('../../../../templates/default/images/answered.svg');
}
ul.shortlist li.unanswered {
background-image: url('../../../../templates/default/images/answered_not.svg');
}
/* fau. */
ul.shortlist li.active {
font-weight: bold;
}
ul.shortlist li.listEntry a
{
text-decoration:none;
color:#0033AA;
}
ul.shortlist li.listEntry a:hover
{
text-decoration: underline;
}
.number {
text-align: right;
}
.errortext a:link,
.errortext a:visited {
text-decoration: none;
color: #000;
padding: 0 2px;
line-height: 1.5em;
}
.errortext a:hover {
background-color: #ddd;
}
.ilc_qetitem_ErrorTextSelected {
background-color: #9bd9fe;
border: 1px #666 solid;
}
.selGroup {
border: 2px #9bd9fe solid;
padding: 3px 2px;
margin-right: 2px;
}
.imageselection {
}
.questionpool_info {
padding: 0.4em;
margin-top: 0.4em;
}
.questionpool_title {
font-weight: bold;
}
td.matching {
vertical-align: middle;
}
div.term {
display: inline;
padding: 0.5em 1em;
float: left;
}
.solutiontable td {
padding: 0 1em;
}
span.result {
font-style: italic;
}
div.ilc_Page.readonly div.ilc_question_Standard
{
background-color: #f3f3f3;
background-image: url(../../../../templates/default/images/qmark-ro.svg);
}
ul.ilAssQuestionRelatedNavigationContainer,
div.ilAssQuestionRelatedNavigationContainer
{
margin: 15px 0;
float: none;
}
ul.ilAssQuestionRelatedNavigationContainer div.navbar
{
padding-right: 12px;
min-height: unset;
margin-bottom: 10px;
}
div.tstModalConfirmationText
{
margin-bottom: 20px;
}
div.tstModalConfirmationButtons a,
div.tstModalConfirmationButtons input
{
margin-right: 20px;
}
div.ilTestOutputBlock_DynTestFinished
{
background-color: #FAFAFA;
padding: 100px;
}
a.il_question_answer_list_back_anchor
{
float:right;
font-size:0.7em;
margin-right:3px;
}
.ilCenterForced {
text-align: center !important;
}
tr.ilBorderlessRow
{
margin-right: 20px;
}
td.ilAssQuestSkillAssignQuestTitle div
{
margin-right: 20px;
}
.ilAssQuestionLacExprWizard td,
.ilAssQuestionLacExprWizard th
{
padding-right: 10px;
}
a.il_participant_block_back_anchor,
a.il_question_answer_list_back_anchor
{
float:right;
margin-right:3px;
}
a.il_question_answer_list_back_anchor
{
font-size:0.7em;
}
.test_specific_feedback td:first-child{
padding-right: 1em;
font-style: italic;
font-weight: bold;
}
.test_specific_feedback td:last-child p:first-child{
margin-top: 0;
}
p.ilAssKprimInstruction,
p.ilAdditionalAssQuestionInstruction
{
font-style: italic;
font-size: 0.9em;
margin:5px 0 15px 0 !important;
}
table.kprimchoicewizard th.optionLabel
{
font-size: 1.1em;
}
table.imagemapareas tr.active-area, table.imagemapareas tr.active-area td {
background-color: #fdfabb !important;
}
/* fau: testNav - added and changed styles */
td.ilc_Page {
padding: 15px;
}
.ilTestQuestionSubtitleBlocks
{
margin-top: -12px;
}
.ilTestMarkQuestionIcon {
width: 12px;
height: 12px;
}
.ilTestAnswerStatusIcon {
display: inline-block;
width: 12px;
height: 12px;
margin-top: -3px;
}
.ilTestQuestionAction.disabled a {
color: #b0b0b0!important;
}
/* fau. */
div.ilAssClozeTest
{
line-height: 2.5em;
}
div.ilAssClozeTest input
{
line-height: 1.25em;
}
div.ilc_Page.readonly img.imagemap,
div.ilc_Page.readonly div.filesContainer,
div.ilc_Page.readonly div.filesContainer a,
div.ilc_Page.readonly div.uploadContainer input,
div.ilc_Page.readonly div.ilAssErrorText span,
div.ilc_Page.readonly input[disabled],
div.ilc_Page.readonly select[disabled],
div.ilc_Page.readonly textarea[disabled]
{
pointer-events: all !important;
cursor: not-allowed !important;
}
.tstAutosaveMsg
{
font-style: italic;
border: 1px #666 solid;
background-color: #ffffe0;
position:fixed;
z-index:99999999999;
top:0;
left:0;
}
.textarea {
cursor: not-allowed !important;
border: 1px solid rgb(169, 169, 169);
padding: 2px;
background-color: rgb(235, 235, 228);
min-height: 200px;
}
.ilSpecificAnswerFeedback td:first-child {
padding-right: 30px;
}
.ilc_question_MultipleChoice .ilc_qanswer_Answer > div {
vertical-align: top;
}
.ilc_question_SingleChoice .ilc_qanswer_Answer > div {
vertical-align: top;
}
@@ -1,159 +0,0 @@
/* MC-MR Js Engines */
(function($){
/* fau: testNav - handle the "none above" mc option in special tests. */
function handleMultipleChoiceResult()
{
if ($('.ilAssMultipleChoiceResult:checked').length > 0)
{
$('.ilAssMultipleChoiceNone').removeAttr('checked');
}
else
{
$('.ilAssMultipleChoiceNone').attr('checked','checked');
}
}
function handleMultipleChoiceNone()
{
if ($('.ilAssMultipleChoiceNone:checked').length > 0)
{
$('.ilAssMultipleChoiceResult').removeAttr('checked');
}
}
$( document ).ready(
function()
{
$('.ilAssMultipleChoiceResult').change(handleMultipleChoiceResult);
$('.ilAssMultipleChoiceNone').change(handleMultipleChoiceNone);
}
);
}(jQuery));
(function($){
/* mcSelLim - handle the mc selection limit */
var instances = new Array();
$.fn.ilAssMultipleChoiceEngine = function(questionId, options)
{
options = jQuery.extend({}, jQuery.fn.ilAssMultipleChoiceEngine.defaults, options);
instances[questionId] = new _ilAssMultipleChoiceEngine(questionId, options);
return instances[questionId];
};
$.fn.ilAssMultipleChoiceEngine.defaults = {
minSelection: null,
maxSelection: null
};
var _ilAssMultipleChoiceEngine = function(questionId, options)
{
this.questionId = questionId;
this.options = options;
};
_ilAssMultipleChoiceEngine.prototype = {
init: function()
{
if( this.options.maxSelection )
{
// fau: fixMcWithLimit - add check when question is shown again (#26097)
if( isSelectionLimitReached(this.questionId) )
{
disableUnselectedOptions(this.questionId);
}
// fau.
initSelectionLimitHandler(this.questionId);
}
}
};
var handleSelectionChange = function()
{
var questionId = $(this).attr(getQuestionIdAttributeName());
if( isSelectionLimitReached(questionId) )
{
disableUnselectedOptions(questionId);
}
else
{
enableDisabledOptions(questionId);
}
initSelectionLimitHandler(questionId);
};
var initSelectionLimitHandler = function(questionId)
{
detachSelectionChangeHandler(questionId);
attachSelectionChangeHandler(questionId);
};
var attachSelectionChangeHandler = function(questionId)
{
$(buildAllChoiceOptionsSelector(questionId)+':enabled').each(
function(pos, item)
{
$(item).on('change', handleSelectionChange);
}
)
};
var detachSelectionChangeHandler = function(questionId)
{
$(buildAllChoiceOptionsSelector(questionId)).each(
function(pos, item)
{
$(item).off('change');
}
);
};
var enableDisabledOptions = function(questionId)
{
$(buildAllChoiceOptionsSelector(questionId)+':disabled').each(
function(pos, item)
{
$(item).removeAttr('disabled');
}
);
};
var disableUnselectedOptions = function(questionId)
{
$(buildAllChoiceOptionsSelector(questionId)+':not(:checked)').each(
function(pos, item)
{
$(item).attr('disabled', 'disabled');
}
);
};
var isSelectionLimitReached = function(questionId)
{
var numSelected = $(buildAllChoiceOptionsSelector(questionId)+':checked').length;
var maxSelection = instances[questionId].options.maxSelection;
return numSelected >= maxSelection;
};
var buildAllChoiceOptionsSelector = function(questionId)
{
return 'input.ilAssMultipleChoiceOption['+getQuestionIdAttributeName()+'='+questionId+']';
};
var getQuestionIdAttributeName = function()
{
return 'data-qst-id';
}
}(jQuery));
@@ -1,471 +0,0 @@
(function($){
var instances = new Array();
$.fn.ilMatchingQuestionEngine = function(questionId, options)
{
options = jQuery.extend({}, jQuery.fn.ilMatchingQuestionEngine.defaults, options);
instances[questionId] = new _ilMatchingQuestionEngine(questionId, options);
return instances[questionId];
};
$.fn.ilMatchingQuestionEngine.defaults = {
matchingContainer: 'body',
matchingMode: '1:1',
resetButtonId: null
};
var _ilMatchingQuestionEngine = function(questionId, options)
{
this.options = options;
this.questionId = questionId;
this.definitions = [];
this.terms = [];
this.matchings = [];
this.disabled = false;
};
_ilMatchingQuestionEngine.prototype = {
addDefinition: function(definitionId)
{
this.definitions.push(definitionId);
},
addTerm: function(termId)
{
this.terms.push(termId);
},
addMatching: function(definitionId, termId)
{
this.matchings.push({
term: termId,
definition: definitionId
});
},
init: function()
{
initDroppables(this);
initDraggables(this);
restoreMatches(this);
if( $(this.options.resetButtonId) )
{
$(this.options.resetButtonId).click(resetMatchingsCallback);
}
},
reinit: function()
{
restoreMatches(this);
},
reset: function()
{
resetMatchings(this);
},
enable: function()
{
this.disabled = false;
},
disable: function()
{
this.disabled = true;
}
};
var initDroppables = function(instance)
{
$(instance.definitions).each(
function(key, definitionId)
{
var domSelector = '#definition_'+definitionId;
makeDroppable(domSelector);
}
);
};
var initDraggables = function(instance)
{
$(instance.terms).each(
function(key, termId)
{
var domSelector = '#term_'+termId;
makeDraggable(instance, domSelector);
makeDroppable(domSelector);
}
);
};
var buildDragHelper = function(event)
{
var draggable = $(event.target);
if( !draggable.hasClass('draggable') )
{
draggable = $(draggable.parents('div.draggable'));
}
var helper = $('<div class="draggableHelper" />');
helper.html(draggable.html());
helper.css({'width' : draggable.css('width'),
'height': draggable.css('height'),
'z-index' : 1035
});
return helper;
};
var makeDroppable = function(domSelector)
{
$(domSelector).droppable({
drop: dropElementHandler,
disabled: true,
tolerance: 'pointer'
});
};
var makeDraggable = function(instance, domSelector)
{
$(domSelector).draggable({
helper: buildDragHelper,
start: startDrag,
stop: stopDrag,
//cursor: 'move',
revert: true,
scroll: true,
containment: instance.options.matchingContainer
});
$(domSelector).attr('data-qid', instance.questionId);
};
var isValidDroppable = function(instance, droppable, draggable)
{
if( droppable.attr('id') == draggable.parents('.droparea').attr('id') )
{
return false;
}
var droppedDraggableId = droppable.attr('data-type')+'_'+droppable.attr('data-id');
droppedDraggableId += '_'+draggable.attr('data-type')+'_'+draggable.attr('data-id');
if( instance.options.matchingMode == 'n:n' && droppable.find('#'+droppedDraggableId).length > 0 )
{
return false;
}
else if( instance.options.matchingMode == '1:1' && droppable.find('.draggable').length > 0 )
{
return false;
}
return true;
}
var startDrag = function(event, ui)
{
var instance = fetchInstance(this);
if( instance.disabled )
{
return false;
}
var that = $(this);
that.addClass('draggableDisabled');
$(instance.definitions).each(
function(key, definitionId)
{
var domSelector = '#definition_'+definitionId;
if( isValidDroppable(instance, $(domSelector), that) )
{
$(domSelector).addClass('droppableTarget');
$(domSelector).droppable('enable');
$(domSelector).droppable('option', 'hoverClass', 'droppableHover');
}
}
);
if( that.parents('.droparea').length > 0 )
{
var termDroppable = $('#'+that.attr('data-type')+'_'+that.attr('data-id'));
termDroppable.removeClass('draggableDisabled');
termDroppable.addClass('droppableTarget');
termDroppable.droppable('enable');
termDroppable.droppable('option', 'hoverClass', 'droppableHover');
}
};
var isDraggableToBeReactivated = function(instance, draggable)
{
if( $(draggable).parents('.droparea').length > 0 )
{
return true;
}
if( instance.options.matchingMode == 'n:n' )
{
return true;
}
var reactivationRequired = true;
$(instance.definitions).each(
function(key, definitionId)
{
var domSelector = '#definition_'+definitionId;
$(domSelector).find('.draggable').each(
function(key, droppedDraggable)
{
if( $(droppedDraggable).attr('data-id') == $(draggable).attr('data-id') )
{
reactivationRequired = false;
}
}
);
}
);
return reactivationRequired;
};
var stopDrag = function(event, ui)
{
var instance = fetchInstance(this);
if( isDraggableToBeReactivated(instance, this) )
{
$(this).removeClass('draggableDisabled');
}
$(instance.definitions).each(
function(key, definitionId)
{
var domSelector = '#definition_'+definitionId;
$(domSelector).removeClass('droppableTarget');
$(domSelector).droppable('disable');
$(domSelector).droppable('option', 'hoverClass', '');
}
);
if( $(this).parents('.droparea').length > 0 )
{
var domSelector = '#'+$(this).attr('data-type')+'_'+$(this).attr('data-id');
$(domSelector).removeClass('droppableTarget');
$(domSelector).droppable('disable');
$(domSelector).droppable('option', 'hoverClass', '');
if( instance.options.matchingMode == '1:1' )
{
$(domSelector).addClass('draggableDisabled')
}
}
};
var dropElementHandler = function(event, ui)
{
ui.helper.remove();
var instance = fetchInstance(this);
if( ui.draggable.parents('.droparea').length > 0 )
{
removeTermInputFromDefinition(ui.draggable, ui.draggable.parents('.droparea'));
ui.draggable.remove();
}
else if( instance.options.matchingMode == '1:1' )
{
ui.draggable.draggable('disable');
}
var draggableOriginalSelector = '#'+$(ui.draggable).attr('data-type')+'_'+$(ui.draggable).attr('data-id');
$(draggableOriginalSelector).removeClass('droppableTarget');
if( $(this).hasClass('droparea') )
{
if( instance.options.matchingMode == 'n:n' )
{
$(draggableOriginalSelector).removeClass('draggableDisabled');
}
else if( instance.options.matchingMode == '1:1' )
{
$(draggableOriginalSelector).addClass('draggableDisabled');
}
}
if( $(this).attr('data-type') == 'definition' )
{
var cloneId = buildDroppedDraggableCloneId(ui.draggable, $(this));
var droppedDraggableClone = ui.draggable.clone();
droppedDraggableClone.attr('id', cloneId);
droppedDraggableClone.removeClass('draggableDisabled');
droppedDraggableClone.addClass('droppedDraggable');
$(this).find('.ilMatchingQuestionTerm').append(droppedDraggableClone);
makeDraggable(instance, '#'+droppedDraggableClone.attr('id'));
}
else if( $(this).attr('data-type') == 'term' && instance.options.matchingMode == '1:1' )
{
$(draggableOriginalSelector).draggable('enable');
}
if( $(this).hasClass('droparea') )
{
appendTermInputToDefinition(instance, droppedDraggableClone, $(this));
}
$(instance.definitions).each(
function(key, definitionId)
{
var domSelector = '#definition_'+definitionId;
$(domSelector).removeClass('droppableTarget');
}
);
};
var removeDefinitionDroppablesTargetClass = function(droppable)
{
if( droppable.parents('.droparea').length > 0 )
{
var domSelector = '#'+$(this).attr('data-type')+'_'+$(this).attr('data-id');
$(domSelector).removeClass('droppableTarget');
$(domSelector).droppable('disable');
$(domSelector).droppable('option', 'hoverClass', '');
if( instance.options.matchingMode == '1:1' )
{
$(domSelector).addClass('draggableDisabled')
}
}
};
var buildDroppedDraggableCloneId = function(draggable, droppable)
{
var cloneId = droppable.attr('data-type')+'_'+droppable.attr('data-id');
cloneId += '_'+draggable.attr('data-type')+'_'+draggable.attr('data-id');
return cloneId;
};
var appendTermInputToDefinition = function(instance, draggable, droppable)
{
var input = $('<input type="hidden" />');
input.attr('id', 'data_'+draggable.attr('id'));
input.attr('name', 'matching['+instance.questionId+']['+droppable.attr('data-id')+']['+draggable.attr('data-id')+']');
input.attr('value', draggable.attr('data-id'));
droppable.append(input);
};
var removeTermInputFromDefinition = function(draggable, droppable)
{
var inputId = 'data_'+droppable.attr('data-type')+'_'+droppable.attr('data-id');
inputId += '_'+draggable.attr('data-type')+'_'+draggable.attr('data-id');
$('#'+inputId).remove();
};
var restoreMatches = function(instance)
{
$(instance.matchings).each(
function(key, matching)
{
var definitionDroppable = $('#definition_'+matching.definition);
var termDraggable = $('#term_'+matching.term);
var cloneId = buildDroppedDraggableCloneId(termDraggable, definitionDroppable);
var droppedDraggableClone = termDraggable.clone();
droppedDraggableClone.attr('id', cloneId);
droppedDraggableClone.removeClass('draggableDisabled');
definitionDroppable.find('.ilMatchingQuestionTerm').append(droppedDraggableClone);
appendTermInputToDefinition(instance, droppedDraggableClone, definitionDroppable);
makeDraggable(instance, '#'+droppedDraggableClone.attr('id'));
if( instance.options.matchingMode == '1:1' )
{
termDraggable.draggable('disable');
termDraggable.addClass('draggableDisabled');
}
}
);
};
var resetMatchingsCallback = function()
{
var instance = fetchInstance(this);
if(instance.disabled)
{
return;
}
resetMatchings(instance);
};
var resetMatchings = function(instance)
{
$(instance.definitions).each(
function(key, definitionId)
{
var definitionDroppable = $('#definition_'+definitionId);
definitionDroppable.find('[data-type="term"]').remove();
definitionDroppable.find('input[type="hidden"]').remove();
}
);
$(instance.terms).each(
function(key, termId)
{
var term = $('#term_'+termId);
term.removeClass('draggableDisabled');
term.draggable('enable');
}
);
};
var fetchInstance = function(element)
{
var questionId;
if( questionId = $(element).attr('data-qid') )
{
return instances[questionId];
}
if( questionId = $(element).parents('[data-type=ilMatchingQuestion]').attr('data-id') )
{
return instances[questionId];
}
if( console )
{
console.log('COULD NOT DETERMINE QUESTION ID ON FETCH INSTANCE CALL !!');
}
};
}(jQuery));
@@ -1,82 +0,0 @@
.ilVerticalOrderingQuestion li { margin: 0px; }
.ilVerticalOrderingQuestion ul { margin-top: -4px; }
.ilVerticalOrderingQuestion li { margin-top: 4px; }
ul.boxy {
list-style-type: none;
padding: 0px;
margin: 0px;
width: 250px;
font-size: 13px;
font-family: Arial, sans-serif;
}
ul.boxy li {
cursor:move;
padding: 12px 12px;
border: 1px solid #808080;
background-color: #CCCCCC;
text-align: center;
}
/* drag and drop support */
.droparea
{
border:2px solid #666;
background-color:#ccc;
color:black;
text-align:left;
margin: 5px;
padding: 0.5em;
margin-left: 5px !important;
margin-right: 5px !important;
}
@media only screen and (min-width: 992px) {
#sourceArea .draggable {
margin-left: 10px;
}
}
.draggable,
.draggableHelper
{
border:2px solid #666;
background-color: #eee;
color:black;
text-align:center;
margin: 5px;
padding: 0.5em;
cursor:pointer;
margin-left: 5px !important;
margin-right: 5px !important;
}
.draggableDisabled
{
opacity: 0.5;
}
.droppableTarget
{
border:2px dashed #666;
background-color: #ffa;
}
.droppableHover
{
background-color: #cff;
}
.droparea, .draggable{
overflow-wrap: break-word;
word-wrap: break-word;
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
@@ -1,36 +0,0 @@
/* Vertical Accordion */
div.il_VAccordionToggleDef
{
display: block;
}
div.il_VAccordionToggleActiveDef
{
}
div.il_VAccordionContentDef
{
overflow: visible;//mantis #15152
}
/*
Horizontal Accordion
*/
div.il_HAccordionToggleDef
{
float: left; /* This make sure it stays horizontal */
display: block;
overflow: hidden;
}
div.il_HAccordionToggleActiveDef
{
}
div.il_HAccordionContentDef
{
float: left; /* This make sure it stays horizontal */
overflow: hidden;
}
@@ -1,477 +0,0 @@
/* */
il.Accordion = {
duration : 150,
data: {},
initAll: function () {
$
},
/**
* Add accordion element
*
* Options:
* id: id,
* toggle_class: toggle_class,
* toggle_act_class: toggle_act_class,
* content_class: content_class,
* width: width,
* height: height,
* orientation: orientation,
* behaviour: behaviour,
* save_url: save_url,
* active_head_class: active_head_class,
* int_id: int_id,
* initial_opened: initial opened accordion tabs (nr, separated by ;)
* multi: multi
* show_all_element: ID of HTML element that triggers show all
* hide_all_element: ID of HTML element that triggers hide all
*/
add: function (options) {
options.animating = false;
options.clicked_acc = null;
options.last_opened_acc = null;
if (typeof options.reset_width == "undefined") {
options.reset_width = false;
}
if (typeof options.show_all_element == "undefined") {
options.show_all_element = null;
}
if (typeof options.hide_all_element == "undefined") {
options.hide_all_element = null;
}
if ((typeof options.initial_opened != "undefined") && options.initial_opened && options.initial_opened.length > 0) {
options.initial_opened = options.initial_opened.split(";");
} else {
options.initial_opened = [];
}
il.Accordion.data[options.id] = options;
il.Accordion.init(options.id);
},
init: function (id) {
var t, el, next_el, acc_el, a = il.Accordion.data[id], apt, sp;
if (a.behaviour == "Carousel") {
apt = (a.auto_anim_wait > 100)
? a.auto_anim_wait
: 5000;
sp = (a.random_start)
? Math.floor(Math.random() * $("#" + id).children().length)
: 0;
$("#" + id).owlCarousel({items: 1, autoplay: true, loop: true, dots: false, autoplayTimeout: apt, startPosition: sp});
return;
}
// open the inital opened tabs
if (a.initial_opened.length > 0) {
for (var i = 0; i < a.initial_opened.length; i++) {
acc_el = $("#" + id + " div." + a.content_class + ":eq(" + (parseInt(a.initial_opened[i])-1) + ")");
acc_el.removeClass("ilAccHideContent");
il.Accordion.addActiveHeadClass(id, acc_el[0]);
a.last_opened_acc = acc_el.get(0);
}
} else if (a.behaviour == "FirstOpen") {
acc_el = $("#" + id + " div." + a.content_class + ":eq(0)");
acc_el.removeClass("ilAccHideContent");
il.Accordion.addActiveHeadClass(id, acc_el[0]);
a.last_opened_acc = acc_el.get(0);
}
// register click handler (if not all opened is forced)
if (a.behaviour != "ForceAllOpen") {
$("#" + id).children().children("." + a.toggle_class).each(function () {
t = $(this);
t.find("a").click(function(e) {
e.stopPropagation(); // enable links inside of accordion header
});
t.on("click", { id: id, el: t}, il.Accordion.clickHandler);
t.on('keypress', function (e) {
if (e.which === 13 || e.which === 32) {
$(this).find("div[role='button']").trigger('click');
}
});
});
}
if (a.show_all_element) {
$("#" + a.show_all_element).prop("onclick", "").on("click", { id: id}, il.Accordion.showAll);
}
if (a.hide_all_element) {
$("#" + a.hide_all_element).prop("onclick", "").on("click", { id: id}, il.Accordion.hideAll);
}
},
isOpened: function (el) {
return !$(el).hasClass("ilAccHideContent");
},
getAllOpenedNr: function (id) {
var opened_str = "", lim = "", t = 1, a = il.Accordion.data[id];
$("#" + id).children().children("." + a.content_class).each(function () {
if (!$(this).hasClass("ilAccHideContent")) {
opened_str = opened_str + lim + "" + t;
lim = ";";
}
t++;
});
return opened_str;
},
getAllNr: function (id) {
var all_str = "", lim = "", t = 1, a = il.Accordion.data[id];
$("#" + id).children().children("." + a.content_class).each(function () {
all_str = all_str + lim + "" + t;
lim = ";";
t++;
});
return all_str;
},
clickHandler: function (e) {
var a, el, id;
//console.log("clicked");
id = e.data.id
a = il.Accordion.data[id];
el = e.data.el;
e.preventDefault();
if (a.animating) {
return false;
}
a.clicked_acc = el.next()[0];
if (il.Accordion.isOpened(a.clicked_acc)) {
il.Accordion.deactivate(id, el);
} else {
il.Accordion.handleAccordion(id, el);
}
return false;
},
initByIntId: function(int_id) {
for(var a in il.Accordion.data) {
if (a.int_id == int_id) {
il.Accordion.init(a.id);
}
}
},
addActiveHeadClass: function (id, acc_el) {
var a = il.Accordion.data[id];
if (a.active_head_class && a.active_head_class != "" && acc_el) {
const b = $(acc_el.parentNode).children(":first").children(":first");
b.addClass(a.active_head_class);
b.attr("aria-expanded", true);
}
},
removeActiveHeadClass: function (id, acc_el) {
var a = il.Accordion.data[id];
if (a.active_head_class && a.active_head_class != "" && acc_el) {
const b = $(acc_el.parentNode).children(":first").children(":first");
b.removeClass(a.active_head_class);
b.attr("aria-expanded", false);
}
},
showAll: function (e) {
var options, id = e.data.id;
var a = il.Accordion.data[id];
e.preventDefault();
e.stopPropagation();
if (a.multi) {
//console.log("deactivate");
a.animating = true;
$("#" + id).children().children("." + a.content_class).each(function () {
t = $(this);
if (t.hasClass("ilAccHideContent")) {
il.Accordion.addActiveHeadClass(id, this);
// fade in the accordion (currentAccordion)
options = il.Accordion.prepareShow(a, t);
$(t).animate(options, il.Accordion.duration, function () {
$(t).css("height", "auto");
// set the currently shown accordion
a.last_opened_acc = t;
il.Accordion.rerenderContent(t);
a.animating = false;
});
}
});
il.Accordion.saveAllAsOpenedTabs(a, id);
}
return false;
},
preparePrint: function() {
for(var id in il.Accordion.data) {
var a = il.Accordion.data[id];
$("#" + id).children().children("." + a.content_class).each(function () {
t = $(this);
if (t.hasClass("ilAccHideContent")) {
il.Accordion.addActiveHeadClass(id, this);
// fade in the accordion (currentAccordion)
options = il.Accordion.prepareShow(a, t);
$(t).animate(options, 0, function () {
$(t).css("height", "auto");
// set the currently shown accordion
a.last_opened_acc = t;
il.Accordion.rerenderContent(t);
a.animating = false;
});
}
});
il.Accordion.saveAllAsOpenedTabs(a, id);
};
},
hideAll: function (e) {
var id = e.data.id;
var a = il.Accordion.data[id];
e.preventDefault();
e.stopPropagation();
if (a.multi) {
// console.log("hide all");
//console.log("deactivate");
a.animating = true;
$("#" + id).children().children("." + a.content_class).each(function () {
t = $(this);
if (!t.hasClass("ilAccHideContent")) {
il.Accordion.removeActiveHeadClass(id, t);
if (a.orientation == 'vertical') {
options = { height: 0 }
} else {
options = { width: 0 }
}
t.animate(options, il.Accordion.duration, function () {
// console.log("adding hide to");
// console.log(this);
$(this).addClass("ilAccHideContent");
a.last_opened_acc = null;
a.animating = false;
});
}
});
if (typeof a.save_url != "undefined" && a.save_url != "") {
il.Util.sendAjaxGetRequestToUrl(a.save_url + "&act=clear&tab_nr=", {}, {}, null);
}
}
return false;
},
deactivate: function(id, el) {
var options, act, a = il.Accordion.data[id];
//console.log("deactivate");
a.animating = true;
//$(el).css("display", "block");
il.Accordion.removeActiveHeadClass(id, a.clicked_acc);
if (a.orientation == 'vertical') {
options = { height: 0 }
} else {
options = { width: 0 }
}
$(a.clicked_acc).animate(options, il.Accordion.duration, function () {
$(a.clicked_acc).addClass("ilAccHideContent");
a.last_opened_acc = null;
a.animating = false;
if (typeof a.save_url != "undefined" && a.save_url != "") {
act = (a.multi)
? "&act=rem"
: "&act=clear";
tab_nr = il.Accordion.getTabNr(a.clicked_acc);
il.Util.sendAjaxGetRequestToUrl(a.save_url + act + "&tab_nr=" + tab_nr, {}, {}, null);
}
});
},
getTabNr: function (acc_el) {
var tab_nr = 1;
var cel = acc_el.parentNode;
while(cel = cel.previousSibling) {
if (cel.nodeName.toUpperCase() == 'DIV') {
tab_nr++;
}
}
return tab_nr;
},
prepareShow: function(a, acc_el) {
var options;
if (a.orientation == 'vertical')
{
$(acc_el).css("position", 'relative')
.css("left", '-10000px')
.css("display", 'block');
$(acc_el).removeClass("ilAccHideContent");
var nh = a.height
? a.height
: $(acc_el).prop("scrollHeight");
$(acc_el).css("height", '0px')
.css("position", '')
.css("display", '')
.css("left", '');
options = {height: a.height
? a.height
: $(acc_el).prop("scrollHeight")};
}
else
{
$(acc_el).css("width", '0px');
$(acc_el).removeClass("ilAccHideContent");
options = { width: (a.width
? a.width
: $(acc_el).prop("scrollWidth"))};
}
return options;
},
saveAllAsOpenedTabs: function(a, id) {
if (typeof a.save_url != "undefined" && a.save_url != "") {
tab_nr = il.Accordion.getAllNr(id);
il.Util.sendAjaxGetRequestToUrl(a.save_url + "&act=set&tab_nr=" + tab_nr, {}, {}, null);
}
},
saveOpenedTabs: function(a, id) {
if (typeof a.save_url != "undefined" && a.save_url != "")
{
if (a.multi) {
tab_nr = il.Accordion.getAllOpenedNr(id);
} else {
tab_nr = il.Accordion.getTabNr(a.last_opened_acc);
}
act = "&act=set";
il.Util.sendAjaxGetRequestToUrl(a.save_url + act + "&tab_nr=" + tab_nr, {}, {}, null);
}
},
handleAccordion: function(id, el) {
//console.log("handle");
var options, options2, last_acc, tab_nr, a = il.Accordion.data[id];
a.animating = true;
// add active class to opened accordion
if (a.active_head_class && a.active_head_class != '') {
if (a.last_opened_acc && !a.multi) {
il.Accordion.removeActiveHeadClass(id, a.last_opened_acc);
}
il.Accordion.addActiveHeadClass(id, a.clicked_acc);
}
// fade in the new accordion (currentAccordion)
options = il.Accordion.prepareShow(a, a.clicked_acc);
$(a.clicked_acc).animate(options, il.Accordion.duration, function () {
$(a.clicked_acc).css("height", "auto");
if (a.reset_width) {
$(a.clicked_acc).css("width", a.width);
}
// set the currently shown accordion
a.last_opened_acc = a.clicked_acc;
il.Accordion.afterOpening(a.clicked_acc);
il.Accordion.saveOpenedTabs(a, id);
a.animating = false;
});
// fade out the currently shown accordion (last_opened_acc)
if ((last_acc = a.last_opened_acc) && !a.multi) {
if (a.orientation == 'vertical') {
options2 = {height: 0};
} else {
options2 = {width: 0};
}
$(last_acc).animate(options2, il.Accordion.duration, function () {
$(last_acc).addClass("ilAccHideContent");
});
}
},
afterOpening: function (acc_el) {
$(acc_el).trigger("il.accordion.opened", [acc_el]);
il.Accordion.rerenderContent(acc_el);
},
rerenderContent: function(acc_el) {
// rerender mathjax
if (typeof MathJax != "undefined") {
MathJax.Hub.Queue(["Reprocess",MathJax.Hub, acc_el[0]]);
}
// see http://docs.mathjax.org/en/latest/typeset.html
// rerender google maps
if (typeof ilMapRerender != "undefined") {
ilMapRerender(acc_el);
}
// rerender copage content
if (il && il.COPagePres) {
il.COPagePres.accordionRerender(acc_el);
}
}
};
(function ($, il){
$(function () {
il.Accordion.initAll();
});
}($, il));
File diff suppressed because it is too large Load Diff
@@ -1,37 +0,0 @@
div.ilc_QuestionPlaceHolder
{
padding: 10px 10px 10px 10px;
background-color: #F4F4FF;
border-width: 1px;
font-size: 10px;
border-color: #D0D0FF;
border-style: solid;
background-image: url(../../../templates/default/images/question_placeholder.png);
font-weight: bold;
}
div.ilc_MediaPlaceHolder
{
padding: 10px 10px 10px 10px;
background-color: #F4F4FF;
border-width: 1px;
font-size: 10px;
border-color: #D0D0FF;
border-style: solid;
min-height:100px;
font-weight: bold;
background-image: url(../../../templates/default/images/media_placeholder.png);
}
div.ilc_TextPlaceHolder,
div.ilc_VerificationPlaceHolder /* no custom image yet */
{
padding: 10px 10px 10px 10px;
background-color: #F4F4FF;
border-width: 1px;
font-size: 10px;
border-color: #D0D0FF;
border-style: solid;
font-weight: bold;
background-image: url(../../../templates/default/images/text_placeholder.png);
}
@@ -1,86 +0,0 @@
div.ilc_Code {
overflow: auto;
max-width: 100%;
max-height: 400px;
border: 1px solid #E0E0E0;
background: white;
padding: 20px 5px;
margin: 10px 0px;
font-family: Pragmata, Menlo, 'DejaVu LGC Sans Mono', 'DejaVu Sans Mono', Consolas, 'Everson Mono', 'Lucida Console', 'Andale Mono', 'Nimbus Mono L', 'Liberation Mono', FreeMono, 'Osaka Monospaced', Courier, 'New Courier', monospace;
font-size: 80%;
}
#printViewPageContainer div.ilc_Code {
max-width: none;
max-height: none;
overflow: visible;
}
@media print {
div.ilc_Code {
max-width: none;
max-height: none;
overflow: visible;
}
}
table.ilc_Sourcecode {
}
td.ilc_LineNumbers {
background: #ffffff;
padding-left: 10px;
text-align: right;
}
td.ilc_Sourcecode {
background: white;
padding-left: 10px;
}
span.ilc_CodeCategory_1 {
text-decoration: underline;
color: navy;
}
span.ilc_CodeCategory_2 {
color: navy;
}
span.ilc_CodeCategory_3 {
color: #555555;
}
span.ilc_CodeQuote {
color: green;
}
span.ilc_CodeLinecomment {
color: gray;
}
span.ilc_CodeBlockcomment {
color: gray;
}
span.ilc_CodePrepro {
color: black;
}
span.ilc_CodeSelect {
color: black;
}
.ilc_Code {
font-size: 1em;
}
@@ -1,810 +0,0 @@
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
il.COPagePres =
{
/**
* Basic init function
*/
init: function () {
this.initToc();
this.initInteractiveImages();
this.updateQuestionOverviews();
this.initMapAreas();
this.initAdvancedContent();
this.initAudioVideo();
},
//
// Toc (as used in Wikis)
//
/**
* Init the table of content
*/
initToc: function () {
// init toc
var cookiePos = document.cookie.indexOf("pg_hidetoc=");
if (cookiePos > -1 && document.cookie.charAt(cookiePos + 11) == 1)
{
this.toggleToc();
}
},
/**
* Toggle the table of content
*/
toggleToc: function() {
var toc_on, toc_off, toc = document.getElementById('ilPageTocContent');
if (!toc) {
return;
}
toc_on = document.getElementById('ilPageTocOn');
toc_off = document.getElementById('ilPageTocOff');
if (toc && toc.style.display == 'none') {
toc.style.display = 'block';
toc_on.style.display = 'none';
toc_off.style.display = '';
document.cookie = "pg_hidetoc=0";
} else {
toc_on.style.display = '';
toc_off.style.display = 'none';
toc.style.display = 'none';
document.cookie = "pg_hidetoc=1";
}
},
//
// Interactive Images
//
iim_trigger: {},
iim_area: {},
iim_popup: {},
iim_marker: {},
dragging: false,
/**
* Init interactive images
*/
initInteractiveImages: function () {
// preload overlay images (necessary?)
// add onmouseover event to all map areas
$("map.iim > area").mouseover(this.overBaseArea);
$("map.iim > area").mouseout(this.outBaseArea);
$("map.iim > area").click(this.clickBaseArea);
$("a.ilc_marker_Marker").mouseover(this.overMarker);
$("a.ilc_marker_Marker").mouseout(this.outMarker);
$("a.ilc_marker_Marker").click(this.clickMarker);
},
/**
* Mouse over marker -> show the overlay image
*/
overMarker: function (e) {
var marker_tr_nr, iim_id;
if (this.dragging) {
return;
}
marker_tr_nr = il.COPagePres.iim_marker[e.target.id].tr_nr;
iim_id = il.COPagePres.iim_marker[e.target.id].iim_id;
il.COPagePres.handleOverEvent(iim_id, marker_tr_nr, true);
},
/**
* Mouse leaves marker -> hide the overlay image
*/
outMarker: function (e) {
var marker_tr_nr, iim_id;
if (this.dragging) {
return;
}
marker_tr_nr = il.COPagePres.iim_marker[e.target.id].tr_nr;
iim_id = il.COPagePres.iim_marker[e.target.id].iim_id;
il.COPagePres.handleOutEvent(iim_id, marker_tr_nr);
},
/**
* Mouse over base image map area -> show the overlay image
* and (on first time) init the image map of the overlay image
*/
overBaseArea: function (e) {
var area_tr_nr = il.COPagePres.iim_area[e.target.id].tr_nr,
iim_id = il.COPagePres.iim_area[e.target.id].iim_id;
il.COPagePres.handleOverEvent(iim_id, area_tr_nr, false);
},
/**
* Mouse over base image map area or marker -> show the overlay image
* and (on first time) init the image map of the overlay image
*/
handleOverEvent: function (iim_id, area_tr_nr, is_marker)
{
//console.log("over enter");
var k, j, tr, coords, ovx, ovy, base, ov, base_map_name, c, k2, i2, tr2;
if (this.dragging) {
return;
}
for (k in il.COPagePres.iim_trigger) {
tr = il.COPagePres.iim_trigger[k];
if (tr.nr == area_tr_nr && tr.iim_id == iim_id) {
base = $("img#base_img_" + tr.iim_id);
ov = $("img#iim_ov_" + tr.tr_id);
// no overlay image? -> skip
if (ov.length == 0) {
continue;
}
// no usamap (e.g. edit mode) -> skip)
if (typeof(base.attr('usemap')) === "undefined") {
continue;
}
base_map_name = base.attr('usemap').substr(1);
// display the overlay at the correct position
ov.css('position', 'absolute');
ovx = parseInt(tr.ovx, 10);
ovy = parseInt(tr.ovy, 10);
ov.css('display', '');
// this fixes the position in case of the toc2win
// view, if the fixed div has been scrolled
$(ov).position({
my: "left top",
at: "left+" + ovx + " top+" + ovy,
of: "img#base_img_" + tr.iim_id,
collision: "none"
});
// on first time we need to initialize the
// image map of the overlay image
if (tr.map_initialized == null && !is_marker)
{
tr.map_initialized = true;
//console.log(tr);
$("map[name='" + base_map_name + "'] > area").each(
function (i,el) {
// if title is the same, add area to overlay map
if (il.COPagePres.iim_area[el.id].tr_nr == area_tr_nr) {
coords = $(el).attr("coords");
// fix coords
switch($(el).attr("shape").toLowerCase()) {
case "rect":
c = coords.split(",");
coords = String((parseInt(c[0], 10) - ovx) + "," +
(parseInt(c[1], 10) - ovy) + "," +
(parseInt(c[2], 10) - ovx) + "," +
(parseInt(c[3], 10) - ovy));
break;
case "poly":
c = coords.split(",");
coords = "";
var sep = "";
for (j in c) {
if (j % 2 == 0) {
coords = coords + sep + parseInt(c[j] - ovx, 10);
} else {
coords = coords + sep + parseInt(c[j] - ovy, 10);
}
sep = ",";
}
break;
case "circle":
c = coords.split(",");
coords = String((parseInt(c[0], 10) - ovx) + "," +
(parseInt(c[1], 10) - ovy) + "," +
(parseInt(c[2], 10)));
break;
}
// set shape and coords
$("area#iim_ov_area_" + tr.tr_id).attr("coords", coords);
$("area#iim_ov_area_" + tr.tr_id).attr("shape", $(el).attr("shape"));
// add mouse event listeners
k2 = k;
i2 = "iim_ov_" + tr.tr_id;
tr2 = tr.tr_id;
$("area#iim_ov_area_" + tr.tr_id).mouseover(
function() {il.COPagePres.overOvArea(k2, true, i2);});
$("area#iim_ov_area_" + tr.tr_id).mouseout(
function() {il.COPagePres.overOvArea(k2, false, i2);});
$("area#iim_ov_area_" + tr.tr_id).click(
function(e) {il.COPagePres.clickOvArea(e, tr2);});
}
});
}
}
}
},
/**
* Leave a base image map area: hide corresponding images
*/
outBaseArea: function (e) {
var area_tr_nr = il.COPagePres.iim_area[e.target.id].tr_nr,
iim_id = il.COPagePres.iim_area[e.target.id].iim_id;
il.COPagePres.handleOutEvent(iim_id, area_tr_nr);
},
/**
* Leave a base image map area: hide corresponding images
*/
handleOutEvent: function (iim_id, area_tr_nr)
{
//console.log("out");
var k, tr;
if (this.dragging) {
return;
}
for (k in il.COPagePres.iim_trigger) {
tr = il.COPagePres.iim_trigger[k];
if (tr.nr == area_tr_nr && tr.iim_id == iim_id &&
(il.COPagePres.iim_trigger[k].over_ov_area == null ||
!il.COPagePres.iim_trigger[k].over_ov_area
)) {
$("img#iim_ov_" + tr.tr_id).css('display', 'none');
}
}
},
/**
* Triggered by mouseover/out on imagemap of overlay image
*/
overOvArea: function (k, value, ov_id) {
if (this.dragging) {
return;
}
//console.log("overOvArea " + k + ":" + ov_id);
il.COPagePres.iim_trigger[k].over_ov_area = value;
if (value) {
$("img#" + ov_id).css('display', '');
} else {
$("img#" + ov_id).css('display', 'none');
}
},
/**
* A marker is clicked
*/
clickMarker: function (e)
{
var k, tr,
marker_tr_nr = il.COPagePres.iim_marker[e.target.id].tr_nr,
iim_id = il.COPagePres.iim_marker[e.target.id].iim_id;
if (il.COPagePres.iim_marker[e.target.id].edit_mode == "1") {
return;
}
if (this.dragging) {
return;
}
// iterate through the triggers and search the correct one
for (k in il.COPagePres.iim_trigger) {
tr = il.COPagePres.iim_trigger[k];
if (tr.nr == marker_tr_nr && tr.iim_id == iim_id) {
il.COPagePres.handleAreaClick(e, tr.tr_id);
}
}
},
/**
* A base image map area is clicked
*/
clickBaseArea: function (e) {
var k, tr,
area_tr_nr = il.COPagePres.iim_area[e.target.id].tr_nr,
iim_id = il.COPagePres.iim_area[e.target.id].iim_id;
if (this.dragging) {
return;
}
// iterate through the triggers and search the correct one
for (k in il.COPagePres.iim_trigger) {
tr = il.COPagePres.iim_trigger[k];
if (tr.nr == area_tr_nr && tr.iim_id == iim_id) {
il.COPagePres.handleAreaClick(e, tr.tr_id);
}
}
},
/**
* Handle area click (triggered by base or overlay image map area)
*/
handleAreaClick: function (e, tr_id) {
var tr = il.COPagePres.iim_trigger[tr_id],
el = document.getElementById("iim_popup_" + tr.iim_id + "_" + tr.popup_nr),
base, pos, x, y;
if (el == null || this.dragging) {
e.preventDefault();
return;
}
// on first time we need to initialize content overlay
if (tr.popup_initialized == null) {
tr.popup_initialized = true;
il.Overlay.add("iim_popup_" + tr.iim_id + "_" + tr.popup_nr,
{"yuicfg":{"visible":false,"fixedcenter":false},
"auto_hide":false});
}
//console.log("showing trigger " + tr_id);
//console.log("iim_popup_" + tr['iim_id'] + "_" + tr['popup_nr']);
// show the overlay
base = $("img#base_img_" + il.COPagePres.iim_trigger[tr_id].iim_id);
pos = base.offset();
x = pos.left + parseInt(il.COPagePres.iim_trigger[tr_id].popx, 10);
y = pos.top + parseInt(il.COPagePres.iim_trigger[tr_id].popy, 10);
il.Overlay.setWidth("iim_popup_" + tr.iim_id + "_" + tr.popup_nr, il.COPagePres.iim_trigger[tr_id].popwidth);
il.Overlay.setHeight("iim_popup_" + tr.iim_id + "_" + tr.popup_nr, il.COPagePres.iim_trigger[tr_id].popheight);
il.Overlay.toggle(e, "iim_popup_" + tr.iim_id + "_" + tr.popup_nr, null, false, null, null, "click");
il.Overlay.setX("iim_popup_" + tr.iim_id + "_" + tr.popup_nr, x);
il.Overlay.setY("iim_popup_" + tr.iim_id + "_" + tr.popup_nr, y);
e.preventDefault();
},
/**
* A overlay image map area is clicked
*/
clickOvArea: function (e, tr_id){
il.COPagePres.handleAreaClick(e, tr_id);
},
addIIMTrigger: function(tr) {
//console.log(tr);
this.iim_trigger[tr.tr_id] = tr;
},
addIIMArea: function(a) {
//console.log(a);
this.iim_area[a.area_id] = a;
},
addIIMPopup: function(p) {
this.iim_popup[p.pop_id] = p;
},
addIIMMarker: function(m) {
var base, pos, mark, mx, my;
this.iim_marker[m.m_id] = m;
base = $("img#base_img_" + m.iim_id);
pos = base.position();
mark = $("a#" + m.m_id);
// display the marker at the correct position
mark.css('position', 'absolute');
mx = parseInt(m.markx, 10);
my = parseInt(m.marky, 10);
mark.css('left', pos.left + mx + $("#fixed_content").scrollLeft());
mark.css('top', pos.top + my + $("#fixed_content").scrollTop());
mark.css('display', '');
},
fixMarkerPositions: function () {
var m, k, base, pos, mark, mx, my;
for (k in il.COPagePres.iim_marker) {
m = il.COPagePres.iim_marker[k];
base = $("img#base_img_" + m.iim_id);
pos = base.position();
mark = $("a#" + m.m_id);
mark.css('position', 'absolute');
mx = parseInt(m.markx, 10);
my = parseInt(m.marky, 10);
mark.css('left', pos.left + mx + $("#fixed_content").scrollLeft());
mark.css('top', pos.top + my + $("#fixed_content").scrollTop());
}
},
/**
* Make marker draggable
*/
startDraggingMarker: function(tr_nr) {
var k, mark;
this.dragging = true;
for (k in il.COPagePres.iim_marker) {
if (il.COPagePres.iim_marker[k].tr_nr == tr_nr) {
mark = il.COPagePres.iim_marker[k];
$("a#" + il.COPagePres.iim_marker[k].m_id).css("display", "");
il.COPagePres.fixMarkerPositions();
$("a#" + il.COPagePres.iim_marker[k].m_id).draggable({
drag: function(event, ui) {
var base, bpos, marker, mpos, position;
base = $("img#base_img_" + mark.iim_id);
bpos = base.position();
marker = $("a#" + mark.m_id);
mpos = marker.position();
position = (Math.round(mpos.left) - Math.round(bpos.left)) + "," +
(Math.round(mpos.top) - Math.round(bpos.top));
$("input#markpos_" + mark.tr_nr).attr("value", position);
}
});
il.COPagePres.initDragToolbar();
}
else
{
$("a#" + il.COPagePres.iim_marker[k].m_id).css("display", "none");
}
}
},
stopDraggingMarker: function() {
this.dragging = false;
},
/**
* Make overlay draggable
*/
startDraggingOverlay: function(tr_nr) {
var k, trigger, dtr, ov, base, bpos, ovx, ovy;
this.dragging = true;
for (k in il.COPagePres.iim_trigger) {
trigger = il.COPagePres.iim_trigger[k];
if (trigger.nr == tr_nr) {
dtr = trigger;
ov = $("img#iim_ov_" + dtr.tr_id);
// remove map for dragging
ov.attr('usemap','');
il.COPagePres.initDragToolbar();
base = $("img#base_img_" + dtr.iim_id);
bpos = base.position();
ovx = parseInt(dtr.ovx, 10);
ovy = parseInt(dtr.ovy, 10);
ov.css('left', bpos.left + ovx + $("#fixed_content").scrollLeft());
ov.css('top', bpos.top + ovy + $("#fixed_content").scrollTop());
ov.css('display', '');
ov.css("position", "absolute");
dtr = trigger;
ov.draggable({
stop: function(event, ui) {
var ovpos, position;
ovpos = ov.position();
position = (Math.round(ov.offset().left) - Math.round(base.offset().left)) + "," +
(Math.round(ov.offset().top) - Math.round(base.offset().top));
$("input#ovpos_" + dtr.nr).attr("value", position);
}
});
}
}
},
/**
* Make popup draggable
*/
startDraggingPopup: function(tr_nr) {
var i, k, dtr, cpop, pdummy, base, bpos, popx, popy;
this.dragging = true;
// get correct trigger
for (k in il.COPagePres.iim_trigger) {
if (il.COPagePres.iim_trigger[k].nr == tr_nr) {
dtr = il.COPagePres.iim_trigger[k];
// get correct popup
for (i in il.COPagePres.iim_popup) {
if (il.COPagePres.iim_popup[i].nr ==
il.COPagePres.iim_trigger[k].popup_nr) {
cpop = il.COPagePres.iim_popup[i];
pdummy = document.getElementById("popupdummy");
if (pdummy == null) {
$('div#il_center_col').append('<div id="popupdummy" class="ilc_iim_ContentPopup"></div>');
pdummy = $("div#popupdummy");
} else {
pdummy = $("div#popupdummy");
}
il.COPagePres.initDragToolbar();
base = $("img#base_img_" + cpop.iim_id);
bpos = base.position();
//console.log(dtr);
popx = parseInt(dtr.popx, 10);
popy = parseInt(dtr.popy, 10);
pdummy.css("position", "absolute");
pdummy.css('left', bpos.left + popx + $("#fixed_content").scrollLeft());
pdummy.css('top', bpos.top + popy + $("#fixed_content").scrollTop());
pdummy.css('width', dtr.popwidth);
pdummy.css('height', dtr.popheight);
pdummy.css('display', '');
pdummy.draggable({
stop: function(event, ui) {
var pdpos, position;
pdpos = pdummy.position();
position = (Math.round(pdummy.offset().left) - Math.round(base.offset().left)) + "," +
(Math.round(pdummy.offset().top) - Math.round(base.offset().top));
$("input#poppos_" + dtr.nr).attr("value", position);
}
});
}
}
}
}
},
/**
* Init drag toolbar
*/
initDragToolbar: function() {
// show the toolbar
$("#drag_toolbar").removeClass("ilNoDisplay");
this.fixMarkerPositions();
$("#save_pos_button").click(function () {
$("input#update_tr_button").trigger("click");
});
},
//
// Question Overviews
//
qover: {},
ganswer_data: {},
addQuestionOverview: function(conf) {
this.qover[conf.id] = conf;
},
updateQuestionOverviews: function() {
var correct = {},
incorrect = {},
correct_cnt = 0,
incorrect_cnt = 0,
answered_correctly, index, k, i, ov_el,ul, j, qtext;
if (typeof questions === 'undefined') {
// #17532 - question overview does not work in copage editor / preview
for (i in this.qover) {
ov_el = $('div#' + this.qover[i].div_id);
$(ov_el).addClass('ilBox');
$(ov_el).css('margin', '5px');
ov_el.empty();
ov_el.append('<div class="il_Description_no_margin">' + ilias.questions.txt.ov_preview + '</div>');
}
return;
}
for (k in questions) {
answered_correctly = true;
index=parseInt(k, 10);
if (!isNaN(index)) {
if (!answers[index]) {
answered_correctly = false;
} else {
if (answers[index].passed!=true) {
answered_correctly = false;
}
}
if (!answered_correctly) {
incorrect[k] = k;
incorrect_cnt++;
} else {
correct[k] = k;
correct_cnt++;
}
}
}
// iterate all question overview elements
for (i in this.qover) {
ov_el = $('div#' + this.qover[i].div_id);
// remove all children
ov_el.empty();
// show success message, if all questions have been answered
if (incorrect_cnt == 0) {
ov_el.attr("class", 'ilc_qover_Correct');
ov_el.append(
ilias.questions.txt.ov_all_correct);
} else {
ov_el.attr("class", 'ilc_qover_Incorrect');
// show message including of number of not
// correctly answered questions
if (this.qover[i].short_message == "y") {
ov_el.append('<div class="ilc_qover_StatusMessage">' +
ilias.questions.txt.ov_some_correct.split("[x]").join(String(correct_cnt))
.split("[y]").join(String(incorrect_cnt + correct_cnt)) +
"</div>"
);
}
if (this.qover[i].list_wrong_questions == "y") {
ov_el.append(
'<div class="ilc_qover_WrongAnswersMessage">' +
ilias.questions.txt.ov_wrong_answered + ":" + '</div>'
);
// list all incorrect answered questions
ov_el.append('<ul class="ilc_list_u_BulletedList"></ul>');
ul = $('div#' + this.qover[i].div_id + " > ul");
for (j in incorrect) {
qtext = questions[j].question;
if (questions[j].type == "assClozeTest") {
qtext = questions[j].title;
}
ul.append(
'<li class="ilc_list_item_StandardListItem">' +
'<a href="#" onclick="return il.COPagePres.jumpToQuestion(\'' + j + '\');" class="ilc_qoverl_WrongAnswerLink">' + qtext + '</a>'
+ '</li>');
}
}
}
}
},
// jump to a question
jumpToQuestion: function(qid) {
if (typeof pager !== "undefined") {
pager.jumpToElement("container" + qid);
}
return false;
},
setGivenAnswerData: function (data) {
ilCOPagePres.ganswer_data = data;
},
//
// Map area functions
//
// init map areas
initMapAreas: function() {
$('img[usemap^="#map_il_"][class!="ilIim"]').maphilight({"neverOn":true});
},
////
//// Handle advanced content
////
showadvcont: true,
initAdvancedContent: function() {
var c = $("div.ilc_section_AdvancedKnowledge"),
b = $("#ilPageShowAdvContent"), cookiePos;
if (c.length > 0 && b.length > 0) {
cookiePos = document.cookie.indexOf("pg_hideadv=");
if (cookiePos > -1 && document.cookie.charAt(cookiePos + 11) == 1) {
this.showadvcont = false;
}
$("#ilPageShowAdvContent").css("display", "block");
if (il.COPagePres.showadvcont) {
$("div.ilc_section_AdvancedKnowledge").css("display", "");
$("#ilPageShowAdvContent > span:nth-child(1)").css("display", "none");
} else {
$("div.ilc_section_AdvancedKnowledge").css("display", "none");
$("#ilPageShowAdvContent > span:nth-child(2)").css("display", "none");
}
$("#ilPageShowAdvContent").click(function () {
if (il.COPagePres.showadvcont) {
$("div.ilc_section_AdvancedKnowledge").css("display", "none");
$("#ilPageShowAdvContent > span:nth-child(1)").css("display", "");
$("#ilPageShowAdvContent > span:nth-child(2)").css("display", "none");
il.COPagePres.showadvcont = false;
document.cookie = "pg_hideadv=1";
} else {
$("div.ilc_section_AdvancedKnowledge").css("display", "");
$("#ilPageShowAdvContent > span:nth-child(1)").css("display", "none");
$("#ilPageShowAdvContent > span:nth-child(2)").css("display", "");
il.COPagePres.showadvcont = true;
document.cookie = "pg_hideadv=0";
}
return false;
});
}
},
////
//// Audio/Video
////
initAudioVideo: function (acc_el) {
var $elements;
if (acc_el) {
$elements = $(acc_el).find('video.ilPageVideo,audio.ilPageAudio');
} else {
$elements = $('video.ilPageVideo,audio.ilPageAudio');
}
if ($elements.mediaelementplayer) {
$elements.each(function(i, el) {
var def, cfg;
def = $(el).find("track[default='default']").first().attr("srclang");
cfg = {};
if (def != ""){
cfg.startLanguage = def;
}
$(el).mediaelementplayer(cfg);
});
}
},
accordionRerender: function (acc_el) {
$(acc_el).find('video.ilPageVideo,audio.ilPageAudio').each(function(i, el) {
if (el.player) el.player.remove();
});
il.COPagePres.initAudioVideo(acc_el);
},
setFullscreenModalShowSignal: function (signal, suffix) {
il.COPagePres.fullscreen_signal = signal;
il.COPagePres.fullscreen_suffix = suffix
$('#il-copg-mob-fullscreen' + suffix).closest(".modal").on('shown.bs.modal', function () {
il.COPagePres.resizeFullScreenModal(suffix);
}).on('hidden.bs.modal', function () {
$("#il-copg-mob-fullscreen" + suffix).attr("src", "");
});
},
openFullScreenModal: function (target) {
console.log("openFullScreenModal: " + target);
$("#il-copg-mob-fullscreen" + il.COPagePres.fullscreen_suffix).attr("src", target);
$(document).trigger(il.COPagePres.fullscreen_signal, {
id: il.COPagePres.fullscreen_signal,
event: 'click',
triggerer: $(document),
options: JSON.parse('[]')
});
},
resizeFullScreenModal: function (suffix) {
var vp = il.Util.getViewportRegion();
var ifr = il.Util.getRegion('#il-copg-mob-fullscreen' + suffix);
$('.il-copg-mob-fullscreen').css("height", (vp.height - ifr.top + vp.top - 120) + "px");
}
};
il.Util.addOnLoad(function() {il.COPagePres.init();});
File diff suppressed because it is too large Load Diff
@@ -1,27 +0,0 @@
if (typeof il == "undefined") {
il = {};
}
il.ExtLink = {
/**
* Linkify wrapper
*/
autolink: function (selector, link_class) {
$(selector).linkify({
validate: {
url: (val) => /^https?:\/\//.test(val), // only allow URLs that begin with a protocol
email: false // don't linkify emails
}
});
if (typeof link_class !== "undefined") {
$(selector + " a.linkified").addClass(link_class);
}
if (typeof selector === "string") {
$(selector + " a.linkified[target='_blank']").attr("rel", "noreferrer noopener");
} else {
$(selector).find("a.linkified[target='_blank']").attr("rel", "noreferrer noopener");
}
}
}
@@ -1,186 +0,0 @@
var OSDNotifier, OSDNotifications = function (settings) {
$.extend(
{
initialNotifications: [],
pollingIntervall: 0,
closeHtml: ''
},
settings
);
return (function () {
return new function () {
var me = this,
lastRequest = 0,
items = {};
$("body").append('<div class="osdNotificationContainer"></div>');
$(settings.initialNotifications).each(function () {
items['osdNotification_' + this.notification_osd_id] = this;
});
function closeNotification(notificationElement) {
notificationElement.remove();
}
this.removeNotification = function (id, callback) {
$.get(
"ilias.php",
{
baseClass: 'ilObjChatroomGUI',
cmd: 'removeOSDNotifications',
cmdMode: 'asynch',
notification_id: id
},
function (data) {
closeNotification($('#osdNotification_' + id));
if (items['osdNotification_' + id])
delete items['osdNotification_' + id];
if (typeof callback === 'function') {
callback();
}
}
);
};
function getParam(params, ns, defaultValue) {
if (typeof params === 'undefined')
return defaultValue;
var parts = ns.split('.', 2);
if (parts.length > 1) {
return (!params[parts[0]] || typeof params[parts[0]][parts[1]] === 'undefined') ? defaultValue : params[parts[0]][parts[1]];
}
else {
return (!params[ns]) ? defaultValue : params[ns];
}
}
function renderItems(data, init) {
var currentTime = parseInt(new Date().getTime() / 1000),
newItems = false;
$(data.notifications).each(function () {
if (this.type === 'osd_maint') {
if (this.data.title === 'deleted') {
closeNotification($('#osdNotification_' + this.data.shortDescription));
}
} else {
var id = this.notification_osd_id;
if ($('#osdNotification_' + id).length == 0 && (this.valid_until > currentTime || this.valid_until == 0)) {
newItems = true;
var newElement = $(
'<div class="osdNotification" id="osdNotification_' + this.notification_osd_id + '">'
+ ((getParam(this.data.handlerParams, 'osd.closable', true)) ? ('<div class="btn-link" style="float: right" onclick="OSDNotifier.removeNotification(' + this.notification_osd_id + ')">' + settings.closeHtml + '</div>') : '')
+ '<div class="osdNotificationTitle">'
+ (this.data.iconPath ? '<img class="osdNotificationIcon" src="' + this.data.iconPath + '" alt="" />' : '')
+ (this.data.link ? ('<a class="target_link" href="' + this.data.link + '" target="' + this.data.linktarget + '">' + this.data.title + '</a>') : this.data.title)
+ '</div>'
+ '<div class="osdNotificationShortDescription">' + this.data.shortDescription + '</div>'
+ '</div>'
);
$('.osdNotificationContainer').append(newElement);
if (getParam(this.data.handlerParams, 'osd.closable', true)) {
let href = newElement.find('.target_link').attr('href');
newElement.find('.target_link').on("click", function () {
me.removeNotification(id, function () {
window.location.href = href;
});
});
}
newElement.find('.osdNotificationShortDescription a').on("click", function () {
me.removeNotification(id);
});
if (this.visible_for != 0) {
window.setTimeout(function() {
me.removeNotification(id);
}, this.visible_for * 1000);
}
}
items['osdNotification_' + this.notification_osd_id] = this;
}
if (!init && settings.playSound && newItems) {
var id = 'notification_' + Math.random().toString(36).substr(2, 5),
$notielm;
$notielm = $('<audio id="' + id + '"></audio>');
$notielm.append($('<source src="Modules/Chatroom/sounds/receive.mp3" type="audio/mp3" />'));
$notielm.append($('<source src="Modules/Chatroom/sounds/receive.ogg" type="audio/ogg" />'));
$notielm.css({
width: 0,
height: 0
});
$("body").append($notielm);
$
.when($("body").append($notielm))
.then(function() {
var p = $("#" + id).get(0).play();
if (p !== undefined) {
p.then(function() {
console.log("Played sound successfully!");
}).catch(function(e) {
console.log("Could not play sound, autoplay policy changes: https://developers.google.com/web/updates/2017/09/autoplay-policy-changes");
});
}
});
}
});
$.each(items, function () {
if (this.valid_until < data.server_time && this.valid_until != 0) {
closeNotification($('#osdNotification_' + this.notification_osd_id));
if (items['osdNotification_' + this.notification_osd_id])
delete items['osdNotification_' + this.notification_osd_id];
}
});
}
this.poll = function () {
$.get(
"ilias.php",
{
baseClass:'ilObjChatroomGUI',
cmd: 'getOSDNotifications',
cmdMode: 'asynch',
/*
* minus 10 seconds for getting really all messages, even if they
* arrived while processing
*/
max_age: Math.abs(lastRequest - 10 - (parseInt(new Date().getTime() / 1000)))
},
function (data) {
if (typeof data !== "object") {
return;
}
lastRequest = parseInt(new Date().getTime() / 1000);
renderItems(data);
if (settings.pollingIntervall * 1000) {
window.setTimeout(me.poll, settings.pollingIntervall * 1000);
}
},
'json'
);
};
renderItems({notifications:settings.initialNotifications}, true);
if (settings.pollingIntervall * 1000) {
window.setTimeout(me.poll, settings.pollingIntervall * 1000);
}
};
})();
};
@@ -1,45 +0,0 @@
.osdNotificationContainer {
position: fixed;
right: 30px;
top: 45px;
z-index: 2000;
width: 235px;
}
.osdNotification {
margin-bottom: 10px;
background-color: white;
/* no border in flat design
border: 1px solid #FFDD77;
border-color: #BCCAE5 #BCCAE5 #A7B4CC; */
/*padding: 8px;*/
word-wrap: break-word;
font-size: small;
text-wrap: suppress;
word-break: break-strict;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.osdNotificationTitle {
padding: 8px;
background-color: #E2E3E4;
}
.osdNotificationIcon {
/*float: left;*/
line-height: 100%;
vertical-align: bottom;
margin-right: 5px;
}
.osdNotificationShortDescription {
margin: 8px;
padding-bottom: 8px;
}
.osdNotification .btn-link {
margin-right: 5px;
margin-top: 5px;
}
@@ -1,182 +0,0 @@
/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
il.Explorer2 = {
current_search_term: '',
selects: {},
configs: {},
init: function (config, js_tree_config) {
if (config.ajax) {
js_tree_config.core.data = {url: config.url + "&exp_cmd=getNodeAsync",
data: function(n) {
var id = n.id;
if (n.id === "#") {
id = "";
}
return {node_id: id,
exp_cont: config.container_id,
searchterm: il.Explorer2.current_search_term
};
}};
}
config.js_tree_config = js_tree_config;
console.log(js_tree_config);
il.Explorer2.configs[config.container_id] = config;
$("#" + config.container_id).on("loaded.jstree", function (event, data) {
var i;
$("#" + config.container_outer_id).removeClass("ilNoDisplay");
for (i = 0; i < config.second_hnodes.length; i++) {
$("#" + config.second_hnodes[i]).addClass("ilExplSecHighlight");
}
console.log("loaded jstree");
}).on("open_node.jstree close_node.jstree", function (event, data) {
il.Explorer2.toggle(event, data);
}).on('ready.jstree', function (e, data) {
il.Explorer2.setEvents("#" + config.container_id, config.container_id);
}).on('after_open.jstree', function (e, data) {
var cid = data.node.id, p;
if (cid !== "#") {
p = "#" + cid;
setTimeout(function() {
il.Explorer2.setEvents(p, config.container_id);
}, 500);
}
}).jstree(js_tree_config);
},
setEvents: function(p, cid) {
$(p).find("a").on("click", function (e) {
var href = $(this).attr("href");
var target = $(this).attr("target");
if (href != "#" && href != "") {
if (target == "_blank") {
window.open(href, '_blank');
} else {
document.location.href = href;
}
}
});
$(p + " .ilExpSearchInput").parent("a").replaceWith(function() { return $('input:first', this); });
$(p + " .ilExpSearchInput").on("keydown", function(e) {
if(e.keyCode === 13) {
e.stopPropagation();
e.preventDefault();
var pid = $(e.target).parents("li").parents("li").attr("id");
il.Explorer2.current_search_term = $(e.target).val();
console.log("refresh node " + pid);
$("#" + cid).jstree('refresh_node', pid);
}
});
},
toggle: function(event, data) {
var type = event.type, // "open_node" or "close_node"
id = data.node.id, // id of li element
container_id = event.target.id,
t = il.Explorer2, url;
// the args[2] parameter is true for the initially
// opened nodes, but not, if manually opened
// this is somhow undocumented, but it works
if (type == "open_node" &&
typeof t.configs[container_id].js_tree_config.core.initially_open[id] !== 'undefined') {
return;
}
url = t.configs[container_id].url;
if (url == '') {
return;
}
if (type == "open_node") {
url = url + "&exp_cmd=openNode";
} else {
url = url + "&exp_cmd=closeNode";
}
url = url + "&exp_cont=" + container_id + "&node_id=" + id;
il.Util.sendAjaxGetRequestToUrl(url, {}, {}, null);
},
//
// ExplorerSelectInputGUI related functions
//
// init select input
initSelect: function(id) {
$("#" + id + "_select").on("click", function (ev) {
il.UICore.unloadWrapperFromRightPanel();
il.UICore.showRightPanel();
il.UICore.loadWrapperToRightPanel(id + "_expl_wrapper");
return false;
});
$("#" + id + "_reset").on("click", function (ev) {
$("#" + id + "_hid").empty();
$("#" + id + "_cont_txt").empty();
$('#' + id + '_expl_content input[type="checkbox"]').each(function() {
this.checked = false;
});
return false;
});
$("#" + id + "_expl_content a.ilExplSelectInputButS").on("click", function (ev) {
var t = sep = "";
// create hidden inputs with values
$("#" + id + "_hid").empty();
$("#" + id + "_cont_txt").empty();
$('#' + id + '_expl_content input[type="checkbox"]').each(function() {
var n = this.name.substr(0, this.name.length - 6) + "[]",
ni = "<input type='hidden' name='" + n + "' value='" + this.value + "' />";
if (this.checked) {
t = t + sep + $(this).parent().find("span.ilExp2NodeContent").html();
sep = ", ";
$("#" + id + "_hid").append(ni);
}
});
$('#' + id + '_expl_content input[type="radio"]').each(function() {
var n = this.name.substr(0, this.name.length - 4),
ni = "<input type='hidden' name='" + n + "' value='" + this.value + "' />";
if (this.checked) {
t = t + sep + $(this).parent().find("span.ilExp2NodeContent").html();
sep = ", ";
$("#" + id + "_hid").append(ni);
}
});
$("#" + id + "_cont_txt").html(t);
il.UICore.hideRightPanel();
return false;
});
$("#" + id + "_expl_content a.ilExplSelectInputButC").on("click", function (ev) {
il.UICore.hideRightPanel();
return false;
});
},
selectOnClick: function (e, node_id) {
var el;
$('#' + node_id + ' input[type="checkbox"]:first').each(function() {
el = this;
setTimeout(function() {
el.checked = !el.checked;
}, 10);
});
$('#' + node_id + ' input[type="radio"]:first').each(function() {
el = this;
setTimeout(function() {
el.checked = true;
}, 10);
});
return false;
}
}
@@ -1,347 +0,0 @@
/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
il.Overlay = {
overlays: {},
cfg: {},
widthFixed: {},
trigger: {},
closeCnt: {},
closeProcessRunning: {},
toggle_cl: {},
waitMouseOut: 2,
waitAfterClicked: 20,
add: function (id, cfg) {
il.Overlay.overlays[id] =
new YAHOO.widget.Overlay(id, cfg.yuicfg);
il.Overlay.cfg[id] = cfg;
il.Overlay.closeCnt[id] = -1;
$("#" + id).on("mouseover",
function (e) {il.Overlay.mouseOver(e, id); });
$("#" + id).on("mouseout",
function (e) {il.Overlay.mouseOut(e, id); });
// close element
if (this.getCfg(id, 'close_el') != '') {
$("#" + this.getCfg(id, 'close_el')).on("click",
function (e) {il.Overlay.hide(e, id); });
}
if (cfg.trigger) {
this.addTrigger(cfg.trigger, cfg.trigger_event, id, cfg.anchor_id,
cfg.fixed_center, 'tl', 'bl');
}
il.Overlay.overlays[id].render();
// this.fixPosition(id); - see show()
},
addTrigger: function (tr_id, tr_ev, ov_id, anchor_id, center, ov_corner, anch_corner) {
il.Overlay.trigger[tr_id] =
{trigger_event: tr_ev, overlay_id: ov_id, anchor_id: anchor_id, center: center,
ov_corner: ov_corner, anch_corner: anch_corner};
var trigger = document.getElementById(tr_id);
// added this line instead due to bug 6724
$("#" + tr_id).off(tr_ev);
$("#" + tr_id).on(tr_ev,
function (event) {il.Overlay.togglePerTrigger(event, tr_id); return false; });
},
getCfg: function (id, name) {
if (this.cfg[id] == null || typeof (this.cfg[id]) == 'undefined') {
return null;
}
if (typeof (this.cfg[id][name]) == 'undefined') {
return null;
}
return this.cfg[id][name];
},
// toggle overlay by trigger elements (often anchor)
togglePerTrigger: function (e, tr_id) {
var ov_id = il.Overlay.trigger[tr_id].overlay_id,
anchor_id = il.Overlay.trigger[tr_id].anchor_id,
center = il.Overlay.trigger[tr_id].center,
ov_corner = il.Overlay.trigger[tr_id].ov_corner,
anch_corner = il.Overlay.trigger[tr_id].anch_corner;
this.toggle(e, ov_id, anchor_id, center, ov_corner, anch_corner,
il.Overlay.trigger[tr_id].trigger_event);
},
// toggle overlay
toggle: function (e, id, anchor_id, center, ov_corner, anch_corner, tr_ev) {
if (il.Overlay.overlays[id].cfg.getProperty('visible')) {
if (tr_ev != "mouseover") {
this.hide(e, id);
}
} else {
this.show(e, id, anchor_id, center, ov_corner, anch_corner);
}
},
// hide overlay
hide: function (e, id) {
this.overlays[id].hide();
if (e != null) {
// bug 9675
$.event.fix(e).preventDefault();
// e.preventDefault();
}
this.closeCnt[id] = -1;
this.closeProcessRunning[id] = false;
var toggle_el = this.getCfg(id, 'toggle_el'),
toggle_class_on = this.getCfg(id, 'toggle_class_on'),
toggle_obj;
if (toggle_el != null && toggle_class_on != null) {
toggle_obj = document.getElementById(toggle_el);
if (toggle_obj && this.toggle_cl[toggle_el]) {
toggle_obj.className = this.toggle_cl[toggle_el];
}
}
},
// show the overlay
show: function (e, id, anchor_id, center, ov_corner, anch_corner) {
var el, toggle_el, toggle_class_on, toggle_obj;
// hide all other overlays (currently the standard procedure)
il.Overlay.hideAllOverlays(e, true, id);
// display the overlay at the anchor position
el = document.getElementById(id);
el.style.display = 'block';
// #15431: TBD - should be above main main as default (panels) [#15377 (reverted)]
el.style.zIndex = "1200";
if (anchor_id != null && anchor_id != '') {
this.overlays[id].cfg.setProperty("context", [anchor_id, ov_corner, anch_corner]);
this.overlays[id].cfg.setProperty("fixedcenter", false);
} else if (center) {
this.overlays[id].cfg.setProperty("fixedcenter", true);
}
this.overlays[id].show();
this.fixPosition(id);
// invoke close process (if only the anchor is clicked,
// the overlay will be hidden after some time, mouseover on the overlay will prevent this)
if (this.getCfg(id, 'auto_hide')) {
this.closeCnt[id] = this.waitAfterClicked;
this.closeProcess(id);
}
// should an additional element be toggled (style class)
toggle_el = this.getCfg(id, 'toggle_el');
toggle_class_on = this.getCfg(id, 'toggle_class_on');
if (toggle_el != null && toggle_class_on != null) {
toggle_obj = document.getElementById(toggle_el);
if (toggle_obj) {
this.toggle_cl[toggle_el] = toggle_obj.className;
toggle_obj.className = toggle_class_on;
}
}
// get content asynchronously
if (this.getCfg(id, 'asynch')) {
this.loadAsynch(id, this.getCfg(id, 'asynch_url'));
}
// handle event
if (e) {
e = $.event.fix(e);
e.preventDefault();
e.stopPropagation();
}
},
fixPosition: function (id) {
var el = document.getElementById(id),
el_reg,
cl, cl_reg,
newHeight,
newy;
if (!el) {
return;
}
el.style.overflow = '';
el_reg = il.Util.getRegion(el);
cl_reg = il.Util.getViewportRegion();
cl = document.getElementById("fixed_content");
if (cl && $(el).closest(cl).length) {
cl_reg = il.Util.getRegion(cl);
}
// see bug 17227
if (el.style.position == "fixed") {
return;
}
// make it smaller, if window height is not sufficient
if (cl_reg.height < el_reg.height + 40) {
newHeight = cl_reg.height - 40;
if (newHeight < 150) {
newHeight = 150;
}
el.style.height = newHeight + "px";
if (!this.widthFixed[id]) {
el.style.width = el_reg.width + 20 + "px";
this.widthFixed[id] = true;
}
el_reg = il.Util.getRegion(el);
}
// to low -> show it higher
if (cl_reg.bottom - 20 < el_reg.bottom) {
newy = el_reg.y - (el_reg.bottom - cl_reg.bottom + 20);
if (newy < cl_reg.top) {
newy = cl_reg.top;
}
this.setY(id, newy);
el_reg = il.Util.getRegion(el);
}
// to far to the right -> show it more to the left
if (cl_reg.right - 20 < el_reg.right) {
this.setX(id, el_reg.x - (el_reg.right - cl_reg.right + 20));
}
el.style.overflow = 'auto';
},
/**
* Set width of an overlay
*/
setWidth: function (id, w) {
var el = document.getElementById(id);
el.style.width = w + "px";
},
/**
* Set height of an overlay
*/
setHeight: function (id, h) {
var el = document.getElementById(id);
el.style.height = h + "px";
},
/**
* Set x
*/
setX: function (id, x) {
$("#" + id).offset({top: $("#" + id).offset().top, left: x});
},
/**
* Set y
*/
setY: function (id, y) {
$("#" + id).offset({top: y, left: $("#" + id).offset().left});
},
// hide all overlays
hideAllOverlays: function (e, force, omit) {
var k, isIn, tgt, el, el_reg;
// hide all dropdowns, too!
$('[data-toggle="dropdown"]').parent().removeClass('open');
for (k in il.Overlay.overlays) {
isIn = false;
if (k == omit) {
continue;
}
if(!force)
{
// http://stackoverflow.com/questions/1403615/use-jquery-to-hide-a-div-when-the-user-clicks-outside-of-it
var ov_el = $("#" + k);
if (ov_el.is(e.target) || // if the target of the click isn't the container...
ov_el.has(e.target).length > 0) // ... nor a descendant of the container
{
isIn = true;
}
}
/* obsolete (see above)
// problems with form select: pageXY can be outside layer
if (!force) {
try {
tgt = e.target;
// #13209 - IE11 select options do not have offsetParent
if (tgt.offsetParent === null) {
tgt = tgt.parentNode;
}
if (tgt.offsetParent.id == k) {
isIn = true;
}
} catch (err) {
}
}
// try with event coordiantes
if (!force && !isIn) {
el = document.getElementById(k);
if (el != null) {
if (il.Util.coordsInElement(e.pageX, e.pageY, el)) {
isIn = true;
}
}
}
*/
if (!isIn) {
if (k != 'ilHelpPanel') {
il.Overlay.hide(null, k);
}
}
}
},
mouseOver: function (e, id) {
this.closeCnt[id] = -1;
//console.log("mouseOver");
},
mouseOut: function (e, id) {
if (this.getCfg(id, 'auto_hide')) {
this.closeCnt[id] = this.waitMouseOut;
if (!this.closeProcessRunning[id]) {
this.closeProcess(id);
}
}
},
closeProcess: function (id) {
if (this.closeCnt[id] > -1) {
this.closeCnt[id]--;
if (this.closeCnt[id] == 0) {
this.hide(null, id);
}
}
if (this.closeCnt[id] > -1) {
setTimeout("il.Overlay.closeProcess('" + id + "')", 200);
this.closeProcessRunning[id] = true;
} else {
this.closeProcessRunning[id] = false;
}
},
loadAsynch: function (id, sUrl) {
il.Util.ajaxReplaceInner(sUrl, id);
return false;
},
subscribe: function (id, ev, func) {
il.Overlay.overlays[id].subscribe(ev, func);
}
};
$(document).on("click",
function (e) {il.Overlay.hideAllOverlays(e, false, ""); });
Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

@@ -1,49 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="20px" height="20px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g>
<defs>
<path id="SVGID_1_" d="M15,2c-3.3,0-6.7,1.3-9.2,3.8c-5.1,5.1-5.1,13.3,0,18.4c4,4,9.8,4.8,14.6,2.6c0.1,0.3,0.2,0.5,0.5,0.7
c0.7,0.7,1.8,0.8,2.4,0.3l0.2-0.2l4.1,4.5H32v-4.4l-4.5-4.1l0.2-0.2c0.6-0.6,0.5-1.6-0.3-2.4c-0.2-0.2-0.5-0.4-0.7-0.5
c2.2-4.8,1.4-10.7-2.6-14.6C21.7,3.3,18.3,2,15,2z"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1.0544" y1="34.4085" x2="2.0544" y2="34.4085" gradientTransform="matrix(18.3845 -18.3845 -18.3845 -18.3845 620.6891 677.8428)">
<stop offset="0" style="stop-color:#FF8D2C"/>
<stop offset="1.000000e-02" style="stop-color:#FF8D2C"/>
<stop offset="1" style="stop-color:#E56E1E"/>
</linearGradient>
<polygon clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" points="-14.3,17 16.4,-13.6 47,17 16.4,47.6 "/>
</g>
<g>
<defs>
<rect id="SVGID_4_" x="2" y="2" width="30" height="30"/>
</defs>
<clipPath id="SVGID_5_">
<use xlink:href="#SVGID_4_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_5_)" fill="#FFFFFF" d="M22.2,22.2c4-4,4-10.5,0-14.4c-4-4-10.5-4-14.4,0c-4,4-4,10.5,0,14.4
C11.8,26.2,18.2,26.2,22.2,22.2"/>
</g>
<g>
<defs>
<path id="SVGID_6_" d="M9.1,9.1c-1.4,1.4-2.2,3.2-2.4,5.1C6.9,14,7,13.8,7.1,13.7c4.4-4.4,11.4-4.4,15.8,0
c0.2,0.2,0.3,0.3,0.4,0.5c-0.2-1.9-0.9-3.7-2.4-5.1c-1.6-1.6-3.8-2.4-5.9-2.4C12.9,6.6,10.7,7.5,9.1,9.1"/>
</defs>
<clipPath id="SVGID_7_">
<use xlink:href="#SVGID_6_" overflow="visible"/>
</clipPath>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="1.1037" y1="33.625" x2="2.1037" y2="33.625" gradientTransform="matrix(9.6359 -9.6359 -9.6359 -9.6359 322.3476 351.0721)">
<stop offset="0" style="stop-color:#4C6585"/>
<stop offset="1.983430e-02" style="stop-color:#4C6585"/>
<stop offset="1" style="stop-color:#5A789F"/>
</linearGradient>
<polygon clip-path="url(#SVGID_7_)" fill="url(#SVGID_8_)" points="3,10.4 15,-1.6 27,10.4 15,22.5 "/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

@@ -1,40 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
<!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
<!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
<!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
<!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
<!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
]>
<svg version="1.1" id="Layer_1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px"
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<switch>
<g i:extraneous="self">
<rect x="0" y="-0.008" fill="none" width="31.999" height="32"/>
<g>
<g>
<defs>
<path id="SVGID_1_" d="M7.5,5.242v1.025v1.258v18.217l1.999,1h14.5c0,0,0.501,0,0.501-0.501v-19c0,0,0-0.499-0.501-0.499H22.5
H9.499L8,5.742h14.5c0,0,0-0.5-0.467-0.5L7.5,5.242L7.5,5.242z"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-395.9653" y1="-295.9367" x2="-394.9653" y2="-295.9367" gradientTransform="matrix(17 0 0 17 6738.9097 5046.9165)">
<stop offset="0" style="stop-color:#538132"/>
<stop offset="0.0198" style="stop-color:#538132"/>
<stop offset="1" style="stop-color:#74A029"/>
</linearGradient>
<rect x="7.5" y="5.242" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="17" height="21.5"/>
</g>
</g>
<rect x="12.833" y="10.909" fill="#FFFFFF" width="8.333" height="5"/>
</g>
</switch>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

@@ -1,44 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<g>
<defs>
<path id="SVGID_1_" d="M4.5,4C4.5,4,4,4,4,4.5v22c0,0,0,0.5,0.5,0.5H24c0,0,0.5,0,0.5-0.5v-22c0,0,0-0.5-0.5-0.5H4.5z"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-131.2927" y1="152.1707" x2="-130.2927" y2="152.1707" gradientTransform="matrix(-20.5 0 0 20.5 -2667 -3104)">
<stop offset="0" style="stop-color:#FFE67E"/>
<stop offset="7.292820e-03" style="stop-color:#FFE67E"/>
<stop offset="8.671100e-02" style="stop-color:#FEE475"/>
<stop offset="0.4874" style="stop-color:#F7DA4B"/>
<stop offset="0.8025" style="stop-color:#F3D432"/>
<stop offset="0.9912" style="stop-color:#F2D228"/>
<stop offset="1" style="stop-color:#F2D228"/>
</linearGradient>
<rect x="4" y="4" clip-path="url(#SVGID_2_)" fill="url(#SVGID_3_)" width="20.5" height="23"/>
</g>
<g>
<defs>
<path id="SVGID_4_" d="M6.5,6.5H22v18H6.5V6.5z M4.6,4C4.6,4,4,4,4,4.5v21.9c0,0,0,0.5,0.6,0.5h19.4c0,0,0.6,0,0.6-0.5V4.5
c0,0,0-0.5-0.6-0.5H4.6z"/>
</defs>
<clipPath id="SVGID_5_">
<use xlink:href="#SVGID_4_" overflow="visible"/>
</clipPath>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-118.55" y1="165.175" x2="-117.55" y2="165.175" gradientTransform="matrix(20 0 0 -20 2375 3319)">
<stop offset="0" style="stop-color:#505050"/>
<stop offset="7.292820e-03" style="stop-color:#505050"/>
<stop offset="0.3563" style="stop-color:#6B6B6B"/>
<stop offset="0.7492" style="stop-color:#838383"/>
<stop offset="0.9912" style="stop-color:#8C8C8C"/>
<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
<rect x="4" y="4" clip-path="url(#SVGID_5_)" fill="url(#SVGID_6_)" width="20.5" height="23"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

@@ -1,36 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
<!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/">
<!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
<!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
<!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
<!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/">
<!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
<!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/">
]>
<svg version="1.1" id="Layer_1" xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="32px" height="32px"
viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<switch>
<g i:extraneous="self">
<g>
<rect x="0" fill="none" width="32" height="32"/>
<g>
<g>
<defs>
<rect id="SVGID_1_" x="0" width="32" height="32"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="#4C6486" d="M6,24h20V10H6V24z M27,26H5c-0.552,0-1-0.448-1-1V6h7v2h16
c0.552,0,1,0.447,1,1v16C28,25.553,27.552,26,27,26"/>
</g>
</g>
<rect x="6" y="10" fill="#FFFFFF" width="20" height="14"/>
</g>
</g>
</switch>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 777 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 781 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 359 B

@@ -1,499 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Egalware: GPW</title>
<style>
</style>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" />
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" />
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css" />
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-4-2021-11-03" />
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script src="./Services/JavaScript/js/Basic.js"></script>
<script src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js"></script>
<script src="./Services/Accordion/js/accordion.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js"></script>
<script src="./node_modules/jstree/dist/jstree.js"></script>
<script src="./Modules/LearningModule/js/LearningModule.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script src="./Services/Link/js/ilExtLink.js"></script>
<script src="src/UI/templates/js/MainControls/mainbar.js"></script>
<script src="src/UI/templates/js/MainControls/metabar.js"></script>
<script src="src/UI/templates/js/MainControls/slate.js"></script>
<script src="src/UI/templates/js/Page/stdpage.js"></script>
<script src="src/GlobalScreen/Client/dist/GS.js"></script>
<script src="./Services/COPage/js/ilCOPagePres.js"></script>
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js"></script>
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js"></script>
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js"></script>
<script src="Services/Notifications/templates/default/notifications.js"></script>
</head>
<body>
<div class="il-layout-page">
<header>
<div class="header-inner">
<div class="il-logo">
<a href="index.html">
<img src="./templates/default/images/HEaderIcon.png" class="img-standard" alt="ILIAS" />
</a>
<div class="il-pagetitle">
GPW Help
</div>
</div>
</div>
</header>
<div class="breadcrumbs">
</div>
<div class="il-system-infos">
</div>
<!-- html5 main-tag is not supported in IE / div is needed -->
<main class="il-layout-page-content">
<div>
<div id="mainspacekeeper" class="container-fluid ">
<div class="row" style="position: relative;">
<div id="fixed_content" class=" ilContentFixed">
<div id="mainscrolldiv">
<h2 class="ilAccHeadingHidden">Tabs</h2>
<span class="ilAccHidden"><a id="after_tabs"></a></span>
<div class="ilTabsContentOuter">
<div class="clearfix"></div>
<h2 class="ilAccHeadingHidden"><a id="after_tabs">SubTabs</a></h2>
<ul id="ilSubTab" class="ilSubTab nav nav-pills hidden-print">
</ul>
<span class="ilAccHidden"><a id="after_sub_tabs" name="after_sub_tabs"></a></span>
<div class="container-fluid" id="ilContentContainer">
<div class="row">
<div id="il_center_col" class="col-sm-12">
<div id="ilLMPageContent" class="ilc_page_frame_PageFrame">
<div class="ilc_page_tnav_TopNavigation">
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_170.html">
&nbsp;
Planner
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<div class="ilc_page_cont_PageContainer">
<span class="ilAccHidden">
<a name="il_lm_head" id="il_lm_head"></a>
</span>
<script>
<!--
focus();
//-->
</script>
<a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Introduzione a GPW</h1><!--COPage-PageTop--><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;float:left; clear:both; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_896/menu.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" alt="" /></div><figcaption style=""><div class="ilc_media_caption_MediaCaption" /></figcaption></figure><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Emph">GPW è un'applicazione web che si pone il compito di riunire in un solo ambiente diverse funzioni quali le timbrature dei lavoratori, la registrazione delle attività e di relativi commenti e descrizioni e la gestione dei progetti dell'organizzazione di appartenenza.</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">INDICE:</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><ul class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_170.html" target="_parent" id="il__pg_170_171_1">Funzionalità e Planner</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_169.html" target="_parent" id="il__pg_169_171_2">Attività e Progetti</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_167.html" target="_parent" id="il__pg_167_171_3">Timbrature</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_166.html" target="_parent" id="il__pg_166_171_4">Fast Rec</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_172.html" target="_parent" id="il__pg_172_171_5">Record List</a></span></li></ul><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Emph">Per navigare fra le pagine di questa sezione Help è necessario cliccare le frecce nella barra in alto.</span><!--Break--></div><div style="clear:both;"><!--Break--></div><div class='il-copg-mob-fullscreen-modal'>
<div class="modal fade il-modal-roundtrip" tabindex="-1" role="dialog" id="il_ui_fw_6204e6280f9e87_29310397">
<div class="modal-dialog" role="document" data-replace-marker="component">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<span class="modal-title">Full Screen</span>
</div>
<div class="modal-body">
<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen-lm-171'></iframe>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" aria-label="Close">Cancel</button>
</div>
</div>
</div>
</div>
</div>
<script>$(function () { il.COPagePres.setFullscreenModalShowSignal('il_signal_6204e6280f9800_38030753', '-lm-171'); });</script>
</div>
<div class="ilc_page_bnav_BottomNavigation">
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_170.html">
&nbsp;
Planner
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<!--</div>-->
<br />
<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div id="minheight"></div>-->
<!--<footer id="ilFooter" class="ilFooter hidden-print"><div class="container-fluid ilContainerWidth">-->
<!--<div class="row"><div class="ilFooterContainer form-inline"> </div></div></div></footer>-->
</div>
<footer role="contentinfo">
<div class="il-maincontrols-footer">
<div class="il-footer-content">
<div class="il-footer-text">
powered by ILIAS (v7.4 2021-11-03)
</div>
</div>
</div>
</footer>
</main>
</div>
<script>
il.Util.addOnLoad(function () {
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try { $(document).on('il_signal_6204e6280f9800_38030753', function (event, signalData) { il.UI.modal.showModal('il_ui_fw_6204e6280f9e87_29310397', { "ajaxRenderUrl": "", "keyboard": true, "url": "#il_ui_fw_6204e6280f9e87_29310397" }, signalData); return false; }); $(document).on('il_signal_6204e6280f9852_36823491', function () { il.UI.modal.closeModal('il_ui_fw_6204e6280f9e87_29310397'); return false; }); $(document).on('il_signal_6204e6280f9869_28771289', function (event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_6204e6280f9e87_29310397', signalData); }); } catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
OSDNotifier = OSDNotifications({
closeHtml: "<a class=\"glyph\" aria-label=\"Close\">\n<span class=\"glyphicon\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n glyphicon-remove\n\n\n\n\n\n\n\n\n\n\n\n\" aria-hidden=\"true\"><\/span>\n\n\n\n\n\n\n\n<\/a>\n",
initialNotifications: [],
pollingIntervall: 60,
playSound: false
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'triggerer', 'il_ui_fw_6204e628111be4_35882094', false);
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry', '0:0');
$('#il_ui_fw_6204e628111be4_35882094').on('click', function (event) {
$(this).trigger('il_signal_6204e628111882_33998407',
{
'id': 'il_signal_6204e628111882_33998407', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"0:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e628111768_79924970', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e628112939_83426889'); return false; }); $(document).on('il_signal_6204e628111787_86476907', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e628112939_83426889'); return false; }); $(document).on('il_signal_6204e628111798_65312084', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e628112939_83426889'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_6204e628112939_83426889'); } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_6204e628112d63_34868111', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033', 'T:0');
$('#il_ui_fw_6204e628112d63_34868111').on('click', function (event) {
$(this).trigger('il_signal_6204e628112a63_75743691',
{
'id': 'il_signal_6204e628112a63_75743691', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-glossary-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62810d140_63419298', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6281134e5_96288114'); return false; }); $(document).on('il_signal_6204e62810d164_50384393', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6281134e5_96288114'); return false; }); $(document).on('il_signal_6204e62810d173_12942744', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6281134e5_96288114'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_6204e6281134e5_96288114');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_6204e6281138a9_91688643', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033', 'T:1');
$('#il_ui_fw_6204e6281138a9_91688643').on('click', function (event) {
$(this).trigger('il_signal_6204e6281135e2_48430659',
{
'id': 'il_signal_6204e6281135e2_48430659', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:1","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-media-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62810d222_01946453', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e628113f68_60894522'); return false; }); $(document).on('il_signal_6204e62810d239_18058568', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e628113f68_60894522'); return false; }); $(document).on('il_signal_6204e62810d244_87960255', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e628113f68_60894522'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_6204e628113f68_60894522');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_6204e628114302_59955241', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033', 'T:2');
$('#il_ui_fw_6204e628114302_59955241').on('click', function (event) {
$(this).trigger('il_signal_6204e628114056_21302135',
{
'id': 'il_signal_6204e628114056_21302135', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:2","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-faq-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62810d2b3_06790573', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6281149b6_84120244'); return false; }); $(document).on('il_signal_6204e62810d2c1_61382208', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6281149b6_84120244'); return false; }); $(document).on('il_signal_6204e62810d2d2_48842315', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6281149b6_84120244'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_6204e6281149b6_84120244');
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e628114d21_74534103').on('click', function (event) {
$(this).trigger('il_signal_6204e62810d384_54449314',
{
'id': 'il_signal_6204e62810d384_54449314', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"toggle_tools"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e628115383_60246362').on('click', function (event) {
$(this).trigger('il_signal_6204e62810d378_33482429',
{
'id': 'il_signal_6204e62810d378_33482429', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"disengage_all"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d378_33482429'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d384_54449314'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627ed8356_20388197'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edaa09_29492362'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edbe90_82551881'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edc996_59912124'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628073194_30276774'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628074508_17178177'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075068_77202108'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075af9_83027183'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628111882_33998407'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628112a63_75743691'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6281135e2_48430659'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628114056_21302135'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d587_83493936'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d5a6_57228859'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d5b3_36999998');
$(window).resize(il.UI.maincontrols.mainbar.adjustToScreenSize);
il.UI.maincontrols.mainbar.init('');
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
});
</script>
</body>
</html>
@@ -1,180 +0,0 @@
/**
* Owl Carousel v2.3.3
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
/*
* Owl Carousel - Core
*/
.owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent;
/* position relative and z-index fix webkit rendering fonts issue */
position: relative;
z-index: 1; }
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
touch-action: manipulation;
-moz-backface-visibility: hidden;
/* fix firefox animation glitch */ }
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
/* fix for flashing background */
-webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0); }
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none; }
.owl-carousel .owl-item img {
display: block;
width: 100%; }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
display: none; }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
background: none;
color: inherit;
border: none;
padding: 0 !important;
font: inherit; }
.owl-carousel.owl-loaded {
display: block; }
.owl-carousel.owl-loading {
opacity: 0;
display: block; }
.owl-carousel.owl-hidden {
opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
-ms-touch-action: none;
touch-action: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-grab {
cursor: move;
cursor: grab; }
.owl-carousel.owl-rtl {
direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
float: right; }
/* No Js */
.no-js .owl-carousel {
display: block; }
/*
* Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
animation-duration: 1000ms;
animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
z-index: 0; }
.owl-carousel .owl-animated-out {
z-index: 1; }
.owl-carousel .fadeOut {
animation-name: fadeOut; }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
/*
* Owl Carousel - Auto Height Plugin
*/
.owl-height {
transition: height 500ms ease-in-out; }
/*
* Owl Carousel - Lazy Load Plugin
*/
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; }
/*
* Owl Carousel - Video Plugin
*/
.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000; }
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url("owl.video.play.png") no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none; }
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%; }
@@ -1,10 +0,0 @@
<svg width="28" height="32" viewBox="0 0 448 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M43.246 466.142C-15.184 405.853 -14.095 308.631 44.632 248.561L254.392 34C298.708 -11.332 370.743 -11.336 415.063 34C458.953 78.894 459.006 151.329 415.063 196.276L232.214 383.128C202.359 413.665 153.581 413.239 124.232 382.13C95.957 352.16 96.864 304.657 125.684 275.177L269.427 128.342C275.609 122.028 285.739 121.92 292.053 128.101L314.914 150.48C321.229 156.662 321.336 166.792 315.155 173.106L171.427 319.927C166.495 324.972 166.191 333.355 170.779 338.219C175.151 342.853 182.024 342.93 186.467 338.384L369.316 151.533C388.929 131.471 388.929 98.808 369.305 78.735C350.116 59.108 319.348 59.098 300.151 78.735L90.39 293.295C55.627 328.855 55.091 386.415 89.199 421.608C123.209 456.701 178.184 456.745 212.257 421.894L384.317 245.895C390.494 239.576 400.624 239.462 406.943 245.639L429.82 268.003C436.139 274.18 436.254 284.31 430.076 290.629L258.016 466.627C198.44 527.565 102.073 526.843 43.246 466.142V466.142Z" fill="#4C6586"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="448" height="512" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

@@ -1,3 +0,0 @@
<svg width="32" height="28" viewBox="0 0 576 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M572.52 241.4C518.29 135.59 410.93 64 288 64C165.07 64 57.6799 135.64 3.47994 241.41C1.19236 245.935 0.000488281 250.935 0.000488281 256.005C0.000488281 261.075 1.19236 266.075 3.47994 270.6C57.7099 376.41 165.07 448 288 448C410.93 448 518.32 376.36 572.52 270.59C574.808 266.065 575.999 261.065 575.999 255.995C575.999 250.925 574.808 245.925 572.52 241.4V241.4ZM288 400C259.519 400 231.678 391.555 207.998 375.732C184.317 359.909 165.86 337.419 154.961 311.106C144.062 284.794 141.211 255.84 146.767 227.907C152.323 199.974 166.038 174.315 186.177 154.177C206.315 134.038 231.974 120.323 259.907 114.767C287.84 109.211 316.794 112.062 343.106 122.961C369.419 133.86 391.909 152.317 407.732 175.998C423.554 199.679 432 227.519 432 256C432.009 274.913 428.291 293.642 421.057 311.117C413.824 328.592 403.217 344.47 389.844 357.844C376.47 371.217 360.592 381.824 343.117 389.057C325.642 396.291 306.913 400.009 288 400V400ZM288 160C279.431 160.12 270.918 161.395 262.69 163.79C269.472 173.007 272.727 184.349 271.864 195.759C271 207.17 266.076 217.893 257.985 225.985C249.893 234.077 239.17 239 227.759 239.864C216.349 240.727 205.007 237.472 195.79 230.69C190.542 250.026 191.489 270.521 198.499 289.29C205.509 308.059 218.228 324.158 234.866 335.32C251.504 346.481 271.224 352.145 291.25 351.512C311.275 350.879 330.598 343.983 346.499 331.793C362.399 319.603 374.077 302.734 379.888 283.56C385.699 264.386 385.351 243.872 378.893 224.906C372.435 205.94 360.191 189.476 343.886 177.833C327.581 166.19 308.035 159.953 288 160V160Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

@@ -1,10 +0,0 @@
<svg width="36" height="32" viewBox="0 0 576 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054C11.117 512 -11.945 471.945 6.47704 440.013L246.423 23.985C264.89 -8.02399 311.143 -7.966 329.577 23.985L569.517 440.013V440.013ZM288 354C262.595 354 242 374.595 242 400C242 425.405 262.595 446 288 446C313.405 446 334 425.405 334 400C334 374.595 313.405 354 288 354ZM244.327 188.654L251.745 324.654C252.092 331.018 257.354 336 263.727 336H312.273C318.646 336 323.908 331.018 324.255 324.654L331.673 188.654C332.048 181.78 326.575 176 319.691 176H256.308C249.424 176 243.952 181.78 244.327 188.654V188.654Z" fill="#4C6586"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="576" height="512" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 828 B

@@ -1,3 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M504 256C504 392.967 392.967 504 256 504C119.033 504 8 392.967 8 256C8 119.033 119.033 8 256 8C392.967 8 504 119.033 504 256ZM227.314 387.314L411.314 203.314C417.562 197.066 417.562 186.935 411.314 180.687L388.687 158.06C382.439 151.811 372.308 151.811 366.059 158.06L216 308.118L145.941 238.059C139.693 231.811 129.562 231.811 123.313 238.059L100.686 260.686C94.438 266.934 94.438 277.065 100.686 283.313L204.686 387.313C210.935 393.562 221.065 393.562 227.314 387.314V387.314Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 611 B

@@ -1,3 +0,0 @@
<svg width="30" height="30" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M464 32H336C309.5 32 288 53.5 288 80V208C288 234.5 309.5 256 336 256H416V320C416 355.3 387.3 384 352 384H344C330.7 384 320 394.7 320 408V456C320 469.3 330.7 480 344 480H352C440.4 480 512 408.4 512 320V80C512 53.5 490.5 32 464 32ZM176 32H48C21.5 32 0 53.5 0 80V208C0 234.5 21.5 256 48 256H128V320C128 355.3 99.3 384 64 384H56C42.7 384 32 394.7 32 408V456C32 469.3 42.7 480 56 480H64C152.4 480 224 408.4 224 320V80C224 53.5 202.5 32 176 32Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 571 B

@@ -1,3 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M173.898 439.404L7.49799 273.004C-2.49901 263.007 -2.49901 246.798 7.49799 236.8L43.701 200.596C53.698 190.598 69.908 190.598 79.905 200.596L192 312.69L432.095 72.596C442.092 62.599 458.302 62.599 468.299 72.596L504.502 108.8C514.499 118.797 514.499 135.006 504.502 145.004L210.102 439.405C200.104 449.402 183.895 449.402 173.898 439.404V439.404Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 479 B

@@ -1,3 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M216 0H296C309.3 0 320 10.7 320 24V192H407.7C425.5 192 434.4 213.5 421.8 226.1L269.7 378.3C262.2 385.8 249.9 385.8 242.4 378.3L90.1 226.1C77.5 213.5 86.4 192 104.2 192H192V24C192 10.7 202.7 0 216 0ZM512 376V488C512 501.3 501.3 512 488 512H24C10.7 512 0 501.3 0 488V376C0 362.7 10.7 352 24 352H170.7L219.7 401C239.8 421.1 272.2 421.1 292.3 401L341.3 352H488C501.3 352 512 362.7 512 376ZM388 464C388 453 379 444 368 444C357 444 348 453 348 464C348 475 357 484 368 484C379 484 388 475 388 464ZM452 464C452 453 443 444 432 444C421 444 412 453 412 464C412 475 421 484 432 484C443 484 452 475 452 464Z" fill="white"/>
</svg>

Before

Width:  |  Height:  |  Size: 726 B

@@ -1,10 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M14.0998 142.1L60.1998 188.2C64.8998 192.9 72.4998 192.9 77.1998 188.2L188.2 77.2C192.9 72.5 192.9 64.9 188.2 60.2L142.1 14.1C123.4 -4.59999 92.9998 -4.59999 74.1998 14.1L14.0998 74.2C-4.70021 92.9 -4.70021 123.3 14.0998 142.1ZM227.8 99.8L490.4 362.4L511.6 483.9C514.5 500.3 500.2 514.5 483.8 511.7L362.3 490.4L99.6998 227.8C94.9998 223.1 94.9998 215.5 99.6998 210.8L210.7 99.8C215.5 95.1 223.1 95.1 227.8 99.8V99.8ZM387.9 339.9C393.4 334.4 393.4 325.6 387.9 320.1L233.9 166.1C228.4 160.6 219.6 160.6 214.1 166.1C208.6 171.6 208.6 180.4 214.1 185.9L368.1 339.9C373.6 345.4 382.4 345.4 387.9 339.9V339.9ZM424 424H376V460.3L440.5 471.6L471.6 440.5L460.3 376H424V424Z" fill="#4C6586"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="512" height="512" fill="white" transform="matrix(-1 0 0 1 512 0)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 960 B

@@ -1,3 +0,0 @@
<svg width="12" height="32" viewBox="0 0 192 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M176 432C176 476.112 140.112 512 96 512C51.888 512 16 476.112 16 432C16 387.888 51.888 352 96 352C140.112 352 176 387.888 176 432ZM25.26 25.199L38.86 297.199C39.499 309.972 50.041 320 62.83 320H129.17C141.959 320 152.501 309.972 153.14 297.199L166.74 25.199C167.425 11.49 156.496 0 142.77 0H49.23C35.504 0 24.575 11.49 25.26 25.199Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 465 B

@@ -1,3 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M416 48C416 39.16 408.84 32 400 32H336C327.16 32 320 39.16 320 48V96H416V48ZM63.91 159.99C61.4 253.84 3.46 274.22 0 404V448C0 465.67 14.33 480 32 480H128C145.67 480 160 465.67 160 448V288H192V128H95.84C78.21 128 64.39 142.37 63.91 159.99V159.99ZM448.09 159.99C447.61 142.37 433.79 128 416.16 128H320V288H352V448C352 465.67 366.33 480 384 480H480C497.67 480 512 465.67 512 448V404C508.54 274.22 450.6 253.84 448.09 159.99ZM176 32H112C103.16 32 96 39.16 96 48V96H192V48C192 39.16 184.84 32 176 32ZM224 288H288V128H224V288Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 653 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

@@ -1,10 +0,0 @@
<svg width="24" height="32" viewBox="0 0 384 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M172.268 501.67C26.97 291.031 0 269.413 0 192C0 85.961 85.961 0 192 0C298.039 0 384 85.961 384 192C384 269.413 357.03 291.031 211.732 501.67C202.197 515.444 181.802 515.443 172.268 501.67ZM192 272C236.183 272 272 236.183 272 192C272 147.817 236.183 112 192 112C147.817 112 112 147.817 112 192C112 236.183 147.817 272 192 272Z" fill="#4C6586"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="384" height="512" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 586 B

@@ -1,10 +0,0 @@
<svg width="24" height="32" viewBox="0 0 384 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M172.268 501.67C26.97 291.031 0 269.413 0 192C0 85.961 85.961 0 192 0C298.039 0 384 85.961 384 192C384 269.413 357.03 291.031 211.732 501.67C202.197 515.444 181.802 515.443 172.268 501.67ZM192 272C236.183 272 272 236.183 272 192C272 147.817 236.183 112 192 112C147.817 112 112 147.817 112 192C112 236.183 147.817 272 192 272Z" fill="#557B2E"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="384" height="512" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 586 B

@@ -1,3 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M256 8C119.043 8 8 119.083 8 256C8 392.997 119.043 504 256 504C392.957 504 504 392.997 504 256C504 119.083 392.957 8 256 8ZM256 118C279.196 118 298 136.804 298 160C298 183.196 279.196 202 256 202C232.804 202 214 183.196 214 160C214 136.804 232.804 118 256 118ZM312 372C312 378.627 306.627 384 300 384H212C205.373 384 200 378.627 200 372V348C200 341.373 205.373 336 212 336H224V272H212C205.373 272 200 266.627 200 260V236C200 229.373 205.373 224 212 224H276C282.627 224 288 229.373 288 236V336H300C306.627 336 312 341.373 312 348V372Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 666 B

@@ -1,10 +0,0 @@
<svg width="28" height="32" viewBox="0 0 448 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M448 240V336C448 339.084 447.644 342.159 446.937 345.162L414.937 481.162C410.686 499.23 394.562 512 376 512H168C161.691 512 155.471 510.507 149.849 507.644C144.227 504.781 139.361 500.629 135.65 495.527L7.65303 319.527C-5.33997 301.661 -1.38997 276.644 16.475 263.651C34.342 250.657 59.359 254.608 72.352 272.474L104 315.992V40C104 17.909 121.908 0 144 0C166.092 0 184 17.909 184 40V240H192V200C192 177.909 209.908 160 232 160C254.092 160 272 177.909 272 200V240H280V216C280 193.909 297.908 176 320 176C342.092 176 360 193.909 360 216V240H368C368 217.909 385.908 200 408 200C430.092 200 448 217.909 448 240ZM192 320H184V416H192V320ZM280 320H272V416H280V320ZM368 320H360V416H368V320Z" fill="#4C6586"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="448" height="512" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 943 B

@@ -1,3 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M326.612 185.392C386.359 245.201 385.539 341.089 326.972 399.981C326.862 400.101 326.732 400.232 326.612 400.352L259.412 467.551C200.142 526.821 103.714 526.813 44.4525 467.551C-14.8175 408.291 -14.8175 311.852 44.4525 252.592L81.5585 215.486C91.3985 205.646 108.345 212.186 108.853 226.092C109.501 243.814 112.679 261.618 118.543 278.812C120.529 284.635 119.11 291.074 114.76 295.424L101.673 308.511C73.6465 336.537 72.7675 382.171 100.518 410.471C128.542 439.05 174.603 439.22 202.842 410.981L270.042 343.791C298.233 315.6 298.115 270.035 270.042 241.962C266.341 238.268 262.613 235.398 259.701 233.393C257.641 231.978 255.94 230.101 254.734 227.913C253.528 225.724 252.85 223.284 252.755 220.786C252.359 210.219 256.102 199.33 264.452 190.98L285.507 169.926C291.028 164.405 299.688 163.727 306.09 168.195C313.422 173.314 320.289 179.069 326.612 185.392V185.392ZM467.547 44.4495C408.286 -14.8125 311.858 -14.8205 252.588 44.4495L185.387 111.649C185.267 111.769 185.137 111.899 185.027 112.019C126.461 170.911 125.64 266.8 185.387 326.609C191.71 332.932 198.577 338.686 205.909 343.805C212.311 348.273 220.973 347.594 226.493 342.074L247.547 321.02C255.897 312.67 259.64 301.781 259.244 291.214C259.149 288.716 258.471 286.276 257.265 284.087C256.059 281.899 254.358 280.022 252.298 278.607C249.386 276.602 245.657 273.732 241.956 270.038C213.883 241.965 213.765 196.399 241.956 168.208L309.156 101.018C337.395 72.7795 383.456 72.9495 411.481 101.528C439.231 129.828 438.353 175.463 410.326 203.489L397.24 216.576C392.89 220.926 391.47 227.365 393.456 233.188C399.32 250.382 402.498 268.186 403.146 285.908C403.655 299.814 420.6 306.354 430.44 296.514L467.546 259.408C526.817 200.149 526.817 103.709 467.547 44.4495V44.4495Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

@@ -1,3 +0,0 @@
<svg width="28" height="32" viewBox="0 0 448 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M448 360V24C448 10.7 437.3 0 424 0H96C43 0 0 43 0 96V416C0 469 43 512 96 512H424C437.3 512 448 501.3 448 488V472C448 464.5 444.5 457.7 439.1 453.3C434.9 437.9 434.9 394 439.1 378.6C444.5 374.3 448 367.5 448 360ZM128 134C128 130.7 130.7 128 134 128H346C349.3 128 352 130.7 352 134V154C352 157.3 349.3 160 346 160H134C130.7 160 128 157.3 128 154V134ZM128 198C128 194.7 130.7 192 134 192H346C349.3 192 352 194.7 352 198V218C352 221.3 349.3 224 346 224H134C130.7 224 128 221.3 128 218V198ZM381.4 448H96C78.3 448 64 433.7 64 416C64 398.4 78.4 384 96 384H381.4C379.5 401.1 379.5 430.9 381.4 448Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 722 B

@@ -1,10 +0,0 @@
<svg width="22" height="32" viewBox="0 0 352 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M96.06 454.35C96.07 460.64 97.93 466.8 101.42 472.04L118.51 497.73C121.429 502.122 125.389 505.723 130.037 508.215C134.685 510.706 139.877 512.01 145.15 512.01H206.86C212.133 512.01 217.325 510.706 221.973 508.215C226.621 505.723 230.581 502.122 233.5 497.73L250.59 472.04C254.078 466.799 255.943 460.646 255.95 454.35L255.99 416H96.01L96.06 454.35ZM0 176C0 220.37 16.45 260.85 43.56 291.78C60.08 310.63 85.92 350.01 95.77 383.23C95.81 383.49 95.84 383.75 95.88 384.01H256.12C256.16 383.75 256.19 383.5 256.23 383.23C266.08 350.01 291.92 310.63 308.44 291.78C335.55 260.85 352 220.37 352 176C352 78.61 272.91 -0.3 175.45 -6.75209e-09C73.44 0.31 0 82.97 0 176ZM176 96C131.89 96 96 131.89 96 176C96 184.84 88.84 192 80 192C71.16 192 64 184.84 64 176C64 114.24 114.24 64 176 64C184.84 64 192 71.16 192 80C192 88.84 184.84 96 176 96Z" fill="#4C6586"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="352" height="512" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

@@ -1,10 +0,0 @@
<svg width="14" height="16" viewBox="0 0 448 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M23.6 214.699L375.6 6.59919C404.2 -10.3008 448 6.0992 448 47.8992V463.999C448 501.499 407.3 524.099 375.6 505.299L23.6 297.299C-7.79999 278.799 -7.89999 233.199 23.6 214.699V214.699Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="448" height="512" fill="white" transform="matrix(-1 0 0 1 448 0)"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 476 B

@@ -1,10 +0,0 @@
<svg width="14" height="16" viewBox="0 0 448 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M424.4 214.699L72.4 6.59919C43.8 -10.3008 0 6.0992 0 47.8992V463.999C0 501.499 40.7 524.099 72.4 505.299L424.4 297.299C455.8 278.799 455.9 233.199 424.4 214.699V214.699Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="448" height="512" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 428 B

@@ -1,3 +0,0 @@
<svg width="155" height="180" viewBox="0 0 384 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M202.021 0C122.202 0 70.503 32.703 29.914 91.026C22.551 101.606 24.821 116.112 35.092 123.9L78.23 156.609C88.603 164.474 103.362 162.635 111.483 152.461C136.532 121.08 155.113 103.012 194.24 103.012C225.004 103.012 263.056 122.811 263.056 152.643C263.056 175.195 244.439 186.777 214.063 203.807C178.64 223.667 131.764 248.383 131.764 310.212V320C131.764 333.255 142.509 344 155.764 344H228.235C241.49 344 252.235 333.255 252.235 320V314.227C252.235 271.367 377.503 269.582 377.503 153.6C377.504 66.256 286.902 0 202.021 0ZM192 373.459C153.804 373.459 122.729 404.534 122.729 442.73C122.729 480.925 153.804 512 192 512C230.196 512 261.271 480.925 261.271 442.729C261.271 404.533 230.196 373.459 192 373.459Z" fill="#F2F2F2"/>
</svg>

Before

Width:  |  Height:  |  Size: 841 B

@@ -1,3 +0,0 @@
<svg width="32" height="32" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M256 32C114.6 32 0 125.1 0 240C0 289.6 21.4 335 57 370.7C44.5 421.1 2.7 466 2.2 466.5C0 468.8 -0.6 472.2 0.7 475.2C2 478.2 4.8 480 8 480C74.3 480 124 448.2 148.6 428.6C181.3 440.9 217.6 448 256 448C397.4 448 512 354.9 512 240C512 125.1 397.4 32 256 32ZM128 272C110.3 272 96 257.7 96 240C96 222.3 110.3 208 128 208C145.7 208 160 222.3 160 240C160 257.7 145.7 272 128 272ZM256 272C238.3 272 224 257.7 224 240C224 222.3 238.3 208 256 208C273.7 208 288 222.3 288 240C288 257.7 273.7 272 256 272ZM384 272C366.3 272 352 257.7 352 240C352 222.3 366.3 208 384 208C401.7 208 416 222.3 416 240C416 257.7 401.7 272 384 272Z" fill="#4C6586"/>
</svg>

Before

Width:  |  Height:  |  Size: 745 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

@@ -1,92 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="16"
height="16"
viewBox="0 0 19.692308 19.692308"
enable-background="new 0 0 32 32"
xml:space="preserve"
inkscape:version="0.48.5 r10040"
sodipodi:docname="tree_col.svg"><metadata
id="metadata3081"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs3079" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1284"
inkscape:window-height="1011"
id="namedview3077"
showgrid="false"
inkscape:zoom="28.846154"
inkscape:cx="9.1178405"
inkscape:cy="5.4176222"
inkscape:window-x="203"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><g
id="g3054"
transform="matrix(0.98836368,0,0,0.91466664,-5.9733333,-4.969026)"><defs
id="defs3056"><polygon
id="SVGID_1_"
points="22,16 11,8.5 11,23.5 " /></defs><clipPath
id="SVGID_2_"><use
xlink:href="#SVGID_1_"
overflow="visible"
id="use3060"
style="overflow:visible"
x="0"
y="0"
width="32"
height="32" /></clipPath><linearGradient
id="SVGID_3_"
gradientUnits="userSpaceOnUse"
x1="-112.6364"
y1="170.9091"
x2="-111.6364"
y2="170.9091"
gradientTransform="matrix(11,0,0,-11,1250,1896)"><stop
offset="0"
style="stop-color:#505050"
id="stop3063" /><stop
offset="7.292820e-03"
style="stop-color:#505050"
id="stop3065" /><stop
offset="0.3563"
style="stop-color:#6B6B6B"
id="stop3067" /><stop
offset="0.7492"
style="stop-color:#838383"
id="stop3069" /><stop
offset="0.9912"
style="stop-color:#8C8C8C"
id="stop3071" /><stop
offset="1"
style="stop-color:#8C8C8C"
id="stop3073" /></linearGradient><rect
x="11"
y="8.5"
clip-path="url(#SVGID_2_)"
width="11"
height="15"
id="rect3075"
style="fill:url(#SVGID_3_)" /></g></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

@@ -1,92 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="16"
height="16"
viewBox="0 0 19.692308 19.692308"
enable-background="new 0 0 32 32"
xml:space="preserve"
inkscape:version="0.48.5 r10040"
sodipodi:docname="tree_exp.svg"><metadata
id="metadata3081"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs3079" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1284"
inkscape:window-height="1011"
id="namedview3077"
showgrid="false"
inkscape:zoom="28.846154"
inkscape:cx="9.1178405"
inkscape:cy="5.4176222"
inkscape:window-x="203"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><g
id="g3054"
transform="matrix(0,0.96121216,-0.87199997,0,23.156001,-6.0450271)"><defs
id="defs3056"><polygon
id="SVGID_1_"
points="11,23.5 22,16 11,8.5 " /></defs><clipPath
id="SVGID_2_"><use
xlink:href="#SVGID_1_"
overflow="visible"
id="use3060"
style="overflow:visible"
x="0"
y="0"
width="32"
height="32" /></clipPath><linearGradient
id="SVGID_3_"
gradientUnits="userSpaceOnUse"
x1="-112.6364"
y1="170.9091"
x2="-111.6364"
y2="170.9091"
gradientTransform="matrix(11,0,0,-11,1250,1896)"><stop
offset="0"
style="stop-color:#505050"
id="stop3063" /><stop
offset="7.292820e-03"
style="stop-color:#505050"
id="stop3065" /><stop
offset="0.3563"
style="stop-color:#6B6B6B"
id="stop3067" /><stop
offset="0.7492"
style="stop-color:#838383"
id="stop3069" /><stop
offset="0.9912"
style="stop-color:#8C8C8C"
id="stop3071" /><stop
offset="1"
style="stop-color:#8C8C8C"
id="stop3073" /></linearGradient><rect
x="11"
y="8.5"
clip-path="url(#SVGID_2_)"
width="11"
height="15"
id="rect3075"
style="fill:url(#SVGID_3_)" /></g></svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

@@ -1,513 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Egalware: GPW</title>
<style>
</style>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" />
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" />
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css" />
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-4-2021-11-03" />
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script src="./Services/JavaScript/js/Basic.js"></script>
<script src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js"></script>
<script src="./Services/Accordion/js/accordion.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js"></script>
<script src="./node_modules/jstree/dist/jstree.js"></script>
<script src="./Modules/LearningModule/js/LearningModule.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script src="./Services/Link/js/ilExtLink.js"></script>
<script src="src/UI/templates/js/MainControls/mainbar.js"></script>
<script src="src/UI/templates/js/MainControls/metabar.js"></script>
<script src="src/UI/templates/js/MainControls/slate.js"></script>
<script src="src/UI/templates/js/Page/stdpage.js"></script>
<script src="src/GlobalScreen/Client/dist/GS.js"></script>
<script src="./Services/COPage/js/ilCOPagePres.js"></script>
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js"></script>
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js"></script>
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js"></script>
<script src="Services/Notifications/templates/default/notifications.js"></script>
</head>
<body>
<div class="il-layout-page">
<header>
<div class="header-inner">
<div class="il-logo">
<a href="index.html">
<img src="./templates/default/images/HEaderIcon.png" class="img-standard" alt="ILIAS" />
</a>
<div class="il-pagetitle">
GPW Help
</div>
</div>
</div>
</header>
<div class="breadcrumbs">
</div>
<div class="il-system-infos">
</div>
<!-- html5 main-tag is not supported in IE / div is needed -->
<main class="il-layout-page-content">
<div>
<div id="mainspacekeeper" class="container-fluid ">
<div class="row" style="position: relative;">
<div id="fixed_content" class=" ilContentFixed">
<div id="mainscrolldiv">
<h2 class="ilAccHeadingHidden">Tabs</h2>
<span class="ilAccHidden"><a id="after_tabs"></a></span>
<div class="ilTabsContentOuter">
<div class="clearfix"></div>
<h2 class="ilAccHeadingHidden"><a id="after_tabs">SubTabs</a></h2>
<ul id="ilSubTab" class="ilSubTab nav nav-pills hidden-print">
</ul>
<span class="ilAccHidden"><a id="after_sub_tabs" name="after_sub_tabs"></a></span>
<div class="container-fluid" id="ilContentContainer">
<div class="row">
<div id="il_center_col" class="col-sm-12">
<div id="ilLMPageContent" class="ilc_page_frame_PageFrame">
<div class="ilc_page_tnav_TopNavigation">
<div class="ilc_page_lnav_LeftNavigation">
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_167.html">
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Timbrature&nbsp;
</a>
</div>
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_172.html">
&nbsp;
Record List
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<div class="ilc_page_cont_PageContainer">
<span class="ilAccHidden">
<a name="il_lm_head" id="il_lm_head"></a>
</span>
<script>
<!--
focus();
//-->
</script>
<a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Fast Rec</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">La pagina Fast Recording permette al lavoratore di dichiarare rapidamente l'inizio di un'attività. Cliccando sul progetto desiderato si apre a destra una finestra dedicata alla compilazione dei dettagli dell'attività. In particolare, in alto vengono mostrate le ore a budget e le ore già caricate per il progetto selezionato.<!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Pareto:</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard">Ci sono due modalità di utilizzo: la prima è la visualizzazione delle attività con distribuzione di Pareto ovvero mostrando i progetti contenenti il maggior numero di ore inserite in un arco di tempo recente (vedi immagine).<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_870/fastrec_1_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">Sotto al riquadro contenente le ore a budget e le ore caricate è presente un altra finestra che consente di inserire la durata prevista, in Minuti, e la descrizione dell'attività. Una volta fatto questo è possibile premere Start per dare inizio all'attività.<br />Sarà sempre possibile in ogni caso modificare la durata e la descrizione dell'attività dalla pagina planner se necessario.<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_872/fastrec_2_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Selezione Libera:</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard">Se invece che tramite la modalità Pareto l'utente desidera ricercare manualmente l'attività da inserire è possibile impostare la modalità Ricerca Libera dalla selezione in alto a destra. Così facendo non vengono visualizzate le attività più ricorrenti nell'ultimo periodo ma sarà possibile selezionare manualmente Gruppo, Progetto e Fase su cui si sta lavorando.<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_895/Fast_rec_libero_2_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" alt="" /></div><figcaption style=""><div class="ilc_media_caption_MediaCaption" /></figcaption></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">Una volta effettuata la ricerca sarà possibile descrivere l'attività in corso e inserire la durata prevista per poi avviare la registrazione (vedi immagine sotto).<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_894/Fast_rec_libero_1_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div style="clear:both;"><!--Break--></div><div class='il-copg-mob-fullscreen-modal'>
<div class="modal fade il-modal-roundtrip" tabindex="-1" role="dialog" id="il_ui_fw_6204e62805ce91_36426089">
<div class="modal-dialog" role="document" data-replace-marker="component">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<span class="modal-title">Full Screen</span>
</div>
<div class="modal-body">
<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen-lm-166'></iframe>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" aria-label="Close">Cancel</button>
</div>
</div>
</div>
</div>
</div>
<script>$(function () { il.COPagePres.setFullscreenModalShowSignal('il_signal_6204e62805c845_35556335', '-lm-166'); });</script>
</div>
<div class="ilc_page_bnav_BottomNavigation">
<div class="ilc_page_lnav_LeftNavigation">
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_167.html">
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Timbrature&nbsp;
</a>
</div>
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_172.html">
&nbsp;
Record List
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<!--</div>-->
<br />
<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div id="minheight"></div>-->
<!--<footer id="ilFooter" class="ilFooter hidden-print"><div class="container-fluid ilContainerWidth">-->
<!--<div class="row"><div class="ilFooterContainer form-inline"> </div></div></div></footer>-->
</div>
<footer role="contentinfo">
<div class="il-maincontrols-footer">
<div class="il-footer-content">
<div class="il-footer-text">
powered by ILIAS (v7.4 2021-11-03)
</div>
</div>
</div>
</footer>
</main>
</div>
<script>
il.Util.addOnLoad(function () {
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try { $(document).on('il_signal_6204e62805c845_35556335', function (event, signalData) { il.UI.modal.showModal('il_ui_fw_6204e62805ce91_36426089', { "ajaxRenderUrl": "", "keyboard": true, "url": "#il_ui_fw_6204e62805ce91_36426089" }, signalData); return false; }); $(document).on('il_signal_6204e62805c887_84951437', function () { il.UI.modal.closeModal('il_ui_fw_6204e62805ce91_36426089'); return false; }); $(document).on('il_signal_6204e62805c892_10479562', function (event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_6204e62805ce91_36426089', signalData); }); } catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
OSDNotifier = OSDNotifications({
closeHtml: "<a class=\"glyph\" aria-label=\"Close\">\n<span class=\"glyphicon\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n glyphicon-remove\n\n\n\n\n\n\n\n\n\n\n\n\" aria-hidden=\"true\"><\/span>\n\n\n\n\n\n\n\n<\/a>\n",
initialNotifications: [],
pollingIntervall: 60,
playSound: false
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'triggerer', 'il_ui_fw_6204e628073502_71230916', false);
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry', '0:0');
$('#il_ui_fw_6204e628073502_71230916').on('click', function (event) {
$(this).trigger('il_signal_6204e628073194_30276774',
{
'id': 'il_signal_6204e628073194_30276774', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"0:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e628073096_24743609', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6280743c1_24230340'); return false; }); $(document).on('il_signal_6204e6280730b9_74986809', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6280743c1_24230340'); return false; }); $(document).on('il_signal_6204e6280730c2_89881726', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6280743c1_24230340'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_6204e6280743c1_24230340'); } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_6204e6280747e0_68603236', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033', 'T:0');
$('#il_ui_fw_6204e6280747e0_68603236').on('click', function (event) {
$(this).trigger('il_signal_6204e628074508_17178177',
{
'id': 'il_signal_6204e628074508_17178177', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-glossary-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62806ef08_85053859', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e628074f51_49776938'); return false; }); $(document).on('il_signal_6204e62806ef16_96518978', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e628074f51_49776938'); return false; }); $(document).on('il_signal_6204e62806ef24_44638188', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e628074f51_49776938'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_6204e628074f51_49776938');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_6204e628075322_21853276', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033', 'T:1');
$('#il_ui_fw_6204e628075322_21853276').on('click', function (event) {
$(this).trigger('il_signal_6204e628075068_77202108',
{
'id': 'il_signal_6204e628075068_77202108', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:1","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-media-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62806efd7_97799374', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e628075a08_79590301'); return false; }); $(document).on('il_signal_6204e62806efe2_59654424', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e628075a08_79590301'); return false; }); $(document).on('il_signal_6204e62806eff0_09988189', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e628075a08_79590301'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_6204e628075a08_79590301');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_6204e628075da5_65672168', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033', 'T:2');
$('#il_ui_fw_6204e628075da5_65672168').on('click', function (event) {
$(this).trigger('il_signal_6204e628075af9_83027183',
{
'id': 'il_signal_6204e628075af9_83027183', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:2","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-faq-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62806f064_60360093', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e628076434_54256774'); return false; }); $(document).on('il_signal_6204e62806f072_48635654', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e628076434_54256774'); return false; }); $(document).on('il_signal_6204e62806f085_04867993', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e628076434_54256774'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_6204e628076434_54256774');
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e628076796_11846580').on('click', function (event) {
$(this).trigger('il_signal_6204e62806f127_36398072',
{
'id': 'il_signal_6204e62806f127_36398072', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"toggle_tools"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e628076dd5_70327284').on('click', function (event) {
$(this).trigger('il_signal_6204e62806f111_75449420',
{
'id': 'il_signal_6204e62806f111_75449420', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"disengage_all"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62806f111_75449420'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62806f127_36398072'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627ed8356_20388197'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edaa09_29492362'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edbe90_82551881'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edc996_59912124'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628073194_30276774'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628074508_17178177'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075068_77202108'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075af9_83027183'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62806f2f5_74319859'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62806f308_28757620'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62806f320_21959938');
$(window).resize(il.UI.maincontrols.mainbar.adjustToScreenSize);
il.UI.maincontrols.mainbar.init('');
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
});
</script>
</body>
</html>
@@ -1,512 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Egalware: GPW</title>
<style>
</style>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" />
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" />
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css" />
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-4-2021-11-03" />
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script src="./Services/JavaScript/js/Basic.js"></script>
<script src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js"></script>
<script src="./Services/Accordion/js/accordion.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js"></script>
<script src="./node_modules/jstree/dist/jstree.js"></script>
<script src="./Modules/LearningModule/js/LearningModule.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script src="./Services/Link/js/ilExtLink.js"></script>
<script src="src/UI/templates/js/MainControls/mainbar.js"></script>
<script src="src/UI/templates/js/MainControls/metabar.js"></script>
<script src="src/UI/templates/js/MainControls/slate.js"></script>
<script src="src/UI/templates/js/Page/stdpage.js"></script>
<script src="src/GlobalScreen/Client/dist/GS.js"></script>
<script src="./Services/COPage/js/ilCOPagePres.js"></script>
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js"></script>
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js"></script>
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js"></script>
<script src="Services/Notifications/templates/default/notifications.js"></script>
</head>
<body>
<div class="il-layout-page">
<header>
<div class="header-inner">
<div class="il-logo">
<a href="index.html">
<img src="./templates/default/images/HEaderIcon.png" class="img-standard" alt="ILIAS" />
</a>
<div class="il-pagetitle">
GPW Help
</div>
</div>
</div>
</header>
<div class="breadcrumbs">
</div>
<div class="il-system-infos">
</div>
<!-- html5 main-tag is not supported in IE / div is needed -->
<main class="il-layout-page-content">
<div>
<div id="mainspacekeeper" class="container-fluid ">
<div class="row" style="position: relative;">
<div id="fixed_content" class=" ilContentFixed">
<div id="mainscrolldiv">
<h2 class="ilAccHeadingHidden">Tabs</h2>
<span class="ilAccHidden"><a id="after_tabs"></a></span>
<div class="ilTabsContentOuter">
<div class="clearfix"></div>
<h2 class="ilAccHeadingHidden"><a id="after_tabs">SubTabs</a></h2>
<ul id="ilSubTab" class="ilSubTab nav nav-pills hidden-print">
</ul>
<span class="ilAccHidden"><a id="after_sub_tabs" name="after_sub_tabs"></a></span>
<div class="container-fluid" id="ilContentContainer">
<div class="row">
<div id="il_center_col" class="col-sm-12">
<div id="ilLMPageContent" class="ilc_page_frame_PageFrame">
<div class="ilc_page_tnav_TopNavigation">
<div class="ilc_page_lnav_LeftNavigation">
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_169.html">
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Attività&nbsp;
</a>
</div>
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_166.html">
&nbsp;
Fast Rec
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<div class="ilc_page_cont_PageContainer">
<span class="ilAccHidden">
<a name="il_lm_head" id="il_lm_head"></a>
</span>
<script>
<!--
focus();
//-->
</script>
<a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Timbrature</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">Premendo il pulsante contenente le ore di lavoro timbrate, nella colonna più a destra del planner (vedi immagine), si apre la visualizzazione delle entrate e uscite.<br />In questa finestra è possibile verificare le ore esatte di timbratura (inizio e fine lavoro) e correggere eventuali errori di inserimento (ad esempio scambiare entrata con uscita per una timbratura se è stata inserita in maniera errata in prima battuta.)<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_888/timbrature_1_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">Nel caso in cui il lavoratore si dimentichi della timbratura di ingresso o di uscita può sempre inserire una Mancata Timbratura: ovvero la richiesta di una timbratura (entrata o uscita) in una data e ora specificata direttamente tramite il riquadro apposito. Questa richiesta andrà approvata da un amministratore di sistema prima di diventare effettiva.<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_887/timbrature_2_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">Il terzo campo sotto alle ore di attività e le ore timbrate è dedicato alle funzionalità igienico sanitarie necessarie per il lavoro in ufficio durante la pandemia da covid-19: I due indicatori indicano l'avvenuto inserimento della temperatura da parte del lavoratore e l'avvenuta timbratura del green pass europeo per l'ingresso negli ambienti di lavoro (quando sono di colore verde). Cliccando su questo terzo elemento si apre la finestra dei Daily Checks (vedi immagine in fondo).<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_867/dailycheck_2_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">Nella finestra Daily Checks il lavoratore troverà un grafico contenente l'andamento della temperatura quotidiana. Nella tabella di destra è invece mostrato il check quotidiano del green pass europeo, obbligatorio per l'accesso agli ambienti di lavoro.<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_866/dailycheck_1_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div style="clear:both;"><!--Break--></div><div class='il-copg-mob-fullscreen-modal'>
<div class="modal fade il-modal-roundtrip" tabindex="-1" role="dialog" id="il_ui_fw_6204e6283ad3d2_47437599">
<div class="modal-dialog" role="document" data-replace-marker="component">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<span class="modal-title">Full Screen</span>
</div>
<div class="modal-body">
<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen-lm-167'></iframe>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" aria-label="Close">Cancel</button>
</div>
</div>
</div>
</div>
</div>
<script>$(function () { il.COPagePres.setFullscreenModalShowSignal('il_signal_6204e6283accd5_20843711', '-lm-167'); });</script>
</div>
<div class="ilc_page_bnav_BottomNavigation">
<div class="ilc_page_lnav_LeftNavigation">
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_169.html">
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Attività&nbsp;
</a>
</div>
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_166.html">
&nbsp;
Fast Rec
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<!--</div>-->
<br />
<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div id="minheight"></div>-->
<!--<footer id="ilFooter" class="ilFooter hidden-print"><div class="container-fluid ilContainerWidth">-->
<!--<div class="row"><div class="ilFooterContainer form-inline"> </div></div></div></footer>-->
</div>
<footer role="contentinfo">
<div class="il-maincontrols-footer">
<div class="il-footer-content">
<div class="il-footer-text">
powered by ILIAS (v7.4 2021-11-03)
</div>
</div>
</div>
</footer>
</main>
</div>
<script>
il.Util.addOnLoad(function () {
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try { $(document).on('il_signal_6204e6283accd5_20843711', function (event, signalData) { il.UI.modal.showModal('il_ui_fw_6204e6283ad3d2_47437599', { "ajaxRenderUrl": "", "keyboard": true, "url": "#il_ui_fw_6204e6283ad3d2_47437599" }, signalData); return false; }); $(document).on('il_signal_6204e6283acd36_42241586', function () { il.UI.modal.closeModal('il_ui_fw_6204e6283ad3d2_47437599'); return false; }); $(document).on('il_signal_6204e6283acd44_66002970', function (event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_6204e6283ad3d2_47437599', signalData); }); } catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
OSDNotifier = OSDNotifications({
closeHtml: "<a class=\"glyph\" aria-label=\"Close\">\n<span class=\"glyphicon\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n glyphicon-remove\n\n\n\n\n\n\n\n\n\n\n\n\" aria-hidden=\"true\"><\/span>\n\n\n\n\n\n\n\n<\/a>\n",
initialNotifications: [],
pollingIntervall: 60,
playSound: false
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'triggerer', 'il_ui_fw_6204e6283c15a0_06071012', false);
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry', '0:0');
$('#il_ui_fw_6204e6283c15a0_06071012').on('click', function (event) {
$(this).trigger('il_signal_6204e6283c1261_86363231',
{
'id': 'il_signal_6204e6283c1261_86363231', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"0:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6283c1163_47889578', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6283c2293_77620719'); return false; }); $(document).on('il_signal_6204e6283c1189_72793693', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6283c2293_77620719'); return false; }); $(document).on('il_signal_6204e6283c1191_14459428', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6283c2293_77620719'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_6204e6283c2293_77620719'); } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_6204e6283c2694_53907847', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033', 'T:0');
$('#il_ui_fw_6204e6283c2694_53907847').on('click', function (event) {
$(this).trigger('il_signal_6204e6283c23c4_71763131',
{
'id': 'il_signal_6204e6283c23c4_71763131', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-glossary-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6283bcee4_01689041', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6283c2de2_51549237'); return false; }); $(document).on('il_signal_6204e6283bcef8_32645081', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6283c2de2_51549237'); return false; }); $(document).on('il_signal_6204e6283bcf09_09299347', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6283c2de2_51549237'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_6204e6283c2de2_51549237');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_6204e6283c3190_25664853', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033', 'T:1');
$('#il_ui_fw_6204e6283c3190_25664853').on('click', function (event) {
$(this).trigger('il_signal_6204e6283c2ee3_73472635',
{
'id': 'il_signal_6204e6283c2ee3_73472635', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:1","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-media-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6283bcfc5_90500784', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6283c3850_45756731'); return false; }); $(document).on('il_signal_6204e6283bcfd3_79814015', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6283c3850_45756731'); return false; }); $(document).on('il_signal_6204e6283bcfe0_96312388', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6283c3850_45756731'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_6204e6283c3850_45756731');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_6204e6283c3bd0_69162532', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033', 'T:2');
$('#il_ui_fw_6204e6283c3bd0_69162532').on('click', function (event) {
$(this).trigger('il_signal_6204e6283c3945_49256067',
{
'id': 'il_signal_6204e6283c3945_49256067', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:2","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-faq-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6283bd226_03106848', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6283c4277_73830959'); return false; }); $(document).on('il_signal_6204e6283bd240_12623387', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6283c4277_73830959'); return false; }); $(document).on('il_signal_6204e6283bd254_11273310', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6283c4277_73830959'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_6204e6283c4277_73830959');
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e6283c45b1_20337064').on('click', function (event) {
$(this).trigger('il_signal_6204e6283bd355_11310863',
{
'id': 'il_signal_6204e6283bd355_11310863', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"toggle_tools"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e6283c4bc5_13679999').on('click', function (event) {
$(this).trigger('il_signal_6204e6283bd346_74946431',
{
'id': 'il_signal_6204e6283bd346_74946431', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"disengage_all"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283bd346_74946431'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283bd355_11310863'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627ed8356_20388197'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edaa09_29492362'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edbe90_82551881'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edc996_59912124'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628073194_30276774'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628074508_17178177'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075068_77202108'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075af9_83027183'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628111882_33998407'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628112a63_75743691'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6281135e2_48430659'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628114056_21302135'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628230907_82237962'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628231c79_79488759'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282329c2_71144179'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628233589_51581905'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282ecab9_42378231'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282edbb3_26513184'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282ee745_74386608'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282ef157_85934376'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283c1261_86363231'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283c23c4_71763131'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283c2ee3_73472635'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283c3945_49256067'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283bd5d3_31591815'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283bd5f1_58227070'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6283bd601_09241856');
$(window).resize(il.UI.maincontrols.mainbar.adjustToScreenSize);
il.UI.maincontrols.mainbar.init('');
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
});
</script>
</body>
</html>
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,502 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Egalware: GPW</title>
<style>
</style>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" />
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" />
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css" />
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-4-2021-11-03" />
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script src="./Services/JavaScript/js/Basic.js"></script>
<script src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js"></script>
<script src="./Services/Accordion/js/accordion.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js"></script>
<script src="./node_modules/jstree/dist/jstree.js"></script>
<script src="./Modules/LearningModule/js/LearningModule.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script src="./Services/Link/js/ilExtLink.js"></script>
<script src="src/UI/templates/js/MainControls/mainbar.js"></script>
<script src="src/UI/templates/js/MainControls/metabar.js"></script>
<script src="src/UI/templates/js/MainControls/slate.js"></script>
<script src="src/UI/templates/js/Page/stdpage.js"></script>
<script src="src/GlobalScreen/Client/dist/GS.js"></script>
<script src="./Services/COPage/js/ilCOPagePres.js"></script>
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js"></script>
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js"></script>
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js"></script>
<script src="Services/Notifications/templates/default/notifications.js"></script>
</head>
<body>
<div class="il-layout-page">
<header>
<div class="header-inner">
<div class="il-logo">
<a href="index.html">
<img src="./templates/default/images/HEaderIcon.png" class="img-standard" alt="ILIAS" />
</a>
<div class="il-pagetitle">
GPW Help
</div>
</div>
</div>
</header>
<div class="breadcrumbs">
</div>
<div class="il-system-infos">
</div>
<!-- html5 main-tag is not supported in IE / div is needed -->
<main class="il-layout-page-content">
<div>
<div id="mainspacekeeper" class="container-fluid ">
<div class="row" style="position: relative;">
<div id="fixed_content" class=" ilContentFixed">
<div id="mainscrolldiv">
<h2 class="ilAccHeadingHidden">Tabs</h2>
<span class="ilAccHidden"><a id="after_tabs"></a></span>
<div class="ilTabsContentOuter">
<div class="clearfix"></div>
<h2 class="ilAccHeadingHidden"><a id="after_tabs">SubTabs</a></h2>
<ul id="ilSubTab" class="ilSubTab nav nav-pills hidden-print">
</ul>
<span class="ilAccHidden"><a id="after_sub_tabs" name="after_sub_tabs"></a></span>
<div class="container-fluid" id="ilContentContainer">
<div class="row">
<div id="il_center_col" class="col-sm-12">
<div id="ilLMPageContent" class="ilc_page_frame_PageFrame">
<div class="ilc_page_tnav_TopNavigation">
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_170.html">
&nbsp;
Planner
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<div class="ilc_page_cont_PageContainer">
<span class="ilAccHidden">
<a name="il_lm_head" id="il_lm_head"></a>
</span>
<script>
<!--
focus();
//-->
</script>
<a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Introduzione a GPW</h1><!--COPage-PageTop--><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;float:left; clear:both; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_896/menu.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" alt="" /></div><figcaption style=""><div class="ilc_media_caption_MediaCaption" /></figcaption></figure><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Emph">GPW è un'applicazione web che si pone il compito di riunire in un solo ambiente diverse funzioni quali le timbrature dei lavoratori, la registrazione delle attività e di relativi commenti e descrizioni e la gestione dei progetti dell'organizzazione di appartenenza.</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">INDICE:</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><ul class="ilc_list_u_BulletedList"><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_170.html" target="_parent" id="il__pg_170_171_1">Funzionalità e Planner</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_169.html" target="_parent" id="il__pg_169_171_2">Attività e Progetti</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_167.html" target="_parent" id="il__pg_167_171_3">Timbrature</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_166.html" target="_parent" id="il__pg_166_171_4">Fast Rec</a></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong"><a class="ilc_link_IntLink" href="lm_pg_172.html" target="_parent" id="il__pg_172_171_5">Record List</a></span></li></ul><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Emph">Per navigare fra le pagine di questa sezione Help è necessario cliccare le frecce nella barra in alto.</span><!--Break--></div><div style="clear:both;"><!--Break--></div><div class='il-copg-mob-fullscreen-modal'>
<div class="modal fade il-modal-roundtrip" tabindex="-1" role="dialog" id="il_ui_fw_6204e6280f9e87_29310397">
<div class="modal-dialog" role="document" data-replace-marker="component">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<span class="modal-title">Full Screen</span>
</div>
<div class="modal-body">
<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen-lm-171'></iframe>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" aria-label="Close">Cancel</button>
</div>
</div>
</div>
</div>
</div>
<script>$(function () { il.COPagePres.setFullscreenModalShowSignal('il_signal_6204e6280f9800_38030753', '-lm-171'); });</script>
</div>
<div class="ilc_page_bnav_BottomNavigation">
<div class="ilc_page_rnav_RightNavigation">
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_170.html">
&nbsp;
Planner
<img class="ilc_page_rnavimage_RightNavigationImage" src="images/spacer.png" alt="Next" title="Next" />
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<!--</div>-->
<br />
<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div id="minheight"></div>-->
<!--<footer id="ilFooter" class="ilFooter hidden-print"><div class="container-fluid ilContainerWidth">-->
<!--<div class="row"><div class="ilFooterContainer form-inline"> </div></div></div></footer>-->
</div>
<footer role="contentinfo">
<div class="il-maincontrols-footer">
<div class="il-footer-content">
<div class="il-footer-text">
powered by ILIAS (v7.4 2021-11-03)
</div>
</div>
</div>
</footer>
</main>
</div>
<script>
il.Util.addOnLoad(function () {
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try { $(document).on('il_signal_6204e6280f9800_38030753', function (event, signalData) { il.UI.modal.showModal('il_ui_fw_6204e6280f9e87_29310397', { "ajaxRenderUrl": "", "keyboard": true, "url": "#il_ui_fw_6204e6280f9e87_29310397" }, signalData); return false; }); $(document).on('il_signal_6204e6280f9852_36823491', function () { il.UI.modal.closeModal('il_ui_fw_6204e6280f9e87_29310397'); return false; }); $(document).on('il_signal_6204e6280f9869_28771289', function (event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_6204e6280f9e87_29310397', signalData); }); } catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
OSDNotifier = OSDNotifications({
closeHtml: "<a class=\"glyph\" aria-label=\"Close\">\n<span class=\"glyphicon\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n glyphicon-remove\n\n\n\n\n\n\n\n\n\n\n\n\" aria-hidden=\"true\"><\/span>\n\n\n\n\n\n\n\n<\/a>\n",
initialNotifications: [],
pollingIntervall: 60,
playSound: false
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'triggerer', 'il_ui_fw_6204e628111be4_35882094', false);
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry', '0:0');
$('#il_ui_fw_6204e628111be4_35882094').on('click', function (event) {
$(this).trigger('il_signal_6204e628111882_33998407',
{
'id': 'il_signal_6204e628111882_33998407', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"0:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e628111768_79924970', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e628112939_83426889'); return false; }); $(document).on('il_signal_6204e628111787_86476907', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e628112939_83426889'); return false; }); $(document).on('il_signal_6204e628111798_65312084', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e628112939_83426889'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_6204e628112939_83426889'); } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_6204e628112d63_34868111', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033', 'T:0');
$('#il_ui_fw_6204e628112d63_34868111').on('click', function (event) {
$(this).trigger('il_signal_6204e628112a63_75743691',
{
'id': 'il_signal_6204e628112a63_75743691', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-glossary-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62810d140_63419298', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6281134e5_96288114'); return false; }); $(document).on('il_signal_6204e62810d164_50384393', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6281134e5_96288114'); return false; }); $(document).on('il_signal_6204e62810d173_12942744', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6281134e5_96288114'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_6204e6281134e5_96288114');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_6204e6281138a9_91688643', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033', 'T:1');
$('#il_ui_fw_6204e6281138a9_91688643').on('click', function (event) {
$(this).trigger('il_signal_6204e6281135e2_48430659',
{
'id': 'il_signal_6204e6281135e2_48430659', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:1","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-media-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62810d222_01946453', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e628113f68_60894522'); return false; }); $(document).on('il_signal_6204e62810d239_18058568', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e628113f68_60894522'); return false; }); $(document).on('il_signal_6204e62810d244_87960255', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e628113f68_60894522'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_6204e628113f68_60894522');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_6204e628114302_59955241', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033', 'T:2');
$('#il_ui_fw_6204e628114302_59955241').on('click', function (event) {
$(this).trigger('il_signal_6204e628114056_21302135',
{
'id': 'il_signal_6204e628114056_21302135', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:2","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-faq-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e62810d2b3_06790573', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6281149b6_84120244'); return false; }); $(document).on('il_signal_6204e62810d2c1_61382208', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6281149b6_84120244'); return false; }); $(document).on('il_signal_6204e62810d2d2_48842315', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6281149b6_84120244'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_6204e6281149b6_84120244');
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e628114d21_74534103').on('click', function (event) {
$(this).trigger('il_signal_6204e62810d384_54449314',
{
'id': 'il_signal_6204e62810d384_54449314', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"toggle_tools"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e628115383_60246362').on('click', function (event) {
$(this).trigger('il_signal_6204e62810d378_33482429',
{
'id': 'il_signal_6204e62810d378_33482429', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"disengage_all"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d378_33482429'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d384_54449314'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627ed8356_20388197'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edaa09_29492362'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edbe90_82551881'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edc996_59912124'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628073194_30276774'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628074508_17178177'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075068_77202108'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075af9_83027183'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628111882_33998407'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628112a63_75743691'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6281135e2_48430659'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628114056_21302135'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d587_83493936'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d5a6_57228859'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e62810d5b3_36999998');
$(window).resize(il.UI.maincontrols.mainbar.adjustToScreenSize);
il.UI.maincontrols.mainbar.init('');
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
});
</script>
</body>
</html>
@@ -1,501 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Egalware: GPW</title>
<style>
</style>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" />
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css" />
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css" />
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-4-2021-11-03" />
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script src="./Services/JavaScript/js/Basic.js"></script>
<script src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js"></script>
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js"></script>
<script src="./Services/Accordion/js/accordion.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js"></script>
<script src="./node_modules/jstree/dist/jstree.js"></script>
<script src="./Modules/LearningModule/js/LearningModule.js"></script>
<script src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script src="./Services/Link/js/ilExtLink.js"></script>
<script src="src/UI/templates/js/MainControls/mainbar.js"></script>
<script src="src/UI/templates/js/MainControls/metabar.js"></script>
<script src="src/UI/templates/js/MainControls/slate.js"></script>
<script src="src/UI/templates/js/Page/stdpage.js"></script>
<script src="src/GlobalScreen/Client/dist/GS.js"></script>
<script src="./Services/COPage/js/ilCOPagePres.js"></script>
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js"></script>
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js"></script>
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js"></script>
<script src="Services/Notifications/templates/default/notifications.js"></script>
</head>
<body>
<div class="il-layout-page">
<header>
<div class="header-inner">
<div class="il-logo">
<a href="index.html">
<img src="./templates/default/images/HEaderIcon.png" class="img-standard" alt="ILIAS" />
</a>
<div class="il-pagetitle">
GPW Help
</div>
</div>
</div>
</header>
<div class="breadcrumbs">
</div>
<div class="il-system-infos">
</div>
<!-- html5 main-tag is not supported in IE / div is needed -->
<main class="il-layout-page-content">
<div>
<div id="mainspacekeeper" class="container-fluid ">
<div class="row" style="position: relative;">
<div id="fixed_content" class=" ilContentFixed">
<div id="mainscrolldiv">
<h2 class="ilAccHeadingHidden">Tabs</h2>
<span class="ilAccHidden"><a id="after_tabs"></a></span>
<div class="ilTabsContentOuter">
<div class="clearfix"></div>
<h2 class="ilAccHeadingHidden"><a id="after_tabs">SubTabs</a></h2>
<ul id="ilSubTab" class="ilSubTab nav nav-pills hidden-print">
</ul>
<span class="ilAccHidden"><a id="after_sub_tabs" name="after_sub_tabs"></a></span>
<div class="container-fluid" id="ilContentContainer">
<div class="row">
<div id="il_center_col" class="col-sm-12">
<div id="ilLMPageContent" class="ilc_page_frame_PageFrame">
<div class="ilc_page_tnav_TopNavigation">
<div class="ilc_page_lnav_LeftNavigation">
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_166.html">
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Fast Rec&nbsp;
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<div class="ilc_page_cont_PageContainer">
<span class="ilAccHidden">
<a name="il_lm_head" id="il_lm_head"></a>
</span>
<script>
<!--
focus();
//-->
</script>
<a class="small" id="ilPageShowAdvContent" style="display:none; text-align:right;" href="#"><span>Show Advanced Knowledge</span><span>Hide Advanced Knowledge</span></a><h1 class="ilc_page_title_PageTitle">Record List</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">La pagina Record List permette all'utente di visualizzare in maniera dettagliata orari di timbratura e periodi di attività di tutti gli ultimi giorni lavorativi. Si differenzia dalla pagina Week Planner per l'assenza di una rappresentazione grafica dell'estensione temporale delle attività. Invece questa pagina permette di navigare più rapidamente tra le attività di molti giorni lavorativi per la ricerca di attività passate, se necessario, o per la verifica degli orari di timbratura. Si presenta come in immagine:<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_892/Day_List_3_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Riepilogo Timbrature</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard">Cliccando i box neri nella colonna Timbrature si apre a destra il riquadro relativo al giorno selezionato che mostra gli orari di entrata e di uscita. Da qua è possibile richiedere, se necessario, una mancata timbratura (che prima di essere effettiva andrà approvata dall'amministrazione). Il funzionamento di questo riepilogo è del tutto simile al riepilogo delle timbrature visualizzabile cliccando la colonna di destra del <a class="ilc_link_IntLink" href="lm_pg_170.html" target="_parent" id="il__pg_170_172_1">Week Planner</a>, con l'aggiunta che in questa pagina Record List è possibile navigare anche tra giorni distanti e di settimane diverse.<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_891/Day_List_1_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Dettaglio Giornaliero:</span><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard">Cliccando un box celeste dalla colonna di destra si visualizza a destra il riepilogo dettagliato di tutte le attività inserite dall'utente nel giorno selezionato. La visualizzazione è identica a quella del riepilogo delle attività accessibile dalla pagina <a class="ilc_link_IntLink" href="lm_pg_170.html" target="_parent" id="il__pg_170_172_2">Week Planner</a>. Cliccando su un'attività tra quelle nell'elenco a destra è possibile procedere alla modifica di orario e descrizione.<!--Break--></div><div align="left" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_893/Day_List_2_.png?il_wac_token=f80a3fe0f2a7261f2c83826ed4b55c2b7c4b6101&il_wac_ttl=3&il_wac_ts=1644488232" /></div></figure></div><div style="clear:both;"><!--Break--></div><div class='il-copg-mob-fullscreen-modal'>
<div class="modal fade il-modal-roundtrip" tabindex="-1" role="dialog" id="il_ui_fw_6204e6282d5e77_26504852">
<div class="modal-dialog" role="document" data-replace-marker="component">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<span class="modal-title">Full Screen</span>
</div>
<div class="modal-body">
<iframe class='il-copg-mob-fullscreen' id='il-copg-mob-fullscreen-lm-172'></iframe>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" aria-label="Close">Cancel</button>
</div>
</div>
</div>
</div>
</div>
<script>$(function () { il.COPagePres.setFullscreenModalShowSignal('il_signal_6204e6282d57d3_22563793', '-lm-172'); });</script>
</div>
<div class="ilc_page_bnav_BottomNavigation">
<div class="ilc_page_lnav_LeftNavigation">
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_166.html">
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Fast Rec&nbsp;
</a>
</div>
<div class="ilClearFloat"></div>
</div>
<!--</div>-->
<br />
<br />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div id="minheight"></div>-->
<!--<footer id="ilFooter" class="ilFooter hidden-print"><div class="container-fluid ilContainerWidth">-->
<!--<div class="row"><div class="ilFooterContainer form-inline"> </div></div></div></footer>-->
</div>
<footer role="contentinfo">
<div class="il-maincontrols-footer">
<div class="il-footer-content">
<div class="il-footer-text">
powered by ILIAS (v7.4 2021-11-03)
</div>
</div>
</div>
</footer>
</main>
</div>
<script>
il.Util.addOnLoad(function () {
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try { $(document).on('il_signal_6204e6282d57d3_22563793', function (event, signalData) { il.UI.modal.showModal('il_ui_fw_6204e6282d5e77_26504852', { "ajaxRenderUrl": "", "keyboard": true, "url": "#il_ui_fw_6204e6282d5e77_26504852" }, signalData); return false; }); $(document).on('il_signal_6204e6282d5819_36544600', function () { il.UI.modal.closeModal('il_ui_fw_6204e6282d5e77_26504852'); return false; }); $(document).on('il_signal_6204e6282d5825_40944561', function (event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_6204e6282d5e77_26504852', signalData); }); } catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
} catch (e) { console.log(e); }
try { il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote', 'ilc_link_ExtLink'); } catch (e) { console.log(e); }
try {
OSDNotifier = OSDNotifications({
closeHtml: "<a class=\"glyph\" aria-label=\"Close\">\n<span class=\"glyphicon\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n glyphicon-remove\n\n\n\n\n\n\n\n\n\n\n\n\" aria-hidden=\"true\"><\/span>\n\n\n\n\n\n\n\n<\/a>\n",
initialNotifications: [],
pollingIntervall: 60,
playSound: false
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'triggerer', 'il_ui_fw_6204e6282ece03_80510703', false);
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry', '0:0');
$('#il_ui_fw_6204e6282ece03_80510703').on('click', function (event) {
$(this).trigger('il_signal_6204e6282ecab9_42378231',
{
'id': 'il_signal_6204e6282ecab9_42378231', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"0:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6282ec9b9_04596449', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6282eda85_78919503'); return false; }); $(document).on('il_signal_6204e6282ec9d1_04401819', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6282eda85_78919503'); return false; }); $(document).on('il_signal_6204e6282ec9e1_51405947', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6282eda85_78919503'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_6204e6282eda85_78919503'); } catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_6204e6282edf38_35434338', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033', 'T:0');
$('#il_ui_fw_6204e6282edf38_35434338').on('click', function (event) {
$(this).trigger('il_signal_6204e6282edbb3_26513184',
{
'id': 'il_signal_6204e6282edbb3_26513184', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:0","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-glossary-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6282e8336_41458918', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6282ee659_47004745'); return false; }); $(document).on('il_signal_6204e6282e8344_86927785', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6282ee659_47004745'); return false; }); $(document).on('il_signal_6204e6282e8351_82375940', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6282ee659_47004745'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_6204e6282ee659_47004745');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_6204e6282ee9e7_27353742', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033', 'T:1');
$('#il_ui_fw_6204e6282ee9e7_27353742').on('click', function (event) {
$(this).trigger('il_signal_6204e6282ee745_74386608',
{
'id': 'il_signal_6204e6282ee745_74386608', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:1","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-media-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6282e8414_45703744', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6282ef065_42949070'); return false; }); $(document).on('il_signal_6204e6282e8425_46369459', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6282ef065_42949070'); return false; }); $(document).on('il_signal_6204e6282e8431_65961291', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6282ef065_42949070'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_6204e6282ef065_42949070');
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_6204e6282ef3d1_54656061', true);
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033', 'T:2');
$('#il_ui_fw_6204e6282ef3d1_54656061').on('click', function (event) {
$(this).trigger('il_signal_6204e6282ef157_85934376',
{
'id': 'il_signal_6204e6282ef157_85934376', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"entry_id":"T:2","action":"trigger"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
try {
$('body').on('il-lm-show-faq-slate', function () {
il.UI.maincontrols.mainbar.engageTool('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313033');
});
fn = il.UI.maincontrols.slate.onSignal; $(document).on('il_signal_6204e6282e84a6_96938031', function (event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_6204e6282efa39_54814780'); return false; }); $(document).on('il_signal_6204e6282e84b2_11231277', function (event, signalData) { fn('engage', event, signalData, 'il_ui_fw_6204e6282efa39_54814780'); return false; }); $(document).on('il_signal_6204e6282e84c5_14160852', function (event, signalData) { fn('replace', event, signalData, 'il_ui_fw_6204e6282efa39_54814780'); return false; }); il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_6204e6282efa39_54814780');
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e6282efd72_10388146').on('click', function (event) {
$(this).trigger('il_signal_6204e6282e8569_70713031',
{
'id': 'il_signal_6204e6282e8569_70713031', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"toggle_tools"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
$('#il_ui_fw_6204e6282f0346_50512567').on('click', function (event) {
$(this).trigger('il_signal_6204e6282e8554_24792461',
{
'id': 'il_signal_6204e6282e8554_24792461', 'event': 'click',
'triggerer': $(this),
'options': JSON.parse('{"action":"disengage_all"}')
}
);
return false;
});
} catch (e) { console.log(e); }
try {
il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282e8554_24792461'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282e8569_70713031'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627ed8356_20388197'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edaa09_29492362'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edbe90_82551881'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e627edc996_59912124'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628073194_30276774'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628074508_17178177'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075068_77202108'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628075af9_83027183'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628111882_33998407'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628112a63_75743691'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6281135e2_48430659'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628114056_21302135'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628230907_82237962'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628231c79_79488759'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282329c2_71144179'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e628233589_51581905'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282ecab9_42378231'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282edbb3_26513184'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282ee745_74386608'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282ef157_85934376'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282e8725_00864783'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282e8738_91278359'); il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_6204e6282e8753_16390120');
$(window).resize(il.UI.maincontrols.mainbar.adjustToScreenSize);
il.UI.maincontrols.mainbar.init('');
} catch (e) { console.log(e); }
try { } catch (e) { console.log(e); }
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_855/legends_1_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_856/legends_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_857/LegendaGPW.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_858/legends_4_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_859/legends_3_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_860/legends_5_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_861/legends_6_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_862/legends_7_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_864/addnew_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_866/dailycheck_1_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_867/dailycheck_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_870/fastrec_1_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_872/fastrec_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_874/mouseover.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_875/paste.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_876/pasted.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_881/legendaprogetti.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_887/timbrature_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_888/timbrature_1_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_889/Arrivita_1_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_890/Arrivita_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_891/Day_List_1_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_892/Day_List_3_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_893/Day_List_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_894/Fast_rec_libero_1_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_895/Fast_rec_libero_2_.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
@@ -1,96 +0,0 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" class="ilc_Fullscreen" style="overflow: visible;">
<head>
<title>Egalware </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="" />
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="./Services/JavaScript/js/Basic.js?vers=7-4-2021-11-03"></script>
<script type="text/javascript" src="./node_modules/jquery-ui-dist/jquery-ui.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify-jquery.min.js"></script>
<script type="text/javascript" src="./node_modules/maphilight/jquery.maphilight.min.js"></script>
<script type="text/javascript" src="./Services/COPage/js/ilCOPagePres.js"></script>
<script type="text/javascript" src="./node_modules/linkifyjs/dist/linkify.min.js"></script>
<script type="text/javascript" src="./Services/Link/js/ilExtLink.js"></script>
<script type="text/javascript" src="./node_modules/mediaelement/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/pure.js"></script>
<script type="text/javascript" src="./Modules/Scorm2004/scripts/questions/question_handling.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js"></script>
<script type="text/javascript" src="Modules/TestQuestionPool/js/ilMatchingQuestion.js"></script>
<script type="text/javascript" src="./Services/Accordion/js/accordion.js"></script>
<script type="text/javascript" src="./libs/bower/bower_components/owl.carousel/dist/owl.carousel.js"></script>
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-4-2021-11-03-$Id$" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/TestQuestionPool/templates/default/test_javascript.css" media="screen" />
<link rel="stylesheet" type="text/css" href="Modules/Test/templates/default/ta.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css" media="screen" />
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/owl.carousel/dist/assets/owl.carousel.css" media="screen" />
</head>
<body class="ilc_Fullscreen" style="overflow: visible;">
<table class = "ilc_Fullscreen"><tr><td valign="middle">
<div align="center" style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style="&#10;&#9;&#9;&#9;position: relative;&#10;&#9;&#9;&#9;display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_896/menu.png"/></div></figure></div>
</td></tr></table>
<script type="text/javascript">
il.Util.addOnLoad(function() {
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
ilias.questions.txt.wrong_answers = "Incorrect Items";
ilias.questions.txt.wrong_answers_single = "Incorrect Choice.";
ilias.questions.txt.tries_remaining = "Tries Remaining";
ilias.questions.txt.please_try_again = "Please try again!";
ilias.questions.txt.all_answers_correct = "Correct!";
ilias.questions.txt.enough_answers_correct = "Correct, but not the best solution!";
ilias.questions.txt.nr_of_tries_exceeded = "Number of tries exceeded.";
ilias.questions.txt.correct_answers_shown = "Correct solution see above.";
ilias.questions.txt.correct_answers_also = "Also correct are:";
ilias.questions.txt.correct_answer_also = "Also correct is:";
ilias.questions.txt.ov_all_correct = "You have correctly answered all questions.";
ilias.questions.txt.ov_some_correct = "You have correctly answered [x] out of [y] questions.";
ilias.questions.txt.ov_wrong_answered = "The following questions were not answered or answered wrong";
ilias.questions.txt.please_select = "please select";
ilias.questions.txt.ov_preview = "The question overview does not work in the page editor context. Use the SCO or SCORM level preview instead.";
ilias.questions.txt.submit_answers = "Submit";
ilias.questions.refresh_lang();
il.COPagePres.updateQuestionOverviews();
il.ExtLink.autolink('.ilc_Paragraph, .ilc_page_fn_Footnote','ilc_link_ExtLink');
});
</script>
</body>
</html>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Some files were not shown because too many files have changed in this diff Show More