--- loncom/publisher/lonpubdir.pm 2002/10/25 14:02:44 1.28
+++ loncom/publisher/lonpubdir.pm 2002/11/18 15:26:10 1.29
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# (Publication Handler
#
-# $Id: lonpubdir.pm,v 1.28 2002/10/25 14:02:44 www Exp $
+# $Id: lonpubdir.pm,v 1.29 2002/11/18 15:26:10 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -186,14 +186,30 @@ sub startpage {
$r->print('
LON-CAPA Construction Space');
$r->print(&Apache::loncommon::bodytag(undef,undef,undef,1));
-
+ my $pubdirscript=(<
+ function pubdir(theform) {
+ if (confirm('Publish complete directory?')) {
+ theform.submit();
+ }
+ }
+ function pubrecdir(theform) {
+ if (confirm('Publish directory and all subdirectories?')) {
+ theform.pubrec.value='1';
+ theform.submit();
+ }
+ }
+
+ENDPUBDIRSCRIPT
+
$r->print('Construction Space Directory '.
- $thisdisfn.'/
'.
+ $thisdisfn.'/'.$pubdirscript.
'');