word/quiz: poc js asks random images with 4 translations
[sheet.git] / word.plp
index 050ad90f626ddb79390343a57ba4b29a9bcc3096..b5a07bf60a9fe9b0f24f49a5df6048a1bfc2ce23 100644 (file)
--- a/word.plp
+++ b/word.plp
@@ -1,6 +1,26 @@
 <(common.inc.plp)><:
 
-my $wordlist = "data/wordlist.en.inc.pl";
+if ($Request and $Request =~ s{^edit/?}{}) {
+       Include 'writer.plp';
+       exit;
+}
+
+if ($Request and $Request =~ s{^quiz/?}{}) {
+       Html({
+               raw => <<'EOT',
+<script src="/wordquiz.js"></script>
+<style>
+.wrong {background: red}
+.good {background: green}
+</style>
+EOT
+       });
+       say '<h1>quiz</h1><p id="quiz">test</p>';
+       exit;
+}
+
+my $lang = $get{lang} || 'en';
+my $wordlist = "data/wordlist.$lang.inc.pl";
 my $limit = $get{v} // (exists $get{v} ? 4 : 3);
 
 Html({