1 <?xml version="1.0" encoding="UTF-8"?>
3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
6 <html xmlns:subst="http://www.cs.unibo.it/helm/subst">
8 <title>Control panel</title>
9 <!-- Note: <subst:script/> are substitued by the stylesheet with <script /> -->
10 <!-- after changing @src in the concatenation of the interface URL with @src -->
11 <subst:script language="JavaScript" src="/javascript/defaults.js" />
12 <subst:script language="JavaScript" src="/javascript/utils.js" />
13 <subst:script language="JavaScript" src="/javascript/control.js" />
15 <body bgcolor="#ffffff" text="#000000">
23 <select name="output" onChange="updateOutput(this,document.forms[0].format)">
25 var mode = getParam2('mode');
26 var mode_list = mode.split(',');
27 outputOption(document, "processed", "Processed", mode_list[0]);
28 outputOption(document, "raw", "Raw", mode_list[0]);
33 <select name="format" onChange="updateFormat(this)">
35 var mode = getParam2('mode');
36 var mode_list = mode.split(',');
37 if (mode_list[0] == "raw") {
38 outputOption(document, "cic", "CIC", mode_list[1]);
39 outputOption(document, "types", "TYPES", mode_list[1]);
40 outputOption(document, "ann", "ANN", mode_list[1]);
41 outputOption(document, "fwd", "RDF: Forward pointers", mode_list[1]);
42 outputOption(document, "bwd", "RDF: Backward pointers", mode_list[1]);
44 outputOption(document, "html", "HTML", mode_list[2]);
45 outputOption(document, "mml_cont", "MathML Content", mode_list[2]);
46 outputOption(document, "mml_pres", "MathML Presentation", mode_list[2]);
54 document.write('<a target="_top" href="' +
55 getParam2('topurl') + '/html/library/index.html' +
56 '" onClick="refreshReload()">Reload</a>');
60 (do it also before attempting to take a link to the current page)
63 top.processorURL = getParam2('processorURL');
64 top.getterURL = getParam2('getterURL');
65 top.proofcheckerURL = getParam2('proofcheckerURL');
66 top.draw_graphURL = getParam2('draw_graphURL');
67 top.uri_set_queueURL = getParam2('uri_set_queueURL');
68 top.UNICODEvsSYMBOL = getParam2('UNICODEvsSYMBOL');
69 top.topurl = getParam2('topurl');
70 top.mode = getParam2('mode');
71 top.cicuri = getParam2('cicuri');
72 top.theoryuri = getParam2('theoryuri');
81 var mode = getParam2('mode');
82 var mode_list = mode.split(',');
83 if (mode_list[0] == "raw") {
84 outputCheckbox(document, "updateCompressed(this)",
85 " Compressed", mode_list[5] == "gz");
86 outputCheckbox(document, "updateDTDPatched(this)",
87 " Resolve DTD URL", mode_list[6] == "yes");
89 outputCheckbox(document, "updateNatural(this)",
90 " Natural Language", mode_list[3] == "yes");
91 outputCheckbox(document, "updateAnnotations(this)",
92 " Annotations", mode_list[4] == "yes");
100 document.write('<a target="_top" href=""' +
101 ' onClick="refreshReload()">Configuration Panel</a>');