--- loncom/interface/loncreateuser.pm 2002/01/06 01:29:52 1.23
+++ loncom/interface/loncreateuser.pm 2002/04/18 20:16:43 1.30
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Create a user
#
-# $Id: loncreateuser.pm,v 1.23 2002/01/06 01:29:52 harris41 Exp $
+# $Id: loncreateuser.pm,v 1.30 2002/04/18 20:16:43 matthew Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -45,8 +45,9 @@
# April Guy Albertelli
# 05/10,10/16 Gerd Kortemeyer
# 11/12,11/13,11/15 Scott Harrison
+# 02/11/02 Matthew Hall
#
-# $Id: loncreateuser.pm,v 1.23 2002/01/06 01:29:52 harris41 Exp $
+# $Id: loncreateuser.pm,v 1.30 2002/04/18 20:16:43 matthew Exp $
###
package Apache::loncreateuser;
@@ -69,109 +70,106 @@ BEGIN {
$krbdefdom=~tr/a-z/A-Z/;
$authformnop=(<
-
+
Do not change login data
END
$authformkrb=(<
-
+
Kerberos authenticated with domain
-
+
END
$authformint=(<
-
+
Internally authenticated (with initial password
-)
+
END
$authformfsys=(<
-
+
Filesystem authenticated (with initial password
-)
+
END
$authformloc=(<
-
+
Local Authentication with argument
-
+
END
$loginscript=(<
-function setkrb(vf) {
- if (vf.krbdom.value!='') {
- vf.login[0].checked=true;
- vf.krbdom.value=vf.krbdom.value.toUpperCase();
- vf.intpwd.value='';
- vf.fsyspwd.value='';
- vf.locarg.value='';
- }
-}
-
-function setint(vf) {
- if (vf.intpwd.value!='') {
- vf.login[1].checked=true;
- vf.krbdom.value='';
- vf.fsyspwd.value='';
- vf.locarg.value='';
- }
-}
-
-function setfsys(vf) {
- if (vf.fsyspwd.value!='') {
- vf.login[2].checked=true;
- vf.krbdom.value='';
- vf.intpwd.value='';
- vf.locarg.value='';
- }
-}
-
-function setloc(vf) {
- if (vf.locarg.value!='') {
- vf.login[3].checked=true;
- vf.krbdom.value='';
- vf.intpwd.value='';
- vf.fsyspwd.value='';
- }
-}
-function clicknop(vf) {
- vf.krbdom.value='';
- vf.intpwd.value='';
- vf.fsyspwd.value='';
- vf.locarg.value='';
+var authvalues = new Object();
+authvalues.names = new Array('krbarg','intarg','fsysarg','locarg');
+authvalues.defaults = new Array('MSU.EDU','','','');
+
+function changed_radio(choice,currentform) {
+ var choicearg = choice + 'arg';
+ if (currentform.elements[choicearg].value == '') {
+ clear(currentform,authvalues.names);
+ for (var i=0; i
ENDLOGINSCRIPT
$generalrule=<print(<
The LearningOnline Network with CAPA
@@ -250,137 +247,179 @@ sub phase_two {
-
-Create User, Change User Privileges
-