1日目の初心者向け workshop を担当させていただいた石川です。
workshop の中で紹介させていただいた、online text 課題を一覧表示で採点する画面について、1人当たりの表示文字数が足りない場合は添付の patch を mod/assign/submission/onlinetext/locallib.php
に当てると表示文字数が2000文字に増えます。(適用先は 3.0+ (Build: 20151126) ですが、行番号のずれを除けば、多くの版で適用可能だと思います。この改変は GPL2 かそれ以降に従います。)
--- mod/assign/submission/onlinetext/locallib.php
+++ mod/assign/submission/onlinetext/locallib.php
@@ -355,7 +355,7 @@
'onlinetext',
'assignsubmission_onlinetext');
- $shorttext = shorten_text($text, 140);
+ $shorttext = shorten_text($text, 2000);
$plagiarismlinks = '';
if (!empty($CFG->enableplagiarism))
ただし、patch の適用を Moodle の管理者にお願いする必要があります。patch の内容が理解できない場合は、後日、大きな問題の遠因となる可能性が否定できませんので、適用をお勧めしません。