Diff for /loncom/LONCAPA.pm between versions 1.34 and 1.36

version 1.34, 2013/02/08 14:49:51 version 1.36, 2019/08/25 02:43:33
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 'MathJax';
   }
   
 # Return the Linux distro where this LON-CAPA instance is running  # Return the Linux distro where this LON-CAPA instance is running
   
 sub distro {  sub distro {
Line 149  sub distro { Line 156  sub distro {
     return $distro;      return $distro;
 }  }
   
   # Return the default password length. Can be overridden in a domain
   # by specifying a larger value (integer) in the domain configuration.
   
   sub passwd_min {
       return 7;
   }
   
 #----------------------------------------------------------------------  #----------------------------------------------------------------------
 #  #
 #  some of these subs need a bit of documentation  #  some of these subs need a bit of documentation

Removed from v.1.34  
changed lines
  Added in v.1.36


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>