version 1.17, 2024/04/19 03:48:23
|
version 1.18, 2025/02/21 06:09:37
|
Line 99 sub handler {
|
Line 99 sub handler {
|
'edit' => 'Save and Edit', |
'edit' => 'Save and Edit', |
'disc' => 'Discard and View', |
'disc' => 'Discard and View', |
'save' => 'Save and View', |
'save' => 'Save and View', |
|
'daxe' => 'Daxe Editor', |
); |
); |
my $name = $uri; |
my $name = $uri; |
$name =~ s/^.*\/([^\/]+)$/$1/; |
$name =~ s/^.*\/([^\/]+)$/$1/; |
Line 127 sub handler {
|
Line 128 sub handler {
|
if ($is_assess) { |
if ($is_assess) { |
$editheader .= '<input type="hidden" name="problemmode" value="daxe" />'."\n"; |
$editheader .= '<input type="hidden" name="problemmode" value="daxe" />'."\n"; |
} |
} |
$editheader .= '<div class="LC_edit_problem_editxml_header">'."\n"; |
$editheader .= '<div class="LC_edit_problem_daxe_header">'."\n"; |
my $saveeditbutton = '<input type="button" name="submitmode" accesskey="s" value="'.$lt{'edit'}. |
my $saveeditbutton = '<input type="button" name="submitmode" accesskey="s" value="'.$lt{'edit'}. |
'" onclick="'.$clickedit.'" />'."\n"; |
'" onclick="'.$clickedit.'" />'."\n"; |
my $exitbutton = '<input type="button" name="submitmode" accesskey="d" value="'.$lt{'disc'}. |
my $exitbutton = '<input type="button" name="submitmode" accesskey="d" value="'.$lt{'disc'}. |
'" onclick="'.$clickexit.'" />'."\n"; |
'" onclick="'.$clickexit.'" />'."\n"; |
my $saveexitbutton = '<input type="button" name="submitmode" accesskey="v" value="'.$lt{'save'}. |
my $saveexitbutton = '<input type="button" name="submitmode" accesskey="v" value="'.$lt{'save'}. |
'" onclick="'.$clicksave.'" />'."\n"; |
'" onclick="'.$clicksave.'" />'."\n"; |
$editheader .= '<table class="LC_edit_problem_header_title"><tr><td>'. |
$editheader .= '<div class="LC_landmark" style="clear:both;">'. |
$uri.'</td><td align="right"><span class="LC_nobreak">'. |
'<div class="LC_floatleft LC_landmark" style="margin-top: 2px">'.$uri.'</div>'. |
|
'<div class="LC_floatright LC_landmark"><span class="LC_nobreak">'. |
$saveeditbutton.$saveexitbutton.$exitbutton.'</span>'; |
$saveeditbutton.$saveexitbutton.$exitbutton.'</span>'; |
if ($editors{'edit'} || $editors{'xml'}) { |
if ($editors{'edit'} || $editors{'xml'}) { |
my $other = (($editors{'edit'} && $editors{'xml'})? $lt{'oeds'} : $lt{'othe'}); |
my $other = (($editors{'edit'} && $editors{'xml'})? $lt{'oeds'} : $lt{'othe'}); |
Line 157 sub handler {
|
Line 159 sub handler {
|
} |
} |
$editheader .= '</span>'; |
$editheader .= '</span>'; |
} |
} |
$editheader .= '</td></tr></table></div></form>'."\n"; |
$editheader .= '</div></div>'. |
|
'<div class="LC_landmark" style="clear:both"></div>'. |
|
'</div></form>'."\n"; |
my $start_collapsed = &collapsible_std_LCmenus(); |
my $start_collapsed = &collapsible_std_LCmenus(); |
my $args = { |
my $args = { |
'collapsible_header' => $editheader, |
'collapsible_header' => $editheader, |
Line 175 sub handler {
|
Line 179 sub handler {
|
$request->print(<<"ENDFRAME"); |
$request->print(<<"ENDFRAME"); |
$startpage |
$startpage |
$script |
$script |
<div class="LC_iframecontainer" style="padding-right: 5px"> |
<div class="LC_iframecontainer" style="padding-right: 5px" role="main"> |
|
<h1 class="LC_visually_hidden">$lt{'daxe'}</h1> |
<iframe src="$dest" id="lcdiframe">$lt{'noif'} $noiframe</iframe> |
<iframe src="$dest" id="lcdiframe">$lt{'noif'} $noiframe</iframe> |
</div> |
</div> |
$endpage |
$endpage |