-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprachUmschaltung.pl
68 lines (62 loc) · 2.55 KB
/
sprachUmschaltung.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
:- module(sprachUmschaltung, [sprachUmschaltungAuswahl/1]).
:- use_module(library(http/http_dispatch)).
:- use_module(library(http/http_error)).
:- use_module(library(http/html_write)).
:- use_module(library(http/http_parameters)).
:- http_handler('/sprachUmschaltungAuswahl', sprachUmschaltungAuswahl, []).
:- http_handler('/sprachUmschaltung', sprachUmschaltung, []).
/* ----------------------------------- Systemauswahl ----------------------------------------------- */
sprachUmschaltungAuswahl(_Request) :-
findall(Sprache, spielStatus:moeglicheSprache(Sprache), Sprachen),
server:baueOptionsFeld('auswahlSprache', Sprachen, 2, OptionList),
debug(myTrace, 'OptionList=~k', OptionList),
textResources:getText(txtSprache, TxtSprache),
textResources:getText(txtSpracheEinstellen, TxtSpracheEinstellen),
textResources:getText(txtSpracheAuswaehlen, TxtSpracheAuswaehlen),
string_concat(TxtSpracheEinstellen, ': ', Txt0),
string_concat(Txt0, TxtSpracheAuswaehlen, TxtHeader),
textResources:getText(txtOk, TxtOk),
textResources:getText(txtReset, TxtReset),
TermerizedBody = [
\['<header>'],
h1([align(center)], [TxtHeader]),
\['</header>'],
\['<formSpace>'],
form([action('/sprachUmschaltung'), method('post'), name('systemAuswahlForm')],
[h3(TxtSprache),
\eingabeTabelle(OptionList),
p(table([width("12%"), border("0"), cellspacing("3"), cellpadding("2")],
[td([button([name("submit"), type("submit")], TxtOk)]),
td([button([name("reset"), type("reset")], TxtReset)])
]))
]),
\['</formSpace>']
],
server:holeCssAlsStyle(StyleString),
textResources:getText(txtNoNansSkyTrainerSprachAuswahl, TxtNoNansSkyTrainerSprachAuswahl),
TermerizedHead = [\[StyleString], title(TxtNoNansSkyTrainerSprachAuswahl)],
reply_html_page(TermerizedHead, TermerizedBody).
eingabeTabelle(OptionList) -->
{ textResources:getText(txtSpracheDp, TxtSpracheDp)
},
html(
div(class('table30'),[
div(class('tr'), [
div(class('td'), [
label([for('auswahlSprache')], TxtSpracheDp),
\OptionList
])
])
])).
sprachUmschaltung(Request) :-
member(method(post), Request), !,
http_parameters(Request,
[auswahlSprache(AuswahlSprache, [length > 0])
]),
textResources:getText(txtBitteWaehlen, BitteWaehlen),
debug(myTrace, 'AuswahlSprache=~k', AuswahlSprache),
((AuswahlSprache = BitteWaehlen, server:fehlerBehandlung);
(retractall(spielStatus:sprache(_)),
assertz(spielStatus:sprache(AuswahlSprache)),
server:gespeichert)
).