--- loncom/xml/lonxml.pm 2002/02/26 21:00:38 1.154 +++ loncom/xml/lonxml.pm 2002/03/06 20:28:19 1.155 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.154 2002/02/26 21:00:38 albertel Exp $ +# $Id: lonxml.pm,v 1.155 2002/03/06 20:28:19 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -316,6 +316,8 @@ sub fontsettings() { sub registerurl { my $forcereg=shift; + my $target = shift; + my $result = ''; if ($ENV{'request.publicaccess'}) { return '<script>function LONCAPAreg(){} function LONCAPAstale(){}</script>'; @@ -347,7 +349,7 @@ ENDGRDS ENDPARM } } - return (<<ENDREGTHIS); + $result = (<<ENDREGTHIS); <script language="JavaScript"> // BEGIN LON-CAPA Internal @@ -399,7 +401,7 @@ ENDPARM ENDREGTHIS } else { - return (<<ENDDONOTREGTHIS); + $result = (<<ENDDONOTREGTHIS); <script language="JavaScript"> // BEGIN LON-CAPA Internal @@ -426,8 +428,30 @@ ENDREGTHIS // END LON-CAPA Internal </script> ENDDONOTREGTHIS - } + if ($target eq 'edit') { + $result .=<<"ENDBROWSERSCRIPT"; +<script> + var editform; + function openbrowser(formname,elementname) { + var url = '/res/?'; + if (editform == null) { + url += 'launch=1&'; + } + url += 'catalogmode=interactive&'; + url += 'mode=edit&'; + url += 'form=' + formname + '&'; + url += 'element=' + elementname + ''; + var title = 'Browser'; + var options = 'scrollbars=1,resizable=1,menubar=0'; + options += ',width=700,height=600'; + editform = open(url,title,options,'1'); + editform.focus(); + } +</script> +ENDBROWSERSCRIPT + } + return $result; } sub loadevents() {