- Aperta finestra con webviewer da path completa
@@ -0,0 +1,17 @@
|
||||
<EgtWPFLib5:EgtCustomWindow x:Class="HelpWndV"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:CefSharpWpf="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
|
||||
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
||||
xmlns:local="clr-namespace:Icarus"
|
||||
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
|
||||
Title="{Binding sTitle}" Icon="/Resources/Icarus.ico"
|
||||
MinHeight="600" MinWidth="800" WindowStyle="None" ResizeMode="NoResize">
|
||||
<EgtWPFLib5:EgtCustomWindow.Resources>
|
||||
<local:CustomMenuHandler x:Key="CustomMenuHandler"/>
|
||||
</EgtWPFLib5:EgtCustomWindow.Resources>
|
||||
<CefSharpWpf:ChromiumWebBrowser x:Name="Browser"
|
||||
Address="c:\EgtData\Icarus\Help\lm_1170\\index.html"
|
||||
MenuHandler="{StaticResource CustomMenuHandler}"/>
|
||||
|
||||
</EgtWPFLib5:EgtCustomWindow>
|
||||
@@ -0,0 +1,20 @@
|
||||
Public Class HelpWndV
|
||||
|
||||
Private WithEvents m_HelpWndVM As HelpWndVM
|
||||
|
||||
Sub New(Owner As Window, HelpWndVM As HelpWndVM)
|
||||
MyBase.New(Owner)
|
||||
' This call is required by the designer.
|
||||
InitializeComponent()
|
||||
Me.DataContext = HelpWndVM
|
||||
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
||||
m_HelpWndVM = HelpWndVM
|
||||
'm_HelpWndVM.SetWebBrowser(WebBrowser)
|
||||
'Browser.ResourceRequestHandlerFactory = New ResourceHandlerFactory
|
||||
End Sub
|
||||
|
||||
'Private Sub CloseWindow(bDialogResult As Boolean) Handles m_HelpWndVM.m_CloseWindow
|
||||
' Me.DialogResult = bDialogResult
|
||||
'End Sub
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,20 @@
|
||||
Public Class HelpWndVM
|
||||
|
||||
'Private m_WebBrowser As WebBrowser
|
||||
'Public ReadOnly Property WebBrowser As WebBrowser
|
||||
' Get
|
||||
' Return m_WebBrowser
|
||||
' End Get
|
||||
'End Property
|
||||
'Friend Sub SetWebBrowser(value As WebBrowser)
|
||||
' m_WebBrowser = value
|
||||
'End Sub
|
||||
|
||||
Sub New()
|
||||
End Sub
|
||||
|
||||
Friend Sub LoadHtml()
|
||||
'm_WebBrowser.Source = New Uri("c:\EgtData\Icarus\Help\lm_1170\index.html")
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,63 @@
|
||||
Imports System.IO
|
||||
Imports CefSharp
|
||||
Imports CefSharp.Callback
|
||||
|
||||
Public Class ResourceHandler
|
||||
Implements IResourceHandler
|
||||
|
||||
Private disposedValue As Boolean
|
||||
|
||||
Public Sub GetResponseHeaders(response As IResponse, ByRef responseLength As Long, ByRef redirectUrl As String) Implements IResourceHandler.GetResponseHeaders
|
||||
Throw New NotImplementedException()
|
||||
End Sub
|
||||
|
||||
Public Sub Cancel() Implements IResourceHandler.Cancel
|
||||
Throw New NotImplementedException()
|
||||
End Sub
|
||||
|
||||
Public Function Open(request As IRequest, ByRef handleRequest As Boolean, callback As ICallback) As Boolean Implements IResourceHandler.Open
|
||||
Return True
|
||||
End Function
|
||||
|
||||
Public Function ProcessRequest(request As IRequest, callback As ICallback) As Boolean Implements IResourceHandler.ProcessRequest
|
||||
Return True
|
||||
End Function
|
||||
|
||||
Public Function Skip(bytesToSkip As Long, ByRef bytesSkipped As Long, callback As IResourceSkipCallback) As Boolean Implements IResourceHandler.Skip
|
||||
Throw New NotImplementedException()
|
||||
End Function
|
||||
|
||||
Public Function Read(dataOut As Stream, ByRef bytesRead As Integer, callback As IResourceReadCallback) As Boolean Implements IResourceHandler.Read
|
||||
Throw New NotImplementedException()
|
||||
End Function
|
||||
|
||||
Public Function ReadResponse(dataOut As Stream, ByRef bytesRead As Integer, callback As ICallback) As Boolean Implements IResourceHandler.ReadResponse
|
||||
Throw New NotImplementedException()
|
||||
End Function
|
||||
|
||||
Protected Overridable Sub Dispose(disposing As Boolean)
|
||||
If Not disposedValue Then
|
||||
If disposing Then
|
||||
' TODO: dispose managed state (managed objects)
|
||||
End If
|
||||
|
||||
' TODO: free unmanaged resources (unmanaged objects) and override finalizer
|
||||
' TODO: set large fields to null
|
||||
disposedValue = True
|
||||
End If
|
||||
End Sub
|
||||
|
||||
' ' TODO: override finalizer only if 'Dispose(disposing As Boolean)' has code to free unmanaged resources
|
||||
' Protected Overrides Sub Finalize()
|
||||
' ' Do not change this code. Put cleanup code in 'Dispose(disposing As Boolean)' method
|
||||
' Dispose(disposing:=False)
|
||||
' MyBase.Finalize()
|
||||
' End Sub
|
||||
|
||||
Public Sub Dispose() Implements IDisposable.Dispose
|
||||
' Do not change this code. Put cleanup code in 'Dispose(disposing As Boolean)' method
|
||||
Dispose(disposing:=True)
|
||||
GC.SuppressFinalize(Me)
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,15 @@
|
||||
Imports CefSharp
|
||||
|
||||
Public Class ResourceHandlerFactory
|
||||
Implements IResourceRequestHandlerFactory
|
||||
|
||||
Public ReadOnly Property HasHandlers As Boolean Implements IResourceRequestHandlerFactory.HasHandlers
|
||||
Get
|
||||
Throw New NotImplementedException()
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public Function GetResourceRequestHandler(chromiumWebBrowser As IWebBrowser, browser As IBrowser, frame As IFrame, request As IRequest, isNavigation As Boolean, isDownload As Boolean, requestInitiator As String, ByRef disableDefaultHandling As Boolean) As IResourceRequestHandler Implements IResourceRequestHandlerFactory.GetResourceRequestHandler
|
||||
Return New ResourceHandler
|
||||
End Function
|
||||
End Class
|
||||
@@ -1,4 +1,7 @@
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props" Condition="Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props')" />
|
||||
<Import Project="..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props" Condition="Exists('..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props')" />
|
||||
<Import Project="..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props" Condition="Exists('..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props')" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
@@ -12,6 +15,8 @@
|
||||
<MyType>Custom</MyType>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
@@ -76,6 +81,15 @@
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="CefSharp, Version=109.1.110.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\CefSharp.Common.109.1.110\lib\net452\CefSharp.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CefSharp.Core, Version=109.1.110.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\CefSharp.Common.109.1.110\lib\net452\CefSharp.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CefSharp.Wpf, Version=109.1.110.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\CefSharp.Wpf.109.1.110\lib\net462\CefSharp.Wpf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="EgtUILib, Version=2.4.7.1, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\EgtProg\DllD32\EgtUILib.dll</HintPath>
|
||||
@@ -145,6 +159,12 @@
|
||||
<DependentUpon>DispositionPanelV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DispositionPanel\DispositionPanelVM.vb" />
|
||||
<Compile Include="HelpWnd\HelpWndV.xaml.vb">
|
||||
<DependentUpon>HelpWndV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="HelpWnd\HelpWndVM.vb" />
|
||||
<Compile Include="HelpWnd\ResourceHandler.vb" />
|
||||
<Compile Include="HelpWnd\ResourceHandlerFactory.vb" />
|
||||
<Compile Include="ImportExportMachiningPanel\ImportExportMachiningPanelV.xaml.vb">
|
||||
<DependentUpon>ImportExportMachiningPanelV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
@@ -285,6 +305,7 @@
|
||||
<DependentUpon>TFSEditorV.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Utility\CurrentMachine.vb" />
|
||||
<Compile Include="Utility\CustomMenuHandler.vb" />
|
||||
<Compile Include="Utility\Dictionary.xaml.vb">
|
||||
<DependentUpon>Dictionary.xaml</DependentUpon>
|
||||
</Compile>
|
||||
@@ -329,6 +350,10 @@
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Include="HelpWnd\HelpWndV.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
</Page>
|
||||
<Page Include="ImportExportMachiningPanel\ImportExportMachiningPanelV.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
@@ -682,6 +707,9 @@
|
||||
<ItemGroup>
|
||||
<Resource Include="Resources\ProjectManager\Export.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Resources\Manual\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>IF "$(PlatformName)"=="x86" IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Icarus\IcarusR32.exe
|
||||
@@ -689,4 +717,14 @@ IF "$(PlatformName)"=="x86" IF "$(ConfigurationName)" == "Debug" copy $(TargetPa
|
||||
IF "$(PlatformName)"=="x64" IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Icarus\IcarusR64.exe
|
||||
IF "$(PlatformName)"=="x64" IF "$(ConfigurationName)" == "Debug" copy $(TargetPath) c:\EgtProg\Icarus\IcarusD64.exe</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\cef.redist.x64.109.1.11\build\cef.redist.x64.props'))" />
|
||||
<Error Condition="!Exists('..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\cef.redist.x86.109.1.11\build\cef.redist.x86.props'))" />
|
||||
<Error Condition="!Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.props'))" />
|
||||
<Error Condition="!Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets" Condition="Exists('..\packages\CefSharp.Common.109.1.110\build\CefSharp.Common.targets')" />
|
||||
</Project>
|
||||
@@ -65,6 +65,12 @@
|
||||
Style="{StaticResource ToolBar_Button}">
|
||||
<Image Source="/Resources/ProjectManager/Options.png" Height="22" />
|
||||
</Button>
|
||||
<Button Command="{Binding Help_Command}"
|
||||
Width="30"
|
||||
ToolTip="{Binding Help_ToolTip}"
|
||||
Style="{StaticResource ToolBar_Button}">
|
||||
<Image Source="/Resources/ProjectManager/Send.png" Height="22" />
|
||||
</Button>
|
||||
<Button Command="{Binding SendFeedbackCommand}"
|
||||
Width="30"
|
||||
ToolTip="{Binding SendFeedbackToolTip}"
|
||||
|
||||
@@ -62,6 +62,7 @@ Public Class ProjManagerVM
|
||||
Private m_cmdImport As ICommand
|
||||
Private m_cmdExport As ICommand
|
||||
Private m_cmdOptions As ICommand
|
||||
Private m_cmdHelp As ICommand
|
||||
Private m_cmdSendFeedback As ICommand
|
||||
|
||||
|
||||
@@ -369,6 +370,32 @@ Public Class ProjManagerVM
|
||||
|
||||
#End Region ' Options
|
||||
|
||||
#Region "Help"
|
||||
|
||||
''' <summary>
|
||||
''' Returns a command that do Export.
|
||||
''' </summary>
|
||||
Public ReadOnly Property Help_Command As ICommand
|
||||
Get
|
||||
If m_cmdHelp Is Nothing Then
|
||||
m_cmdHelp = New Command(AddressOf Help)
|
||||
End If
|
||||
Return m_cmdHelp
|
||||
End Get
|
||||
End Property
|
||||
|
||||
''' <summary>
|
||||
''' Execute the Export. This method is invoked by the ExportCommand.
|
||||
''' </summary>
|
||||
Public Sub Help(ByVal param As Object)
|
||||
Dim HelpWndVM As New HelpWndVM
|
||||
Dim HelpWnd As New HelpWndV(Application.Current.MainWindow, HelpWndVM)
|
||||
HelpWndVM.LoadHtml()
|
||||
HelpWnd.Show()
|
||||
End Sub
|
||||
|
||||
#End Region ' Options
|
||||
|
||||
#Region "SendFeedback"
|
||||
|
||||
''' <summary>
|
||||
|
||||
@@ -0,0 +1,244 @@
|
||||
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;
|
||||
}
|
||||
})});
|
||||
@@ -0,0 +1,861 @@
|
||||
/*!
|
||||
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, '"'); };
|
||||
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;
|
||||
}
|
||||
}());
|
||||
@@ -0,0 +1,16 @@
|
||||
/* 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 {
|
||||
}
|
||||
@@ -0,0 +1,159 @@
|
||||
/* 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));
|
||||
@@ -0,0 +1,471 @@
|
||||
(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));
|
||||
@@ -0,0 +1,82 @@
|
||||
.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;
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
/* 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;
|
||||
}
|
||||
@@ -0,0 +1,477 @@
|
||||
/* */
|
||||
|
||||
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));
|
||||
@@ -0,0 +1,37 @@
|
||||
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);
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
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;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,817 @@
|
||||
|
||||
/* 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;
|
||||
const p = this.fixMarkerPosition;
|
||||
p(m);
|
||||
window.setTimeout(function() {
|
||||
p(m);
|
||||
}, 500);
|
||||
|
||||
},
|
||||
|
||||
fixMarkerPosition: function(m) {
|
||||
var base, pos, mark, mx, my;
|
||||
base = $("img#base_img_" + m.iim_id);
|
||||
pos = base.offset();
|
||||
mark = $("a#" + m.m_id);
|
||||
// display the marker at the correct position
|
||||
mark.css('position', 'absolute');
|
||||
mx = pos.left + parseInt(m.markx, 10);
|
||||
my = pos.top + parseInt(m.marky, 10);
|
||||
mark.css('display', '');
|
||||
il.Overlay.setX(m.m_id, mx);
|
||||
il.Overlay.setY(m.m_id, my);
|
||||
|
||||
},
|
||||
|
||||
fixMarkerPositions: function () {
|
||||
var m, k, base, pos, mark, mx, my;
|
||||
|
||||
for (k in il.COPagePres.iim_marker) {
|
||||
m = il.COPagePres.iim_marker[k];
|
||||
this.fixMarkerPosition(m);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 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));
|
||||
position = (Math.round(marker.offset().left) - Math.round(base.offset().left)) + "," +
|
||||
(Math.round(marker.offset().top) - Math.round(base.offset().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.offset();
|
||||
ovx = bpos.left + parseInt(dtr.ovx, 10);
|
||||
ovy = bpos.top + parseInt(dtr.ovy, 10);
|
||||
ov.css('display', '');
|
||||
ov.css("position", "absolute");
|
||||
il.Overlay.setX("iim_ov_" + dtr.tr_id, ovx);
|
||||
il.Overlay.setY("iim_ov_" + dtr.tr_id, ovy);
|
||||
|
||||
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.offset();
|
||||
//console.log(dtr);
|
||||
popx = bpos.left + parseInt(dtr.popx, 10);
|
||||
popy = bpos.top + parseInt(dtr.popy, 10);
|
||||
pdummy.css("position", "absolute");
|
||||
pdummy.css('width', dtr.popwidth);
|
||||
pdummy.css('height', dtr.popheight);
|
||||
pdummy.css('display', '');
|
||||
il.Overlay.setX("popupdummy", popx);
|
||||
il.Overlay.setY("popupdummy", popy);
|
||||
|
||||
|
||||
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();});
|
||||
@@ -0,0 +1,27 @@
|
||||
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");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* This fixes the responsive behaviour of the players
|
||||
* in the ILIAS grid. It appears (ILIAS 7) when the window
|
||||
* gets narrower (getting wider worked without workaround)
|
||||
* see https://mantis.ilias.de/view.php?id=32162
|
||||
*/
|
||||
window.addEventListener('resize', (event) => {
|
||||
if (mejs && mejs.players) {
|
||||
let modifiedPlayers = [];
|
||||
for (const [key, player] of Object.entries(mejs.players)) {
|
||||
//console.log(`${key}: ${player}`);
|
||||
// reduce all players with stretching set to "auto" to 1x1 size
|
||||
if (player.options.stretching == 'auto') {
|
||||
player.options.stretching = 'none';
|
||||
player.setPlayerSize(1, 1);
|
||||
modifiedPlayers.push(player);
|
||||
}
|
||||
}
|
||||
// now for the modified players, set stretching back to auto
|
||||
// and trigger the responsive resizing
|
||||
modifiedPlayers.forEach((player, key) => {
|
||||
player.options.stretching = 'auto';
|
||||
player.setPlayerSize();
|
||||
});
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,186 @@
|
||||
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);
|
||||
}
|
||||
};
|
||||
})();
|
||||
};
|
||||
@@ -0,0 +1,45 @@
|
||||
.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;
|
||||
}
|
||||
@@ -0,0 +1,182 @@
|
||||
|
||||
/* 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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,347 @@
|
||||
|
||||
/* 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, ""); });
|
||||
|
After Width: | Height: | Size: 252 B |
|
After Width: | Height: | Size: 252 B |
|
After Width: | Height: | Size: 252 B |
@@ -0,0 +1,49 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,40 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,44 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,36 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 777 B |
|
After Width: | Height: | Size: 781 B |
|
After Width: | Height: | Size: 359 B |
@@ -0,0 +1,756 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3ee8fc11_16169935">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3ee8eec1_02866511" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8bde1_21601243" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8d032_66480549" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8da99_86768276" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8e338_93719743" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8cc75_65077243" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8d760_20444139" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8e042_86747960" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8e8c4_76302667" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8f502_37883999" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_302.html" >
|
||||
Import Part
|
||||
<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">Introduction</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard"><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Icarus is the Slicing & Printing software made by Egalware for the Large Additive Manufacturing.</span><br/><br/>In the picture below you can see the interface, which we will explain step by step in this documentation.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1180/Intro_1_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1178/Intro_2_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214" alt=""/></div><figcaption style=" 					display: table-caption; caption-side: bottom; 				"><div class="ilc_media_caption_MediaCaption"/></figcaption></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">By clicking the upper left icon will appear a window containing all the software and system information. As showed in the below picture, It is used to check the installed version and the hardware build currently running the software.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1179/Intro_3_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">If any support or assistance is needed, it is important to copy and transmit the information contained in the box so the technicians can have more information possible regarding the specific installation.<!--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_63d0ff3ee6cf42_26035047">
|
||||
<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">×</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-296'></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_63d0ff3ee6c929_32677666', '-lm-296'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_302.html" >
|
||||
Import Part
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3ee6c929_32677666', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3ee6cf42_26035047', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3ee6cf42_26035047"}, signalData); return false; });$(document).on('il_signal_63d0ff3ee6c957_55686158', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3ee6cf42_26035047'); return false; });$(document).on('il_signal_63d0ff3ee6c961_85702413', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3ee6cf42_26035047', 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_63d0ff3ee8bde1_21601243', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8bde1_21601243').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8b9e3_29047317',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8b9e3_29047317', '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_63d0ff3ee8b8e4_93013623', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});$(document).on('il_signal_63d0ff3ee8b900_13774526', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});$(document).on('il_signal_63d0ff3ee8b912_62996210', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3ee8cc75_65077243'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3ee8d032_66480549', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8d032_66480549').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8cd81_34583329',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8cd81_34583329', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88362_35062860', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});$(document).on('il_signal_63d0ff3ee88379_77427782', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});$(document).on('il_signal_63d0ff3ee88385_05609071', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3ee8d760_20444139'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3ee8da99_86768276', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8da99_86768276').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8d839_23892402',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8d839_23892402', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88429_11615188', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});$(document).on('il_signal_63d0ff3ee88437_65731093', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});$(document).on('il_signal_63d0ff3ee88445_18150113', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3ee8e042_86747960'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3ee8e338_93719743', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8e338_93719743').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8e104_43928242',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8e104_43928242', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88495_44010459', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});$(document).on('il_signal_63d0ff3ee884a9_43104840', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});$(document).on('il_signal_63d0ff3ee884b3_81778817', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3ee8e8c4_76302667'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ee8eec1_02866511').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee88541_20400653',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee88541_20400653', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ee8f502_37883999').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee88532_08990916',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee88532_08990916', '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_63d0ff3ee88532_08990916');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee88541_20400653');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886b3_57690902');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886d0_94616127');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886e8_48363734');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 828 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 611 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 571 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 479 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 726 B |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 960 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 465 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 653 B |
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 586 B |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 586 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 666 B |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 943 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 722 B |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 476 B |
@@ -0,0 +1,10 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 428 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 841 B |
@@ -0,0 +1,3 @@
|
||||
<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>
|
||||
|
After Width: | Height: | Size: 745 B |
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,92 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,92 @@
|
||||
<?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>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,756 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3ee8fc11_16169935">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3ee8eec1_02866511" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8bde1_21601243" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8d032_66480549" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8da99_86768276" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8e338_93719743" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8cc75_65077243" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8d760_20444139" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8e042_86747960" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ee8e8c4_76302667" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3ee8f502_37883999" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_302.html" >
|
||||
Import Part
|
||||
<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">Introduction</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard"><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Icarus is the Slicing & Printing software made by Egalware for the Large Additive Manufacturing.</span><br/><br/>In the picture below you can see the interface, which we will explain step by step in this documentation.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1180/Intro_1_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1178/Intro_2_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214" alt=""/></div><figcaption style=" 					display: table-caption; caption-side: bottom; 				"><div class="ilc_media_caption_MediaCaption"/></figcaption></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">By clicking the upper left icon will appear a window containing all the software and system information. As showed in the below picture, It is used to check the installed version and the hardware build currently running the software.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1179/Intro_3_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">If any support or assistance is needed, it is important to copy and transmit the information contained in the box so the technicians can have more information possible regarding the specific installation.<!--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_63d0ff3ee6cf42_26035047">
|
||||
<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">×</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-296'></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_63d0ff3ee6c929_32677666', '-lm-296'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_302.html" >
|
||||
Import Part
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3ee6c929_32677666', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3ee6cf42_26035047', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3ee6cf42_26035047"}, signalData); return false; });$(document).on('il_signal_63d0ff3ee6c957_55686158', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3ee6cf42_26035047'); return false; });$(document).on('il_signal_63d0ff3ee6c961_85702413', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3ee6cf42_26035047', 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_63d0ff3ee8bde1_21601243', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8bde1_21601243').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8b9e3_29047317',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8b9e3_29047317', '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_63d0ff3ee8b8e4_93013623', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});$(document).on('il_signal_63d0ff3ee8b900_13774526', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});$(document).on('il_signal_63d0ff3ee8b912_62996210', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8cc75_65077243'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3ee8cc75_65077243'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3ee8d032_66480549', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8d032_66480549').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8cd81_34583329',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8cd81_34583329', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88362_35062860', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});$(document).on('il_signal_63d0ff3ee88379_77427782', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});$(document).on('il_signal_63d0ff3ee88385_05609071', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8d760_20444139'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3ee8d760_20444139'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3ee8da99_86768276', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8da99_86768276').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8d839_23892402',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8d839_23892402', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88429_11615188', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});$(document).on('il_signal_63d0ff3ee88437_65731093', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});$(document).on('il_signal_63d0ff3ee88445_18150113', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8e042_86747960'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3ee8e042_86747960'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3ee8e338_93719743', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ee8e338_93719743').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee8e104_43928242',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee8e104_43928242', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ee88495_44010459', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});$(document).on('il_signal_63d0ff3ee884a9_43104840', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});$(document).on('il_signal_63d0ff3ee884b3_81778817', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ee8e8c4_76302667'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3ee8e8c4_76302667'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ee8eec1_02866511').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee88541_20400653',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee88541_20400653', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ee8f502_37883999').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ee88532_08990916',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ee88532_08990916', '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_63d0ff3ee88532_08990916');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee88541_20400653');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886b3_57690902');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886d0_94616127');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee886e8_48363734');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f4102a7_05539829">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f40f674_43623549" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f40cb44_82874535" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f40da97_74564791" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f40e470_56115961" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f40ee41_87361291" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f40d650_73643103" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f40e157_46960243" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f40eb00_08657912" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f40f3b9_59021985" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f40fbe8_11822525" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_300.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Materials </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_324.html" >
|
||||
General Parameters
|
||||
<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">Print Parameters</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">In this section we will explain how to modify all the <span class="ilc_text_inline_Strong">printing parameters</span> and save a new set for utilization.<br/>The <span class="ilc_text_inline_Strong">parameters </span>can be edited after clicking on the <span class="ilc_text_inline_Strong">resume box </span>at the top of the windows.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1202/PrintParameters_1_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">When clicking the top box, a window will show on the right. There are five groups of parameters that can be edited:<!--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">General</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Shell<br/></span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Ribs</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Reduce Shell Number</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Filled Solid</span></li></ul><!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1203/PrintParameters_2_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></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_63d0ff3f3f65e3_01984825">
|
||||
<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">×</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-299'></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_63d0ff3f3f5df9_29803274', '-lm-299'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_300.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Materials </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_324.html" >
|
||||
General Parameters
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f3f5df9_29803274', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f3f65e3_01984825', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f3f65e3_01984825"}, signalData); return false; });$(document).on('il_signal_63d0ff3f3f5e49_72014022', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f3f65e3_01984825'); return false; });$(document).on('il_signal_63d0ff3f3f5e52_92568915', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f3f65e3_01984825', 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_63d0ff3f40cb44_82874535', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f40cb44_82874535').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f40c861_38225575',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f40c861_38225575', '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_63d0ff3f40c772_36265405', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f40d650_73643103'); return false;});$(document).on('il_signal_63d0ff3f40c781_76592914', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f40d650_73643103'); return false;});$(document).on('il_signal_63d0ff3f40c798_33933506', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f40d650_73643103'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f40d650_73643103'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f40da97_74564791', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f40da97_74564791').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f40d791_63763381',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f40d791_63763381', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f409508_54042929', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f40e157_46960243'); return false;});$(document).on('il_signal_63d0ff3f409511_16615195', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f40e157_46960243'); return false;});$(document).on('il_signal_63d0ff3f409520_67955015', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f40e157_46960243'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f40e157_46960243'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f40e470_56115961', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f40e470_56115961').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f40e228_54644197',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f40e228_54644197', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f4095b2_82954995', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f40eb00_08657912'); return false;});$(document).on('il_signal_63d0ff3f4095c4_71894700', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f40eb00_08657912'); return false;});$(document).on('il_signal_63d0ff3f4095d6_24874574', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f40eb00_08657912'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f40eb00_08657912'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f40ee41_87361291', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f40ee41_87361291').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f40ec15_00812986',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f40ec15_00812986', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f409628_74656882', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f40f3b9_59021985'); return false;});$(document).on('il_signal_63d0ff3f409638_74813054', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f40f3b9_59021985'); return false;});$(document).on('il_signal_63d0ff3f409640_32247966', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f40f3b9_59021985'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f40f3b9_59021985'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f40f674_43623549').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4096d9_14426198',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4096d9_14426198', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f40fbe8_11822525').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4096c1_80229656',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4096c1_80229656', '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_63d0ff3f4096c1_80229656');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4096d9_14426198');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f9a08_92740805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0faac7_27415267');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fb4e8_84290434');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fbdd1_45964904');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f197798_02599954');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f198760_19934910');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f1991b7_95924677');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f199ae2_43591352');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f228cb6_95839839');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f229cc6_11075459');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22a6d9_01654293');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22b058_49488790');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b51b6_01049840');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b7bb1_24107049');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b85d1_96634512');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b8f21_54516995');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37dd89_02701337');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37f0d9_07946110');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37fc73_81685164');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f380551_96649334');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40c861_38225575');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40d791_63763381');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40e228_54644197');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40ec15_00812986');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f409850_71460637');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f409870_44705617');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f409882_50933381');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3ef28978_96277333">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3ef27d23_96880431" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ef250e2_27106399" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ef25f71_69645463" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ef268c0_16512629" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ef27453_81988036" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ef25bf8_89275014" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ef265b0_66730898" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ef27102_05338668" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ef27a40_03277578" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3ef28288_34224639" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_315.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Reduce Shell Number </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_299.html" >
|
||||
Print Parameters
|
||||
<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">Materials</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">The selection "<span class="ilc_text_inline_Strong">MATERIAL</span>" allows the user to select the desired material used in the printing process. It is essential that the material selected is the correct one because different materials have different characteristics regarding the print time and the strand section.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1199/MaterialaSection_1_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">After selecting the desired <span class="ilc_text_inline_Strong">Material</span>, it is possible to choose a preset of <span class="ilc_text_inline_Strong">printing parameters</span>. This is done by selecting a strand section (in the example, we have 10x2 or 15x4)<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1200/MaterialaSection_2_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">When is required to modify the printing parameters the user must click the "<span class="ilc_text_inline_Strong">Edit</span>" icon on the left of the strand section selector.<br/>By doing so a window will appear on the right of the screen, containing all the sections of the <span class="ilc_text_inline_Strong">parameters </span>to be modified. In the next chapter of the documentation we will explore in deep every one of those sections. Those are:<!--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">General</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Shell</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Ribs</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Reduce Shell Number</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Filled Solid</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Materials</span></li></ul><!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1201/MaterialaSection_3_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></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_63d0ff3ef0e6b8_72339156">
|
||||
<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">×</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-300'></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_63d0ff3ef0e047_03788083', '-lm-300'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_315.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Reduce Shell Number </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_299.html" >
|
||||
Print Parameters
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3ef0e047_03788083', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3ef0e6b8_72339156', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3ef0e6b8_72339156"}, signalData); return false; });$(document).on('il_signal_63d0ff3ef0e097_07269241', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3ef0e6b8_72339156'); return false; });$(document).on('il_signal_63d0ff3ef0e0a8_57309851', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3ef0e6b8_72339156', 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_63d0ff3ef250e2_27106399', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ef250e2_27106399').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ef24e04_45998207',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ef24e04_45998207', '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_63d0ff3ef24cf1_18559463', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ef25bf8_89275014'); return false;});$(document).on('il_signal_63d0ff3ef24d18_21434030', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ef25bf8_89275014'); return false;});$(document).on('il_signal_63d0ff3ef24d27_05676171', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ef25bf8_89275014'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3ef25bf8_89275014'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3ef25f71_69645463', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ef25f71_69645463').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ef25cf9_00165676',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ef25cf9_00165676', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ef206b6_28115401', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ef265b0_66730898'); return false;});$(document).on('il_signal_63d0ff3ef206c5_51126701', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ef265b0_66730898'); return false;});$(document).on('il_signal_63d0ff3ef206d9_08027333', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ef265b0_66730898'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3ef265b0_66730898'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3ef268c0_16512629', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ef268c0_16512629').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ef26685_94153830',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ef26685_94153830', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ef20771_09213107', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ef27102_05338668'); return false;});$(document).on('il_signal_63d0ff3ef20782_39127876', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ef27102_05338668'); return false;});$(document).on('il_signal_63d0ff3ef20797_93453975', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ef27102_05338668'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3ef27102_05338668'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3ef27453_81988036', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ef27453_81988036').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ef271d8_55395213',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ef271d8_55395213', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ef207f3_61517852', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ef27a40_03277578'); return false;});$(document).on('il_signal_63d0ff3ef20800_49539593', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ef27a40_03277578'); return false;});$(document).on('il_signal_63d0ff3ef20814_93257980', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ef27a40_03277578'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3ef27a40_03277578'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ef27d23_96880431').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ef208a5_11130021',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ef208a5_11130021', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ef28288_34224639').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ef20898_82787762',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ef20898_82787762', '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_63d0ff3ef20898_82787762');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef208a5_11130021');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef20a12_42956720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef20a22_04433771');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef20a47_08384287');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f22c7f0_33606955">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f22bb09_96301278" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f228f90_82803720" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f229f92_85692814" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f22a920_45305583" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f22b291_56574566" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f229bb5_70583465" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f22a604_69705493" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f22af98_49446077" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f22b828_79562951" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f22c061_06300962" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_302.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Import Part </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_319.html" >
|
||||
Modify Disposition
|
||||
<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">Modify Part</h1><!--COPage-PageTop--><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;float:left; clear:both; margin-left: 0px;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1186/Part_List.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215" alt=""/></div><figcaption style=" 					display: table-caption; caption-side: bottom; 				"><div class="ilc_media_caption_MediaCaption"/></figcaption></figure><div class="ilc_Paragraph ilc_text_block_Standard">Now that we have imported the desired part and put it into the <span class="ilc_text_inline_Strong">Print </span>folder we can proceed with the necessary modification and parameter settings before launching the Slicing of the solid.<br/>In the upper part of the window there are the following boxes: <br/><span class="ilc_text_inline_Strong"><br/>PART LIST</span><br/><span class="ilc_text_inline_Strong">MODIFY</span><br/><span class="ilc_text_inline_Strong">MATERIAL</span><br/><br/>By clicking the white box under <span class="ilc_text_inline_Strong">MODIFY </span>there are various operations which will be displayed, as shown in the picture below:<!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">Disposition</span><br/><span class="ilc_text_inline_Strong">Origin Point</span><br/><span class="ilc_text_inline_Strong">Layer Start</span><br/><span class="ilc_text_inline_Strong">Ribs</span><br/><span class="ilc_text_inline_Strong">Reduce Shell Number</span><br/><span class="ilc_text_inline_Strong">Filled Solid</span><!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1185/ModifyDisposition_1_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215" alt=""/></div><figcaption style=" 					display: table-caption; caption-side: bottom; 				"><div class="ilc_media_caption_MediaCaption"/></figcaption></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_63d0ff3f2125a2_49120822">
|
||||
<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">×</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-301'></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_63d0ff3f211f49_39431760', '-lm-301'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_302.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Import Part </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_319.html" >
|
||||
Modify Disposition
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f211f49_39431760', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f2125a2_49120822', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f2125a2_49120822"}, signalData); return false; });$(document).on('il_signal_63d0ff3f211f96_86412619', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f2125a2_49120822'); return false; });$(document).on('il_signal_63d0ff3f211fa3_51786674', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f2125a2_49120822', 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_63d0ff3f228f90_82803720', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f228f90_82803720').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f228cb6_95839839',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f228cb6_95839839', '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_63d0ff3f228bb9_15431111', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f229bb5_70583465'); return false;});$(document).on('il_signal_63d0ff3f228bd5_13667310', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f229bb5_70583465'); return false;});$(document).on('il_signal_63d0ff3f228be5_92722577', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f229bb5_70583465'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f229bb5_70583465'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f229f92_85692814', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f229f92_85692814').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f229cc6_11075459',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f229cc6_11075459', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f224e98_96084547', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f22a604_69705493'); return false;});$(document).on('il_signal_63d0ff3f224ea0_15547386', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f22a604_69705493'); return false;});$(document).on('il_signal_63d0ff3f224eb1_02158244', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f22a604_69705493'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f22a604_69705493'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f22a920_45305583', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f22a920_45305583').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f22a6d9_01654293',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f22a6d9_01654293', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f224f56_64596511', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f22af98_49446077'); return false;});$(document).on('il_signal_63d0ff3f224f62_98054620', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f22af98_49446077'); return false;});$(document).on('il_signal_63d0ff3f224f79_93970555', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f22af98_49446077'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f22af98_49446077'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f22b291_56574566', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f22b291_56574566').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f22b058_49488790',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f22b058_49488790', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f224fc6_98198128', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f22b828_79562951'); return false;});$(document).on('il_signal_63d0ff3f224fd2_07202071', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f22b828_79562951'); return false;});$(document).on('il_signal_63d0ff3f224fe3_75491148', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f22b828_79562951'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f22b828_79562951'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f22bb09_96301278').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f225071_88728625',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f225071_88728625', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f22c061_06300962').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f225065_16196172',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f225065_16196172', '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_63d0ff3f225065_16196172');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f225071_88728625');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f9a08_92740805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0faac7_27415267');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fb4e8_84290434');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fbdd1_45964904');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f197798_02599954');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f198760_19934910');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f1991b7_95924677');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f199ae2_43591352');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f228cb6_95839839');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f229cc6_11075459');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22a6d9_01654293');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22b058_49488790');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2251e4_29559770');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f225205_35900259');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f225212_89193988');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3edf3559_09477744">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3edf26b2_27485379" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3edefc45_23612917" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3edf0b63_71328802" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3edf1569_84463767" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3edf1e44_14975265" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3edf07e6_49807429" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3edf1215_37892193" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3edf1b47_43079471" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3edf23e0_64991399" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3edf2d63_33863090" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_296.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Introduction </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_301.html" >
|
||||
Modify Part
|
||||
<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">Import Part</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">The utilization of Icarus starts with the procedure for importing a 3D model in order to generate the slices and the printing pattern. This is done by clicking the button "Import" in the upper left group as shown in the picture. By clicking this button a new window will open, allowing the user to select a 3d Model of the following formats:<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1181/ImportSTL_1_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></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">STL (Stereolithography)</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">IGS, IGES (Iges File)</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">STP, STEP (Step File)</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">3MF (3D Manufacturing Format)</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">NGE (New Geometry Egaltech)</span></li></ul><!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard">In this documentation we will use a simple box with a rectangular base to demonstrate the functionalities offered by the software.<br/>Once we have imported an entity, a new window will be displayed on the left, divided in two sections: the upper part shows the different entities that compose the project.<br/>The lower part will display the newly imported entity, that need to be placed in the "<span class="ilc_text_inline_Strong">Print</span>" folder before doing any further operation.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1183/ImportSTL_2_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1182/ImportSTL_3_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214" alt=""/></div><figcaption style=" 					display: table-caption; caption-side: bottom; 				"><div class="ilc_media_caption_MediaCaption"/></figcaption></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">In order to move the imported entity in the <span class="ilc_text_inline_Strong">Print </span>folder the user have to <span class="ilc_text_inline_Strong">double click</span> it in the Imported Entity List.<br/>After that, the entity is moved.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1184/ImportSTL_4_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">When the desired entity is under the Print folder the user must press "<span class="ilc_text_inline_Strong">Ok</span>" button to confirm the importation. <br/>Now the entity is correctly imported and ready to be modified, and therefore to perform the <span class="ilc_text_inline_Strong">Slicing </span>when all the necessary modifications are done.<!--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_63d0ff3edcc279_24107593">
|
||||
<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">×</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-302'></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_63d0ff3edcbbc2_21201756', '-lm-302'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_296.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Introduction </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_301.html" >
|
||||
Modify Part
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3edcbbc2_21201756', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3edcc279_24107593', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3edcc279_24107593"}, signalData); return false; });$(document).on('il_signal_63d0ff3edcbc14_25416425', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3edcc279_24107593'); return false; });$(document).on('il_signal_63d0ff3edcbc28_96685345', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3edcc279_24107593', 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_63d0ff3edefc45_23612917', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3edefc45_23612917').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3edef906_97471724',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3edef906_97471724', '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_63d0ff3edef7e3_84119221', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3edf07e6_49807429'); return false;});$(document).on('il_signal_63d0ff3edef804_62622370', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3edf07e6_49807429'); return false;});$(document).on('il_signal_63d0ff3edef819_73049877', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3edf07e6_49807429'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3edf07e6_49807429'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3edf0b63_71328802', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3edf0b63_71328802').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3edf08f4_31681211',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3edf08f4_31681211', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3edeb832_95817358', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3edf1215_37892193'); return false;});$(document).on('il_signal_63d0ff3edeb844_64173507', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3edf1215_37892193'); return false;});$(document).on('il_signal_63d0ff3edeb854_55254390', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3edf1215_37892193'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3edf1215_37892193'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3edf1569_84463767', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3edf1569_84463767').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3edf12f2_78020438',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3edf12f2_78020438', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3edeb908_38350574', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3edf1b47_43079471'); return false;});$(document).on('il_signal_63d0ff3edeb915_98271575', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3edf1b47_43079471'); return false;});$(document).on('il_signal_63d0ff3edeb922_44717785', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3edf1b47_43079471'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3edf1b47_43079471'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3edf1e44_14975265', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3edf1e44_14975265').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3edf1c05_48435519',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3edf1c05_48435519', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3edeb978_38506840', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3edf23e0_64991399'); return false;});$(document).on('il_signal_63d0ff3edeb985_49691273', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3edf23e0_64991399'); return false;});$(document).on('il_signal_63d0ff3edeb999_90423297', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3edf23e0_64991399'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3edf23e0_64991399'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3edf26b2_27485379').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3edeba25_12304652',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3edeba25_12304652', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3edf2d63_33863090').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3edeba11_11082264',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3edeba11_11082264', '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_63d0ff3edeba11_11082264');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edeba25_12304652');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edebbb3_75936805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edebbd1_23640242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edebbe7_86370556');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f4ab815_50881486">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f4aa9c3_24118776" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f4a7a71_87046390" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f4a8a37_36048107" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f4a9430_46376085" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f4a9e23_42898327" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f4a86a5_43105940" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f4a9107_98222963" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f4a9ad6_83739146" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f4aa6c4_70047325" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f4aaf42_38742115" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_316.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Ribs </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_300.html" >
|
||||
Materials
|
||||
<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">Reduce Shell Number</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">The function "Reduce Shell Number" is used to define an area in which the strand count is reduced by a precise amount. For exampe, when drawing a "reduce shell number" area on a side of the entity in which two strands are to be made, they can be reduced to only one strand.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1196/ModifyReduceShell_1_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">For doing so it is necessary to draw a zone by clicking "<span class="ilc_text_inline_Strong">Add</span>" button and drawing lines to close the desired area.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1197/ModifyReduceShell_2_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">By clicking the "<span class="ilc_text_inline_Strong">Parameters</span>" button a window will open on the right of the screen, allowing the user to change the "Reduce Shell Number" settings only for this specific istance. The global parameters are instead modified by clicking the "Printing Parameters" button on the top right of the screen.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1198/ModifyReduceShell_3_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></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_63d0ff3f48f3e0_44798435">
|
||||
<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">×</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-315'></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_63d0ff3f48ecb2_70900554', '-lm-315'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_316.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Ribs </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_300.html" >
|
||||
Materials
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f48ecb2_70900554', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f48f3e0_44798435', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f48f3e0_44798435"}, signalData); return false; });$(document).on('il_signal_63d0ff3f48ed05_75507461', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f48f3e0_44798435'); return false; });$(document).on('il_signal_63d0ff3f48ed11_30436155', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f48f3e0_44798435', 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_63d0ff3f4a7a71_87046390', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f4a7a71_87046390').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4a7799_04843746',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4a7799_04843746', '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_63d0ff3f4a7695_02086524', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f4a86a5_43105940'); return false;});$(document).on('il_signal_63d0ff3f4a76b2_74697005', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f4a86a5_43105940'); return false;});$(document).on('il_signal_63d0ff3f4a76c2_82580934', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f4a86a5_43105940'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f4a86a5_43105940'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f4a8a37_36048107', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f4a8a37_36048107').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4a87a0_63880168',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4a87a0_63880168', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f4a4458_90059230', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f4a9107_98222963'); return false;});$(document).on('il_signal_63d0ff3f4a4463_87383896', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f4a9107_98222963'); return false;});$(document).on('il_signal_63d0ff3f4a4478_71534200', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f4a9107_98222963'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f4a9107_98222963'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f4a9430_46376085', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f4a9430_46376085').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4a91d6_93282032',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4a91d6_93282032', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f4a4521_59665386', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f4a9ad6_83739146'); return false;});$(document).on('il_signal_63d0ff3f4a4537_74274959', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f4a9ad6_83739146'); return false;});$(document).on('il_signal_63d0ff3f4a4543_85218480', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f4a9ad6_83739146'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f4a9ad6_83739146'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f4a9e23_42898327', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f4a9e23_42898327').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4a9b95_66718804',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4a9b95_66718804', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f4a4599_38453895', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f4aa6c4_70047325'); return false;});$(document).on('il_signal_63d0ff3f4a45a3_95231536', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f4aa6c4_70047325'); return false;});$(document).on('il_signal_63d0ff3f4a45b2_12557508', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f4aa6c4_70047325'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f4aa6c4_70047325'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f4aa9c3_24118776').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4a4659_82937509',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4a4659_82937509', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f4aaf42_38742115').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f4a4642_90224031',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f4a4642_90224031', '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_63d0ff3f4a4642_90224031');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a4659_82937509');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f9a08_92740805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0faac7_27415267');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fb4e8_84290434');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fbdd1_45964904');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f197798_02599954');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f198760_19934910');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f1991b7_95924677');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f199ae2_43591352');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f228cb6_95839839');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f229cc6_11075459');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22a6d9_01654293');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22b058_49488790');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b51b6_01049840');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b7bb1_24107049');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b85d1_96634512');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b8f21_54516995');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37dd89_02701337');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37f0d9_07946110');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37fc73_81685164');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f380551_96649334');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40c861_38225575');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40d791_63763381');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40e228_54644197');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40ec15_00812986');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a7799_04843746');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a87a0_63880168');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a91d6_93282032');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a9b95_66718804');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a47d3_96921666');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a47f9_49913448');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a4802_61615933');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f2ba663_82988243">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f2b9a19_78344836" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f2b6005_23679339" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f2b7e44_82718721" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f2b8830_07324469" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f2b9182_23878423" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f2b7a80_04983606" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f2b84f4_60440122" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f2b8e60_75427436" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f2b9747_32694900" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f2b9f64_59212728" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_317.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Layer Start </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_315.html" >
|
||||
Reduce Shell Number
|
||||
<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">Modify Ribs</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">The command Modify Ribs is used to create or edit any Ribs in the solid to be printed. Ribs have usually a structural support function but they can be also used for other purposes.<br/>Ribs are usually imported with the project but they can also be drawn directly using Icarus. In the following examples we will show how to define a new Rib directly in Icarus environment.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1193/ModifyRibs_1_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">When selecting "<span class="ilc_text_inline_Strong">Modify Ribs</span>" the first step to create a new one is by clicking "<span class="ilc_text_inline_Strong">Add</span>" and drawing a line. It may be necessary to alter an existing rib, this can be done by clicking "<span class="ilc_text_inline_Strong">Edit</span>".<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1194/ModifyRibs_2_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">By clicking the "<span class="ilc_text_inline_Strong">Parameters</span>" button, at the bottom of the <span class="ilc_text_inline_Strong">Modify Ribs </span>group (on the left), a window will open on the right. This windows "<span class="ilc_text_inline_Strong">Ribs</span>" allows to modify the specific rib selected without modifying all the ribs settings.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1195/ModifyRibs_3_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></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_63d0ff3f29bb61_85764867">
|
||||
<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">×</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-316'></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_63d0ff3f29b512_82643889', '-lm-316'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_317.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Layer Start </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_315.html" >
|
||||
Reduce Shell Number
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f29b512_82643889', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f29bb61_85764867', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f29bb61_85764867"}, signalData); return false; });$(document).on('il_signal_63d0ff3f29b559_35099674', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f29bb61_85764867'); return false; });$(document).on('il_signal_63d0ff3f29b560_40086475', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f29bb61_85764867', 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_63d0ff3f2b6005_23679339', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f2b6005_23679339').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f2b51b6_01049840',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f2b51b6_01049840', '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_63d0ff3f2b4fb5_01930495', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f2b7a80_04983606'); return false;});$(document).on('il_signal_63d0ff3f2b50c8_64689729', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f2b7a80_04983606'); return false;});$(document).on('il_signal_63d0ff3f2b50d7_81669678', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f2b7a80_04983606'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f2b7a80_04983606'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f2b7e44_82718721', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f2b7e44_82718721').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f2b7bb1_24107049',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f2b7bb1_24107049', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f2b1762_49056465', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f2b84f4_60440122'); return false;});$(document).on('il_signal_63d0ff3f2b1778_72186559', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f2b84f4_60440122'); return false;});$(document).on('il_signal_63d0ff3f2b1789_19348034', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f2b84f4_60440122'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f2b84f4_60440122'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f2b8830_07324469', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f2b8830_07324469').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f2b85d1_96634512',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f2b85d1_96634512', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f2b1827_62505841', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f2b8e60_75427436'); return false;});$(document).on('il_signal_63d0ff3f2b1831_27901040', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f2b8e60_75427436'); return false;});$(document).on('il_signal_63d0ff3f2b1846_17890594', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f2b8e60_75427436'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f2b8e60_75427436'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f2b9182_23878423', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f2b9182_23878423').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f2b8f21_54516995',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f2b8f21_54516995', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f2b1897_11635259', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f2b9747_32694900'); return false;});$(document).on('il_signal_63d0ff3f2b18a3_48328079', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f2b9747_32694900'); return false;});$(document).on('il_signal_63d0ff3f2b18b1_82690694', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f2b9747_32694900'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f2b9747_32694900'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f2b9a19_78344836').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f2b1941_09637987',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f2b1941_09637987', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f2b9f64_59212728').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f2b1935_66411185',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f2b1935_66411185', '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_63d0ff3f2b1935_66411185');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b1941_09637987');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f9a08_92740805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0faac7_27415267');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fb4e8_84290434');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fbdd1_45964904');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f197798_02599954');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f198760_19934910');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f1991b7_95924677');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f199ae2_43591352');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f228cb6_95839839');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f229cc6_11075459');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22a6d9_01654293');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22b058_49488790');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b51b6_01049840');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b7bb1_24107049');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b85d1_96634512');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b8f21_54516995');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b1ab9_87347444');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b1ad8_04316419');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b1ae4_29605051');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f0fd680_65825170">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f0fc852_38051659" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f0f9d84_18429762" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f0fad42_27326703" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f0fb750_79834523" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f0fc038_86587014" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f0fa9b2_83211775" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f0fb408_53479340" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f0fbd11_50886163" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f0fc594_53142166" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f0fcda6_80933085" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_318.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Origin Point </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_316.html" >
|
||||
Modify Ribs
|
||||
<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">Modify Layer Start</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">The next option in the <span class="ilc_text_inline_Strong">Modify </span>group is <span class="ilc_text_inline_Strong">Layer Start.<br/></span>This is used for changing the starting position of each printed layer. It is possible to choose to set a <span class="ilc_text_inline_Strong">point </span>or a <span class="ilc_text_inline_Strong">line </span>for doing so. When drawing a point, the layer will start at the nearest point on the solid surface.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1191/ModifyLayerStart_1_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215" alt=""/></div><figcaption style=" 					display: table-caption; caption-side: bottom; 				"><div class="ilc_media_caption_MediaCaption"/></figcaption></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">It is also possible to move and orient the <span class="ilc_text_inline_Strong">Grid </span>depending on the necessities when drawing the line or the point for the <span class="ilc_text_inline_Strong">Layer Start</span>. <!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1192/ModifyLayerStart_2_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">By clicking the Grid button a list of options will be displayed, used to relocate the Grid on the various surfaces of the solid and to modify the Grid elevation.<!--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_63d0ff3f0e3cc7_26345937">
|
||||
<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">×</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-317'></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_63d0ff3f0e3615_91133377', '-lm-317'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_318.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Origin Point </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_316.html" >
|
||||
Modify Ribs
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f0e3615_91133377', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f0e3cc7_26345937', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f0e3cc7_26345937"}, signalData); return false; });$(document).on('il_signal_63d0ff3f0e3651_53869916', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f0e3cc7_26345937'); return false; });$(document).on('il_signal_63d0ff3f0e3663_03218061', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f0e3cc7_26345937', 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_63d0ff3f0f9d84_18429762', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f0f9d84_18429762').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f0f9a08_92740805',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f0f9a08_92740805', '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_63d0ff3f0f98f0_95407822', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f0fa9b2_83211775'); return false;});$(document).on('il_signal_63d0ff3f0f9910_79769100', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f0fa9b2_83211775'); return false;});$(document).on('il_signal_63d0ff3f0f9925_08370974', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f0fa9b2_83211775'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f0fa9b2_83211775'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f0fad42_27326703', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f0fad42_27326703').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f0faac7_27415267',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f0faac7_27415267', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f0f5fc3_93062121', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f0fb408_53479340'); return false;});$(document).on('il_signal_63d0ff3f0f5fe8_98334748', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f0fb408_53479340'); return false;});$(document).on('il_signal_63d0ff3f0f5ff1_58182125', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f0fb408_53479340'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f0fb408_53479340'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f0fb750_79834523', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f0fb750_79834523').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f0fb4e8_84290434',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f0fb4e8_84290434', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f0f60b1_92902876', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f0fbd11_50886163'); return false;});$(document).on('il_signal_63d0ff3f0f60c9_44244056', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f0fbd11_50886163'); return false;});$(document).on('il_signal_63d0ff3f0f60d4_85118747', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f0fbd11_50886163'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f0fbd11_50886163'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f0fc038_86587014', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f0fc038_86587014').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f0fbdd1_45964904',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f0fbdd1_45964904', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f0f6132_92073275', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f0fc594_53142166'); return false;});$(document).on('il_signal_63d0ff3f0f6149_22416260', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f0fc594_53142166'); return false;});$(document).on('il_signal_63d0ff3f0f6157_21580719', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f0fc594_53142166'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f0fc594_53142166'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f0fc852_38051659').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f0f61e0_40720206',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f0f61e0_40720206', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f0fcda6_80933085').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f0f61d8_56239832',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f0f61d8_56239832', '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_63d0ff3f0f61d8_56239832');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f61e0_40720206');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f9a08_92740805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0faac7_27415267');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fb4e8_84290434');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fbdd1_45964904');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f6384_94159635');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f63a7_97093863');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f63b8_33721482');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f19b272_21162870">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f19a5b3_40887826" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f197a83_16133259" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f198a55_90014927" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f199455_30229339" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f199d31_52718917" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f198669_82302696" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f1990d0_15267922" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f199a26_38633219" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f19a2e4_07458859" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f19aaf7_53274981" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_319.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Disposition </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_317.html" >
|
||||
Modify Layer Start
|
||||
<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">Modify Origin Point</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">The next option in the <span class="ilc_text_inline_Strong">MODIFY </span>section is <span class="ilc_text_inline_Strong">Origin Point</span>. This feature allow the user to switch the position of the <span class="ilc_text_inline_Strong">Origin </span>in different position. By clicking it several boxes will appear on the left of the screen: those are graphical representation of the <span class="ilc_text_inline_Strong">Axis Origin Position. </span>By clicking one of those the origin will change accordingly.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1189/ModifyOrigin_2_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">In this example we changed the <span class="ilc_text_inline_Strong">Origin Point</span>, it is possible to see the axis disposed in the desired way.<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1190/ModifyOrigin_1_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></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_63d0ff3f1803d9_14305440">
|
||||
<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">×</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-318'></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_63d0ff3f17fd20_34380551', '-lm-318'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_319.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Disposition </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_317.html" >
|
||||
Modify Layer Start
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f17fd20_34380551', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f1803d9_14305440', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f1803d9_14305440"}, signalData); return false; });$(document).on('il_signal_63d0ff3f17fd85_29005778', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f1803d9_14305440'); return false; });$(document).on('il_signal_63d0ff3f17fd99_54136168', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f1803d9_14305440', 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_63d0ff3f197a83_16133259', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f197a83_16133259').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f197798_02599954',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f197798_02599954', '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_63d0ff3f197670_22530826', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f198669_82302696'); return false;});$(document).on('il_signal_63d0ff3f1976a5_17526944', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f198669_82302696'); return false;});$(document).on('il_signal_63d0ff3f1976b2_13670098', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f198669_82302696'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f198669_82302696'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f198a55_90014927', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f198a55_90014927').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f198760_19934910',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f198760_19934910', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f193863_01610327', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f1990d0_15267922'); return false;});$(document).on('il_signal_63d0ff3f193873_82123366', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f1990d0_15267922'); return false;});$(document).on('il_signal_63d0ff3f193887_23941683', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f1990d0_15267922'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f1990d0_15267922'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f199455_30229339', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f199455_30229339').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f1991b7_95924677',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f1991b7_95924677', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f193920_99904523', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f199a26_38633219'); return false;});$(document).on('il_signal_63d0ff3f193937_96556581', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f199a26_38633219'); return false;});$(document).on('il_signal_63d0ff3f193946_99523521', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f199a26_38633219'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f199a26_38633219'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f199d31_52718917', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f199d31_52718917').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f199ae2_43591352',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f199ae2_43591352', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f193a29_57279407', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f19a2e4_07458859'); return false;});$(document).on('il_signal_63d0ff3f193a38_68320295', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f19a2e4_07458859'); return false;});$(document).on('il_signal_63d0ff3f193a48_07040511', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f19a2e4_07458859'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f19a2e4_07458859'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f19a5b3_40887826').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f193ad6_40568482',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f193ad6_40568482', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f19aaf7_53274981').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f193ac0_74675908',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f193ac0_74675908', '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_63d0ff3f193ac0_74675908');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f193ad6_40568482');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f9a08_92740805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0faac7_27415267');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fb4e8_84290434');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fbdd1_45964904');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f197798_02599954');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f198760_19934910');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f1991b7_95924677');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f199ae2_43591352');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f193c56_21587481');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f193c72_34898370');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f193c85_15492284');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f06bef4_43065427">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f06b232_06247030" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f068235_04466309" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f069252_07459653" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f06a005_61842980" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f06a943_88846065" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f068ec1_18571261" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f069a45_11701180" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f06a641_44213028" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f06aef3_41397471" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f06b7f3_59148810" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_301.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Part </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_318.html" >
|
||||
Modify Origin Point
|
||||
<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">Modify Disposition</h1><!--COPage-PageTop--><div class="ilc_Paragraph ilc_text_block_Standard">The first option is used to move the solid on the machine table.<br/>Once selected "<span class="ilc_text_inline_Strong">Disposition</span>" under the <span class="ilc_text_inline_Strong">Modify </span>selection, two options will appear: <span class="ilc_text_inline_Strong">Move</span> and <span class="ilc_text_inline_Strong">Rotate</span>.<br/>The operation of moving can be performed both by inserting the <span class="ilc_text_inline_Strong">X Y Z</span> parameters in the apposite boxes and by grabbing and moving with the cursor the solid itself on the machine table (example in picture below).<!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1187/ModifyDisposition_2_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard"><span class="ilc_text_inline_Strong">NOTE</span>: when moving any entity by dragging, a box will appear in the lower section of the window: it will ask the user to insert a starting point and a ending point.<br/>Those points can be selected manually by just clicking with the cursor the desired locations on the machine table, or can be written by the user in the apposite box.<!--Break--></div><div class="ilc_Paragraph ilc_text_block_Standard">The next operation available when <span class="ilc_text_inline_Strong">modifying the disposition</span> of the entity on the machine table is the <span class="ilc_text_inline_Strong">Rotation</span>. When clicking the Rotate button it will be possible to select the Drag option: then is necessary to insert, in this order, the following points:<!--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">Center</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Base point</span></li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Angle or Rotation point</span></li></ul><!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1188/ModifyDisposition_3_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></div></figure></div><div class="ilc_Paragraph ilc_text_block_Standard">By doing this, the solid will rotate with the given parameters. The user can see the anticipation of the performed rotation before accepting it (see example below).<!--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_63d0ff3f0535e4_76056328">
|
||||
<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">×</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-319'></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_63d0ff3f052f50_39839450', '-lm-319'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_301.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Modify Part </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_318.html" >
|
||||
Modify Origin Point
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f052f50_39839450', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f0535e4_76056328', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f0535e4_76056328"}, signalData); return false; });$(document).on('il_signal_63d0ff3f052f95_90064035', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f0535e4_76056328'); return false; });$(document).on('il_signal_63d0ff3f052fa5_39003213', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f0535e4_76056328', 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_63d0ff3f068235_04466309', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f068235_04466309').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f067f42_82628792',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f067f42_82628792', '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_63d0ff3f067e62_38165467', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f068ec1_18571261'); return false;});$(document).on('il_signal_63d0ff3f067e74_53841366', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f068ec1_18571261'); return false;});$(document).on('il_signal_63d0ff3f067e86_24439343', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f068ec1_18571261'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f068ec1_18571261'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f069252_07459653', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f069252_07459653').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f068fd6_95349128',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f068fd6_95349128', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f064233_75972568', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f069a45_11701180'); return false;});$(document).on('il_signal_63d0ff3f064248_04277478', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f069a45_11701180'); return false;});$(document).on('il_signal_63d0ff3f064254_52400597', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f069a45_11701180'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f069a45_11701180'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f06a005_61842980', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f06a005_61842980').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f069cc2_77597299',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f069cc2_77597299', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f0642f4_67303421', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f06a641_44213028'); return false;});$(document).on('il_signal_63d0ff3f064301_64792009', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f06a641_44213028'); return false;});$(document).on('il_signal_63d0ff3f064318_65677247', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f06a641_44213028'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f06a641_44213028'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f06a943_88846065', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f06a943_88846065').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f06a702_95028980',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f06a702_95028980', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f064366_54992856', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f06aef3_41397471'); return false;});$(document).on('il_signal_63d0ff3f064376_07023169', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f06aef3_41397471'); return false;});$(document).on('il_signal_63d0ff3f064387_26723756', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f06aef3_41397471'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f06aef3_41397471'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f06b232_06247030').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f064411_94830381',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f064411_94830381', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f06b7f3_59148810').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f064408_44909740',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f064408_44909740', '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_63d0ff3f064408_44909740');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f064411_94830381');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f064572_00462455');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f064596_69433161');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0645a9_25388665');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,810 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/Core/ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/Modal/modal.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/MainControls/dist/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/MainControls/footer.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/MainControls/system_info.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/Button/button.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/moment/min/moment-with-locales.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Contact/BuddySystem/js/buddy_system.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Awareness/js/Awareness.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
<meta name="languages" content="en" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3eca7d55_84127448">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3eca6e70_93717531" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3eca26c3_68228656" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3eca49f3_17625260" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3eca5bb3_09166505" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3eca6560_20865604" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3eca4539_66803792" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3eca56c0_44632205" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3eca6230_68480451" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3eca6b81_16732486" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3eca73e8_10265659" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_321.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Reduce Shell Number Parameters </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_298.html" >
|
||||
Slicing
|
||||
<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">Filled Solid Parameters</h1><!--COPage-PageTop--><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">Overlap: </span>% of overlapping of the Filled Solid.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Infill: </span>Pattern to be performed while doing the infill.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Strand Order: </span>Specify if the order to be performed is from outside to inside or from inside to outside.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Link Type: </span>Can be None, Linear or Biarc</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Link Parameter: </span>Length of the link between horizontal passes</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Start Point Offset on Slice: </span>Offset in millimeters between a slice start and the upper one</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Coasting Lenght: </span>Distance in millimeters before the closing of the nozzle to stop the deposition of the material before the end of the path</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Wipe Lenght: </span>Distance in millimeters of the extension of the passes with the nozzle closed to clean it of any excess material</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Wipe Direction: </span>Direction expressed in degrees for the extruder during the wiping.</li></ul><!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1208/PrintParameters_7_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></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_63d0ff3eb2dfe5_40141268">
|
||||
<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">×</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-320'></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_63d0ff3eb2c7c8_72404155', '-lm-320'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_321.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Reduce Shell Number Parameters </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_298.html" >
|
||||
Slicing
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3eb2c7c8_72404155', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3eb2dfe5_40141268', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3eb2dfe5_40141268"}, signalData); return false; });$(document).on('il_signal_63d0ff3eb2c8f5_18912936', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3eb2dfe5_40141268'); return false; });$(document).on('il_signal_63d0ff3eb2c907_91269898', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3eb2dfe5_40141268', 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 { il.BuddySystem.setConfig({"http_post_url":"ilias.php?cmd=post&cmdClass=ilbuddysystemgui&cmdNode=157:4t&baseClass=iluipluginroutergui&cmdMode=asynch&rtoken=3f471419a2dd2728095914ad457c4de9","transition_state_cmd":"transitionAsync"}); } catch (e) { console.log(e); }
|
||||
try { il.BuddySystemButton.setConfig({"bnt_class":"ilBuddySystemLinkWidget"}); } catch (e) { console.log(e); }
|
||||
try { il.BuddySystemButton.init(); } 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 { il.GS.Client.init('{"hashing":true,"logging":false}'); } catch (e) { console.log(e); }
|
||||
try { il.Overlay.add("mm_search_menu", {"yuicfg":{"visible":false,"fixedcenter":false},"trigger":null,"trigger_event":null,"anchor_id":null,"auto_hide":false,"close_el":null}); } catch (e) { console.log(e); }
|
||||
try { il.Awareness.setBaseUrl('ilias.php?ref_id=124&cmdClass=ilawarenessgui&cmdNode=3d&baseClass=ilawarenessgui&cmdMode=asynch'); } catch (e) { console.log(e); }
|
||||
try { il.Awareness.setLoaderSrc('./templates/default/images/loader.svg'); } catch (e) { console.log(e); }
|
||||
try { il.Awareness.init(); } catch (e) { console.log(e); }
|
||||
try { } catch (e) { console.log(e); }
|
||||
try {
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'triggerer', 'il_ui_fw_63d0ff3eca26c3_68228656', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3eca26c3_68228656').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3eca1d48_11886331',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3eca1d48_11886331', '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_63d0ff3eca1bf1_36259081', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3eca4539_66803792'); return false;});$(document).on('il_signal_63d0ff3eca1c19_77500178', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3eca4539_66803792'); return false;});$(document).on('il_signal_63d0ff3eca1c27_20902688', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3eca4539_66803792'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3eca4539_66803792'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3eca49f3_17625260', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3eca49f3_17625260').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3eca46a6_28079720',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3eca46a6_28079720', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ec5acd3_40819043', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3eca56c0_44632205'); return false;});$(document).on('il_signal_63d0ff3ec5ad16_15759685', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3eca56c0_44632205'); return false;});$(document).on('il_signal_63d0ff3ec5ad26_04415343', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3eca56c0_44632205'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3eca56c0_44632205'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3eca5bb3_09166505', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3eca5bb3_09166505').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3eca57b5_07532776',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3eca57b5_07532776', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ec5ae81_79585530', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3eca6230_68480451'); return false;});$(document).on('il_signal_63d0ff3ec5ae99_90399426', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3eca6230_68480451'); return false;});$(document).on('il_signal_63d0ff3ec5aea0_48395335', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3eca6230_68480451'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3eca6230_68480451'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3eca6560_20865604', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3eca6560_20865604').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3eca6306_89668854',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3eca6306_89668854', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ec5af43_71043257', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3eca6b81_16732486'); return false;});$(document).on('il_signal_63d0ff3ec5af52_21976242', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3eca6b81_16732486'); return false;});$(document).on('il_signal_63d0ff3ec5af63_65462075', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3eca6b81_16732486'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3eca6b81_16732486'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3eca6e70_93717531').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ec5b031_46770782',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ec5b031_46770782', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3eca73e8_10265659').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ec5b021_55192063',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ec5b021_55192063', '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_63d0ff3ec5b021_55192063');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ec5b031_46770782');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ec5b241_77158320');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ec5b250_17964109');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ec5b269_11827317');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3f52ec80_81051816">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3f52e075_08462176" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f52b6a7_44502635" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f52c5b0_64966243" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f52cf38_00378145" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3f52d807_07376567" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f52c248_26042312" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f52cc18_98328075" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f52d503_82098657" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3f52dda7_50008326" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3f52e5c7_70844200" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_322.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Ribs Parameters </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_320.html" >
|
||||
Filled Solid Parameters
|
||||
<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">Reduce Shell Number Parameters</h1><!--COPage-PageTop--><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">Difference: </span>Number of shells to be reduced while applying this function.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Coasting: </span>Distance in millimeters before the closing of the nozzle to stop the deposition of the material before the end of the path</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Wipe: </span>Distance in millimeters of the extension of the passes with the nozzle closed to clean it of any excess material</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Wipe Direction: </span>Direction expressed in degrees for the extruder during the wiping; for example, 0 is orthogonal to the direction of movement.</li></ul><!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1207/PrintParameters_6_.png?il_wac_token=217f8da4b3107daf86c936c0f772b52c999518ee&il_wac_ttl=3&il_wac_ts=1674641215"/></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_63d0ff3f5156c4_95915300">
|
||||
<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">×</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-321'></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_63d0ff3f515049_21084265', '-lm-321'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_322.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Ribs Parameters </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_320.html" >
|
||||
Filled Solid Parameters
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3f515049_21084265', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3f5156c4_95915300', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3f5156c4_95915300"}, signalData); return false; });$(document).on('il_signal_63d0ff3f515081_79983577', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3f5156c4_95915300'); return false; });$(document).on('il_signal_63d0ff3f515093_06820330', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3f5156c4_95915300', 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_63d0ff3f52b6a7_44502635', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f52b6a7_44502635').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f52b3b2_92535911',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f52b3b2_92535911', '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_63d0ff3f52b2c0_17001497', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f52c248_26042312'); return false;});$(document).on('il_signal_63d0ff3f52b2e8_68196927', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f52c248_26042312'); return false;});$(document).on('il_signal_63d0ff3f52b2f6_60779614', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f52c248_26042312'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3f52c248_26042312'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3f52c5b0_64966243', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f52c5b0_64966243').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f52c346_26283042',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f52c346_26283042', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f527058_32281236', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f52cc18_98328075'); return false;});$(document).on('il_signal_63d0ff3f527066_36709315', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f52cc18_98328075'); return false;});$(document).on('il_signal_63d0ff3f527076_39210900', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f52cc18_98328075'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3f52cc18_98328075'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3f52cf38_00378145', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f52cf38_00378145').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f52cce3_70289236',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f52cce3_70289236', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f527114_58136362', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f52d503_82098657'); return false;});$(document).on('il_signal_63d0ff3f527127_74838582', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f52d503_82098657'); return false;});$(document).on('il_signal_63d0ff3f527133_57201897', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f52d503_82098657'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3f52d503_82098657'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3f52d807_07376567', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3f52d807_07376567').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f52d5c3_13795472',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f52d5c3_13795472', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3f527230_56304620', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3f52dda7_50008326'); return false;});$(document).on('il_signal_63d0ff3f527248_18380575', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3f52dda7_50008326'); return false;});$(document).on('il_signal_63d0ff3f527254_20090489', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3f52dda7_50008326'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3f52dda7_50008326'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f52e075_08462176').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f5272e3_85927391',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f5272e3_85927391', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3f52e5c7_70844200').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3f5272d4_86903551',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3f5272d4_86903551', '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_63d0ff3f5272d4_86903551');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f5272e3_85927391');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edef906_97471724');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf08f4_31681211');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf12f2_78020438');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3edf1c05_48435519');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8b9e3_29047317');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8cd81_34583329');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8d839_23892402');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ee8e104_43928242');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef24e04_45998207');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef25cf9_00165676');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef26685_94153830');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ef271d8_55395213');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f067f42_82628792');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f068fd6_95349128');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f069cc2_77597299');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f06a702_95028980');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0f9a08_92740805');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0faac7_27415267');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fb4e8_84290434');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f0fbdd1_45964904');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f197798_02599954');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f198760_19934910');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f1991b7_95924677');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f199ae2_43591352');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f228cb6_95839839');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f229cc6_11075459');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22a6d9_01654293');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f22b058_49488790');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b51b6_01049840');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b7bb1_24107049');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b85d1_96634512');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f2b8f21_54516995');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37dd89_02701337');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37f0d9_07946110');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f37fc73_81685164');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f380551_96649334');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40c861_38225575');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40d791_63763381');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40e228_54644197');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f40ec15_00812986');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a7799_04843746');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a87a0_63880168');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a91d6_93282032');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f4a9b95_66718804');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f52b3b2_92535911');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f52c346_26283042');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f52cce3_70289236');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f52d5c3_13795472');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f527469_73961259');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f527474_06228644');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3f527487_54300432');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,766 @@
|
||||
<!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" />
|
||||
|
||||
|
||||
|
||||
<title>Egalware: Icarus Documentation</title>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$Id$&version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/Accordion/css/accordion.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/Scorm2004/templates/default/question_handling.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Modules/TestQuestionPool/templates/default/test_javascript.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/jstree/dist/themes/default/style.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/content.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/syntaxhighlight.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./Services/COPage/css/placeholder.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/mediaelement/build/mediaelementplayer.min.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/owl.carousel/dist/assets/owl.carousel.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./libs/bower/bower_components/yui2/build/container/assets/skins/sam/container.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="Services/Notifications/templates/default/osd.css?version=7.11_2022-06-29" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos_cont.css?vers=7-11-2022-06-29&version=7.11_2022-06-29" />
|
||||
|
||||
|
||||
|
||||
<script src="./node_modules/jquery/dist/jquery.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-ui-dist/jquery-ui.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jquery-migrate/dist/jquery-migrate.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify-jquery.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/JavaScript/js/Basic.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/maphilight/jquery.maphilight.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo/yahoo-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/yahoo-dom-event/yahoo-dom-event.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/animation/animation-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Accordion/js/accordion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/pure.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/Scorm2004/scripts/questions/question_handling.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Explorer2/js/Explorer2.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/jstree/dist/jstree.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Modules/LearningModule/js/LearningModule.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/linkifyjs/dist/linkify.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/Link/js/ilExtLink.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/mainbar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/metabar.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/MainControls/slate.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/UI/templates/js/Page/stdpage.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="src/GlobalScreen/Client/dist/GS.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/COPage/js/ilCOPagePres.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/mediaelement/build/mediaelement-and-player.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/MediaObjects/js/MediaElementHelper.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilAssMultipleChoice.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Modules/TestQuestionPool/js/ilMatchingQuestion.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./node_modules/owl.carousel/dist/owl.carousel.min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/container/container_core-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./Services/UIComponent/Overlay/js/ilOverlay.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="./libs/bower/bower_components/yui2/build/connection/connection-min.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
<script src="Services/Notifications/templates/default/notifications.js?version=7.11_2022-06-29"></script>
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="il-layout-page">
|
||||
|
||||
<header>
|
||||
<div class="header-inner">
|
||||
<div class="il-logo">
|
||||
<span class="hidden-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIcon.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<span class="visible-xs">
|
||||
<a href="ilias.php?baseClass=ilDashboardGUI&cmd=jumpToSelectedItems">
|
||||
|
||||
|
||||
|
||||
<img src="./templates/default/images/HeaderIconResponsive.svg" class="img-standard" alt="ILIAS" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</a>
|
||||
</span>
|
||||
<div class="il-pagetitle">
|
||||
Egalware eLearning
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="breadcrumbs">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-system-infos">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="nav il-maincontrols">
|
||||
<div class="il-maincontrols-mainbar" id="il_ui_fw_63d0ff3ed37fc7_70771184">
|
||||
<nav class="il-mainbar" aria-label="Mainbar">
|
||||
|
||||
<div class="il-mainbar-tools-button">
|
||||
<button class="btn btn-bulky engaged" id="il_ui_fw_63d0ff3ed37368_29661092" aria-pressed="true" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_tool.svg" alt="-more-"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Tools</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-mainbar-triggers">
|
||||
<ul class="il-mainbar-entries" role="menubar" style="visibility: hidden"><!--if done via class/css-files, visibility is being applied too late -->
|
||||
|
||||
<li role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ed346d6_19506878" role="menuitem" ><span class="glyph" aria-label="Show More" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-option-horizontal
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">More</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="il-mainbar-slates">
|
||||
<div class="il-mainbar-tools-entries">
|
||||
<ul class="il-mainbar-tools-entries-bg" role="menubar">
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ed35628_63723435" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_glo.svg" alt="Glossary"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Glossary</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ed361c1_33191551" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_mdia.svg" alt="Media"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">Media</span></button>
|
||||
</li>
|
||||
|
||||
<li class="il-mainbar-tool-trigger-item" role="none"><button class="btn btn-bulky" id="il_ui_fw_63d0ff3ed36b04_46788280" role="menuitem" >
|
||||
<img
|
||||
class="icon custom small"
|
||||
src="./templates/default/images/outlined/icon_faq.svg" alt="FAQ"
|
||||
|
||||
|
||||
/>
|
||||
<span class="bulky-label">FAQ</span></button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ed35288_87916307" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ed35cb1_00059288" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='glossary_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ed367f3_28041405" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='media_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="il-maincontrols-slate disengaged" id="il_ui_fw_63d0ff3ed370a4_00303116" data-depth-level="1" role="menu">
|
||||
<div class="il-maincontrols-slate-content" data-replace-marker="content">
|
||||
<div style='height:100%; overflow:hidden;' id='faq_area'><iframe style='border:0; padding:0; height:100%; width:100%'></iframe></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="il-mainbar-close-slates">
|
||||
<button class="btn btn-bulky" id="il_ui_fw_63d0ff3ed378c9_33799900" ><span class="glyph" aria-label="Back" role="img">
|
||||
<span class="glyphicon
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
glyphicon-chevron-left
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
" aria-hidden="true"></span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
<span class="bulky-label">close</span></button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</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" >
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="media il_HeaderInner">
|
||||
|
||||
|
||||
|
||||
|
||||
<img id="headerimage" class="media-object" src="./templates/default/images/icon_lm.svg" alt="" title="" />
|
||||
|
||||
<h1 class="media-heading ilHeader "><a tabindex="0" class="ilAccAnchor" id="il_mhead_t_focus" name="il_mhead_t_focus" >Icarus Documentation</a></h1>
|
||||
|
||||
<div class="media-body">
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="ilClearFloat"></div>
|
||||
|
||||
<h2 class="ilAccHeadingHidden">Tabs</h2>
|
||||
<ul id="ilTab" class="nav nav-tabs ilCollapsable hidden-print">
|
||||
|
||||
|
||||
|
||||
<li id="ilLastTab">
|
||||
<a class="btn dropdown-toggle ilNoDisplay" data-toggle="dropdown" href="#">
|
||||
... <span class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu" id="ilTabDropDown">
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<span class="ilAccHidden"><a id="after_tabs"></a></span>
|
||||
|
||||
<div class="ilTabsContentOuter"><div class="clearfix"></div>
|
||||
<h2 class="ilAccHeadingHidden"><a id="sub_tabs_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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<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_299.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Print Parameters </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_323.html" >
|
||||
Shell Parameters
|
||||
<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">General Parameters</h1><!--COPage-PageTop--><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">Slicing Direction: </span>Can be Vertical, Horizontal or 45°. This affect the orientation of the extrusion.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Spiral Vase: </span>In this mode, the model’s outline will be printed with one single shell for each layer and a continous print, without stopping at the completion of each single slice.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Strand Height: </span>Set the height of the slice.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Strand Width: </span>Set the width of the slice.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Strand Count: </span>Set the number of shells to be printed </li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Offset:</span> Distance from the original solid surface, extra material that will be removed.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Strand Overlap: </span>% of overlap between shells.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Start Point Offset On Layer: </span>Distance from the start of a shell and the start of the contiguous one.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Strand Order: </span>Set if the solid have to be print from outside to the inside or from the inside to the outside.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Direction: </span>Direction of the strand deposition (can be clockwise or counterclockwise)</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Floor Count: </span>Number of filled layers at the base of the solid</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">G0 Feed: </span>Feed used when the head is moving without extruding</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Nozzle Diameter: </span>Diameter expressed in millimiters of the nozzle.</li><li class="ilc_list_item_StandardListItem"><span class="ilc_text_inline_Strong">Flow Rate: </span>This determines how much material is extruded when printing. The default amount is set to 100%.</li></ul><!--Break--></div><div style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;margin-right:auto; margin-left:0; "><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1204/PrintParameters_3_.png?il_wac_token=274e2a9da87133065f7799547e8e78ff143bf94d&il_wac_ttl=3&il_wac_ts=1674641214"/></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_63d0ff3ed1d163_89371636">
|
||||
<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">×</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-324'></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_63d0ff3ed1cac9_88935285', '-lm-324'); });</script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ilc_page_bnav_BottomNavigation">
|
||||
|
||||
<div class="ilc_page_lnav_LeftNavigation">
|
||||
<a class="ilc_page_lnavlink_LeftNavigationLink" href="lm_pg_299.html" >
|
||||
<img class="ilc_page_lnavimage_LeftNavigationImage" src="images/spacer.png" alt="Previous" title="Previous" />Print Parameters </a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="ilc_page_rnav_RightNavigation">
|
||||
<a class="ilc_page_rnavlink_RightNavigationLink" href="lm_pg_323.html" >
|
||||
Shell Parameters
|
||||
<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.11 2022-06-29)
|
||||
</div>
|
||||
|
||||
<div class="il-footer-links">
|
||||
<ul>
|
||||
|
||||
<li><a href="https://ilias.steamware.net/goto.php?target=impr_0&client_id=steamware" >Legal Notice</a></li>
|
||||
|
||||
<li><a href="ilias.php?cmdClass=ilaccessibilitycontrolconceptgui&cmdNode=t&baseClass=ilaccessibilitycontrolconceptgui" >Accessibility Control Concept</a></li>
|
||||
|
||||
</ul>
|
||||
</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_63d0ff3ed1cac9_88935285', function(event, signalData) { il.UI.modal.showModal('il_ui_fw_63d0ff3ed1d163_89371636', {"ajaxRenderUrl":"","keyboard":true,"url":"#il_ui_fw_63d0ff3ed1d163_89371636"}, signalData); return false; });$(document).on('il_signal_63d0ff3ed1cb09_63825620', function() { il.UI.modal.closeModal('il_ui_fw_63d0ff3ed1d163_89371636'); return false; });$(document).on('il_signal_63d0ff3ed1cb13_93664473', function(event, signalData) { il.UI.modal.replaceFromSignal('il_ui_fw_63d0ff3ed1d163_89371636', 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_63d0ff3ed346d6_19506878', false);
|
||||
il.UI.maincontrols.mainbar.addMapping('_mb_more_entry','0:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ed346d6_19506878').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ed343d6_78195239',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ed343d6_78195239', '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_63d0ff3ed342c6_28122258', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ed35288_87916307'); return false;});$(document).on('il_signal_63d0ff3ed342e6_80089244', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ed35288_87916307'); return false;});$(document).on('il_signal_63d0ff3ed342f7_00026960', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ed35288_87916307'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('0:0', 'slate', 'il_ui_fw_63d0ff3ed35288_87916307'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:0', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'triggerer', 'il_ui_fw_63d0ff3ed35628_63723435', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234','T:0');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ed35628_63723435').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ed35383_29681362',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ed35383_29681362', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f676c6f73736172795f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ed30db3_29287276', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ed35cb1_00059288'); return false;});$(document).on('il_signal_63d0ff3ed30dc9_14051213', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ed35cb1_00059288'); return false;});$(document).on('il_signal_63d0ff3ed30dd9_58445309', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ed35cb1_00059288'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:0', 'slate', 'il_ui_fw_63d0ff3ed35cb1_00059288'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:1', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'triggerer', 'il_ui_fw_63d0ff3ed361c1_33191551', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234','T:1');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ed361c1_33191551').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ed35d90_32886384',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ed35d90_32886384', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6d656469615f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ed30e70_47589414', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ed367f3_28041405'); return false;});$(document).on('il_signal_63d0ff3ed30e81_39796695', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ed367f3_28041405'); return false;});$(document).on('il_signal_63d0ff3ed30e99_67276449', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ed367f3_28041405'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:1', 'slate', 'il_ui_fw_63d0ff3ed367f3_28041405'); } catch (e) { console.log(e); }
|
||||
try { il.UI.maincontrols.mainbar.addToolEntry('T:2', false, false, '696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'triggerer', 'il_ui_fw_63d0ff3ed36b04_46788280', true);
|
||||
il.UI.maincontrols.mainbar.addMapping('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234','T:2');
|
||||
|
||||
$('#il_ui_fw_63d0ff3ed36b04_46788280').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ed368b4_59651188',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ed368b4_59651188', '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('696c4c4d4753546f6f6c50726f76696465727c6c6d5f6661715f313234');
|
||||
});
|
||||
fn = il.UI.maincontrols.slate.onSignal;$(document).on('il_signal_63d0ff3ed30ee4_45570662', function(event, signalData) { fn('toggle', event, signalData, 'il_ui_fw_63d0ff3ed370a4_00303116'); return false;});$(document).on('il_signal_63d0ff3ed30ef6_26207940', function(event, signalData) { fn('engage', event, signalData, 'il_ui_fw_63d0ff3ed370a4_00303116'); return false;});$(document).on('il_signal_63d0ff3ed30f05_35528383', function(event, signalData) { fn('replace', event, signalData, 'il_ui_fw_63d0ff3ed370a4_00303116'); return false;});il.UI.maincontrols.mainbar.addPartIdAndEntry('T:2', 'slate', 'il_ui_fw_63d0ff3ed370a4_00303116'); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ed37368_29661092').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ed30f97_19415925',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ed30f97_19415925', 'event' : 'click',
|
||||
'triggerer' : $(this),
|
||||
'options' : JSON.parse('{"action":"toggle_tools"}')
|
||||
}
|
||||
);
|
||||
return false;
|
||||
}); } catch (e) { console.log(e); }
|
||||
try { $('#il_ui_fw_63d0ff3ed378c9_33799900').on('click', function(event) {
|
||||
$(this).trigger('il_signal_63d0ff3ed30f80_90615576',
|
||||
{
|
||||
'id' : 'il_signal_63d0ff3ed30f80_90615576', '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_63d0ff3ed30f80_90615576');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed30f97_19415925');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca1d48_11886331');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca46a6_28079720');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca57b5_07532776');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3eca6306_89668854');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed343d6_78195239');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35383_29681362');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed35d90_32886384');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed368b4_59651188');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed31119_36051853');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed31133_05370358');il.UI.maincontrols.mainbar.addTriggerSignal('il_signal_63d0ff3ed31143_60140254');
|
||||
window.addEventListener('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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1178/Intro_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1179/Intro_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1180/Intro_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1181/ImportSTL_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1182/ImportSTL_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1183/ImportSTL_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1184/ImportSTL_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1185/ModifyDisposition_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1186/Part_List.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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1187/ModifyDisposition_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1188/ModifyDisposition_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1189/ModifyOrigin_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1190/ModifyOrigin_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1191/ModifyLayerStart_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1192/ModifyLayerStart_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1193/ModifyRibs_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>
|
||||
@@ -0,0 +1,98 @@
|
||||
<!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-11-2022-06-29"></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="./Services/MediaObjects/js/MediaElementHelper.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="./node_modules/owl.carousel/dist/owl.carousel.min.js"></script>
|
||||
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./templates/default/delos.css?vers=7-11-2022-06-29-$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="./Services/COPage/css/placeholder.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="./Services/Accordion/css/accordion.css" media="screen" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="./node_modules/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 style="clear:both;"><figure class="ilc_media_cont_MediaContainer" style=" 			position: relative; 			display:table;"><div class="ilc_Mob"><img border="0" style="width:100%" src="mobs/mm_1194/ModifyRibs_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>
|
||||