version 1.33, 2011/11/07 20:05:52
|
version 1.35.2.1, 2019/02/15 22:01:23
|
Line 138 sub tempdir {
|
Line 138 sub tempdir {
|
return $result; |
return $result; |
} |
} |
|
|
|
# Return the default engine to use to render content of <m></m> tags unless |
|
# a domain, course, or user specific value exists. |
|
|
|
sub texengine { |
|
return 'tth'; |
|
} |
|
|
|
# Return the Linux distro where this LON-CAPA instance is running |
|
|
|
sub distro { |
|
my $distro; |
|
if (open(PIPE,"/home/httpd/perl/distprobe |")) { |
|
$distro = <PIPE>; |
|
close(PIPE); |
|
} |
|
return $distro; |
|
} |
|
|
#---------------------------------------------------------------------- |
#---------------------------------------------------------------------- |
# |
# |