version 1.177, 2008/07/28 05:25:59
|
version 1.180, 2008/09/05 22:12:47
|
Line 84 sub dragmath_button {
|
Line 84 sub dragmath_button {
|
if ($helpicon) { |
if ($helpicon) { |
$help_text = &Apache::loncommon::help_open_topic('Authoring_Math_Editor'); |
$help_text = &Apache::loncommon::help_open_topic('Authoring_Math_Editor'); |
} |
} |
|
my $buttontext=&mt('Edit Math'); |
return <<ENDDRAGMATH; |
return <<ENDDRAGMATH; |
<input type="button" value="Edit Math", onclick="javascript:mathedit('$textarea',document)" />$help_text |
<input type="button" value="$buttontext", onclick="javascript:mathedit('$textarea',document)" />$help_text |
ENDDRAGMATH |
ENDDRAGMATH |
} |
} |
|
|
Line 1309 returns: nothing
|
Line 1310 returns: nothing
|
my $faq = ''; |
my $faq = ''; |
my $bug = ''; |
my $bug = ''; |
my $help=''; |
my $help=''; |
|
# Crumb Symbol |
|
my $crumbsymbol = ' ▶ '; |
# The last breadcrumb does not have a link, so handle it separately. |
# The last breadcrumb does not have a link, so handle it separately. |
my $last = pop(@Crumbs); |
my $last = pop(@Crumbs); |
# |
# |
Line 1332 returns: nothing
|
Line 1335 returns: nothing
|
}); |
}); |
} |
} |
my $links .= |
my $links .= |
join('->', |
join($crumbsymbol, |
map { |
map { |
$faq = $_->{'faq'} if (exists($_->{'faq'})); |
$faq = $_->{'faq'} if (exists($_->{'faq'})); |
$bug = $_->{'bug'} if (exists($_->{'bug'})); |
$bug = $_->{'bug'} if (exists($_->{'bug'})); |
Line 1351 returns: nothing
|
Line 1354 returns: nothing
|
$result; |
$result; |
} @Crumbs |
} @Crumbs |
); |
); |
$links .= '->' if ($links ne ''); |
$links .= $crumbsymbol if ($links ne ''); |
if ($last->{'no_mt'}) { |
if ($last->{'no_mt'}) { |
$links .= '<b>'.$last->{'text'}.'</b>'; |
$links .= '<b>'.$last->{'text'}.'</b>'; |
} else { |
} else { |
Line 1726 sub course_custom_roles {
|
Line 1729 sub course_custom_roles {
|
|
|
############################################## |
############################################## |
############################################## |
############################################## |
|
|
|
# topic_bar |
|
# |
|
# Generates a div containing a numbered (static image) followed by a title |
|
# with a background color defined in the corresponding CSS: LC_topic_bar |
|
# |
|
sub topic_bar { |
|
my ($imgnum,$title) = @_; |
|
return ' |
|
<div class="LC_topic_bar"> |
|
<img alt="'.&mt('Step [_1]',$imgnum). |
|
'"src="/res/adm/pages/bl_step'.$imgnum.'.gif" /> |
|
<span>'.$title.'</span> |
|
</div> |
|
'; |
|
} |
|
|
|
############################################## |
|
############################################## |
|
|
# echo_form_input |
# echo_form_input |
# |
# |