Dear Developers,
for the reason of having some issues in my private life, there was a break in doing the work for my test & assessment maintenance. These issues have been successfully addressed, so I am able again to guide the bugfix processes, that should have been started some weeks ago.
I will found a suitable environment in sense of a company framework within the next days, to get able to offer any development services required for the exercise of the duties related to my maintenance.
With kind regards,
Björn Heyser
Liebe Kolleginnen und Kollegen
Ein kurzer Reminder: Am Montag (2. Oktober) wird von 13:00 bis 17:00 der „KS Inputs Workshop“ im ILIAS HDQ in Köln stattfinden. Richard und ich werden dort den Vorschlag von Richard zur Integration von Inputs vorstellen. Dabei werden wir über die Zugrundeliegenden Konzepte sprechen, Beispiele vorstellen und dann natürlich vor allem Fragen und nächste Schritte diskutieren. Der Workshop ist in erster Linie technischer Natur und hat noch wenig mit visuellem Output zu tun. Der Workshop richtet sich deshalb in erster Linie an Entwickler.
Beste Grüsse und bis bald
Richard und Timon
_____________________________
Universität Bern
Vizerektorat Lehre
iLUB - Supportstelle für ICT-gestützte Lehre und Forschung
Stellvertretende Leitung iLUB
Konzeption und Entwicklung ILIAS
Hochschulstrasse 6
3012 Bern
Tel. +41 31 631 82 72
<mailto:timon.amstutz@ilub.unibe.ch>
http://ilias.unibe.ch/u/t.amstutzhttp://www.ilub.unibe.ch
Liebe Kollegen
Wie bereits an der Dev-Conf. angekündigt, planen wir das Layout von ILIAS gründlich zu Überarbeiten. Den jetzigen Plan und der Stand der Diskussion kann auf folgender Feature Wiki Seite konsultiert werden: https://www.ilias.de/docu/goto_docu_wiki_wpage_4563_1357.html
Einige Vorschläge sind durchaus kontrovers und es stehen auch Alternativvorschläge im Raum. Deshalb haben an der Dev-Conf. eingeladen, folgendes Doodle zu einem Präsenzworkshop im ILIAS HQ in Köln auszufüllen: https://beta.doodle.com/poll/63p3ni9amn64m7cn#table. Bis jetzt war der Rücklauf mässig. Verpasst die Chance nicht, an der Zukunft von ILIAS mit zu arbeiten.
Lieber Gruss und hoffentlich bis bald,
Timon Amstutz
_____________________________
Universität Bern
Vizerektorat Lehre
iLUB - Supportstelle für ICT-gestützte Lehre und Forschung
Stellvertretende Leitung iLUB
Konzeption und Entwicklung ILIAS
Hochschulstrasse 6
3012 Bern
Tel. +41 31 631 82 72
<mailto:timon.amstutz@ilub.unibe.ch>
http://ilias.unibe.ch/u/t.amstutzhttp://www.ilub.unibe.ch
Liebe Kolleginnen und Kollegen
Wir haben uns in den letzten Monaten viele Gedanken rund um die Inputs in der KS gemacht. Richard hat nun einen Vorschlag ausgearbeitet, welcher wesentliche Aspekte von Input-Handling beinhaltet. In Zukunft wollen wir viele zentrale UI-Komponente auf Basis von diesem Vorschlag integrieren (Forms, Filter, etc.). Da dieser Vorschlag zu gross und komplex ist, um ihn einfach als regulärer PR via JF zu diskutieren, werden wir am 2. Oktober im ILIAS HDQ in Köln in Präsenzworkshop (Dauer ca. 3-4 Stunden) veranstalten. Da das Ergebnis dieses Workshop die meisten von euch Entwicklern in der einen oder anderen Form betreffen wird, würden wir uns über eine zahlreiche Beteiligung freuen.
Bitte gebt uns ein kurzes Feedback per Mail, wenn ihr plant an diesem Meeting teil zu nehmen. Genaue Uhrzeit folgt.
Beste Grüsse
Timon und Richard
Dear developers and administrators,
the following information may save you some time as it took me a while to figure it out:
Today I noticed some strange issues regarding XML handling in ILIAS with (v5.2.6 2017-07-13, PHP 5.6.31-4+ubuntu16.04.1+deb.sury.org+4). Initially, I discovered a problem in one of my plugins which deals with XML that uses simplexml_load_file() with a local(!) file.
The error message I got from it was:
simplexml_load_file(): I/O warning : failed to load external entity "[MY_FILE]"
I checked everything twice, the 'cwd', the include path, PHP ini settings ...
Surprisingly (for me), I was able to read the contents of the XML file one line before I called simplexml_load_file(). Passing the XML string to simplexml_load_string() worked fine.
The error occured randomly (I initially thought), so I really had no idea what could cause that. Then our administrators reported issues when copying/cloning courses via SOAP in customer installations. I exported and imported the course in question as XML into my local installation (which worked fine) and tried to copy the course to reproduce the reported issue afterwards. It worked perfectly with PHP 7.0, but failed with PHP 5.6. The error log contained the same I/O warning mentioned above.
When I added ...
libxml_disable_entity_loader(false);
... in my plugin before using simplexml_load_file() and before the ILIAS SOAP server is instantiated in ./webservice/soap/server.php, the issue seems to be fixed for both cases.
libxml_disable_entity_loader() is not thread safe, so this is the root of all evil (including but not limited to pineapple on pizza).
If ...
libxml_disable_entity_loader(true);
... is called in another script (or another PHP application) and not resetted to false, the problematic state persists globally. There are even some calls of with a boolean true in ILIAS (PHPExcel, SVG Sanitizer), which is dangerous in case an error occured and the state could not be properly resetted to a boolean false.
Best regards,
Michael