Annotation of loncom/publisher/lonpublisher.pm, revision 1.241
1.1 www 1: # The LearningOnline Network with CAPA
2: # Publication Handler
1.54 albertel 3: #
1.241 ! raeburn 4: # $Id: lonpublisher.pm,v 1.240 2008/07/26 16:03:46 raeburn Exp $
1.54 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.65 harris41 28: ###
29:
30: ###############################################################################
31: ## ##
32: ## ORGANIZATION OF THIS PERL MODULE ##
33: ## ##
34: ## 1. Modules used by this module ##
35: ## 2. Various subroutines ##
36: ## 3. Publication Step One ##
37: ## 4. Phase Two ##
38: ## 5. Main Handler ##
39: ## ##
40: ###############################################################################
1.1 www 41:
1.90 matthew 42:
43: ######################################################################
44: ######################################################################
45:
46: =pod
47:
1.94 harris41 48: =head1 NAME
1.90 matthew 49:
50: lonpublisher - LON-CAPA publishing handler
51:
1.94 harris41 52: =head1 SYNOPSIS
1.90 matthew 53:
1.94 harris41 54: B<lonpublisher> is used by B<mod_perl> inside B<Apache>. This is the
55: invocation by F<loncapa_apache.conf>:
56:
57: <Location /adm/publish>
58: PerlAccessHandler Apache::lonacc
59: SetHandler perl-script
60: PerlHandler Apache::lonpublisher
61: ErrorDocument 403 /adm/login
62: ErrorDocument 404 /adm/notfound.html
63: ErrorDocument 406 /adm/unauthorized.html
64: ErrorDocument 500 /adm/errorhandler
65: </Location>
1.127 bowersj2 66:
67: =head1 OVERVIEW
68:
69: Authors can only write-access the C</~authorname/> space. They can
70: copy resources into the resource area through the publication step,
71: and move them back through a recover step. Authors do not have direct
72: write-access to their resource space.
73:
74: During the publication step, several events will be
75: triggered. Metadata is gathered, where a wizard manages default
76: entries on a hierarchical per-directory base: The wizard imports the
77: metadata (including access privileges and royalty information) from
78: the most recent published resource in the current directory, and if
79: that is not available, from the next directory above, etc. The Network
80: keeps all previous versions of a resource and makes them available by
81: an explicit version number, which is inserted between the file name
82: and extension, for example C<foo.2.html>, while the most recent
83: version does not carry a version number (C<foo.html>). Servers
84: subscribing to a changed resource are notified that a new version is
85: available.
1.94 harris41 86:
87: =head1 DESCRIPTION
88:
89: B<lonpublisher> takes the proper steps to add resources to the LON-CAPA
1.90 matthew 90: digital library. This includes updating the metadata table in the
91: LON-CAPA database.
92:
1.94 harris41 93: B<lonpublisher> is many things to many people.
1.90 matthew 94:
95: This module publishes a file. This involves gathering metadata,
96: versioning the file, copying file from construction space to
97: publication space, and copying metadata from construction space
98: to publication space.
99:
1.94 harris41 100: =head2 SUBROUTINES
101:
102: Many of the undocumented subroutines implement various magical
103: parsing shortcuts.
1.90 matthew 104:
105: =over 4
106:
107: =cut
108:
109: ######################################################################
110: ######################################################################
111:
112:
1.1 www 113: package Apache::lonpublisher;
114:
1.65 harris41 115: # ------------------------------------------------- modules used by this module
1.1 www 116: use strict;
117: use Apache::File;
1.13 www 118: use File::Copy;
1.2 www 119: use Apache::Constants qw(:common :http :methods);
1.76 albertel 120: use HTML::LCParser;
1.4 www 121: use Apache::lonxml;
1.27 www 122: use Apache::loncacc;
1.24 harris41 123: use DBI;
1.192 albertel 124: use Apache::lonnet;
1.65 harris41 125: use Apache::loncommon();
1.241 ! raeburn 126: use Apache::lonhtmlcommon;
1.89 matthew 127: use Apache::lonmysql;
1.134 www 128: use Apache::lonlocal;
1.145 albertel 129: use Apache::loncfile;
1.166 matthew 130: use LONCAPA::lonmetadata;
1.159 www 131: use Apache::lonmsg;
1.105 www 132: use vars qw(%metadatafields %metadatakeys);
1.215 albertel 133: use LONCAPA qw(:DEFAULT :match);
1.209 www 134:
1.2 www 135:
1.3 www 136: my %addid;
1.5 www 137: my %nokey;
1.10 www 138:
1.12 www 139: my $docroot;
140:
1.27 www 141: my $cuname;
142: my $cudom;
143:
1.182 www 144: my $registered_cleanup;
1.183 www 145: my $modified_urls;
1.182 www 146:
1.233 www 147: my $lock;
148:
1.90 matthew 149: =pod
150:
1.94 harris41 151: =item B<metaeval>
152:
153: Evaluates a string that contains metadata. This subroutine
154: stores values inside I<%metadatafields> and I<%metadatakeys>.
155: The hash key is a I<$unikey> corresponding to a unique id
156: that is descriptive of the parser location inside the XML tree.
157:
158: Parameters:
159:
160: =over 4
1.90 matthew 161:
1.94 harris41 162: =item I<$metastring>
163:
164: A string that contains metadata.
165:
166: =back
167:
168: Returns:
169:
170: nothing
1.90 matthew 171:
172: =cut
173:
174: #########################################
175: #########################################
1.144 www 176: #
177: # Modifies global %metadatafields %metadatakeys
178: #
179:
1.7 www 180: sub metaeval {
1.140 albertel 181: my ($metastring,$prefix)=@_;
1.7 www 182:
1.139 albertel 183: my $parser=HTML::LCParser->new(\$metastring);
184: my $token;
185: while ($token=$parser->get_token) {
186: if ($token->[0] eq 'S') {
187: my $entry=$token->[1];
188: my $unikey=$entry;
1.219 albertel 189: next if ($entry =~ m/^(?:parameter|stores)_/);
1.139 albertel 190: if (defined($token->[2]->{'package'})) {
1.219 albertel 191: $unikey.="\0package\0".$token->[2]->{'package'};
1.139 albertel 192: }
193: if (defined($token->[2]->{'part'})) {
1.219 albertel 194: $unikey.="\0".$token->[2]->{'part'};
1.139 albertel 195: }
196: if (defined($token->[2]->{'id'})) {
1.219 albertel 197: $unikey.="\0".$token->[2]->{'id'};
1.139 albertel 198: }
199: if (defined($token->[2]->{'name'})) {
1.219 albertel 200: $unikey.="\0".$token->[2]->{'name'};
1.139 albertel 201: }
202: foreach (@{$token->[3]}) {
203: $metadatafields{$unikey.'.'.$_}=$token->[2]->{$_};
204: if ($metadatakeys{$unikey}) {
205: $metadatakeys{$unikey}.=','.$_;
206: } else {
207: $metadatakeys{$unikey}=$_;
208: }
209: }
1.140 albertel 210: my $newentry=$parser->get_text('/'.$entry);
1.174 www 211: if (($entry eq 'customdistributionfile') ||
212: ($entry eq 'sourcerights')) {
1.140 albertel 213: $newentry=~s/^\s*//;
214: if ($newentry !~m|^/res|) { $newentry=$prefix.$newentry; }
215: }
1.149 www 216: # actually store
1.162 albertel 217: if ( $entry eq 'rule' && exists($metadatafields{$unikey})) {
218: $metadatafields{$unikey}.=','.$newentry;
219: } else {
220: $metadatafields{$unikey}=$newentry;
221: }
1.139 albertel 222: }
223: }
1.7 www 224: }
225:
1.90 matthew 226: #########################################
227: #########################################
228:
229: =pod
230:
1.94 harris41 231: =item B<metaread>
1.90 matthew 232:
233: Read a metadata file
234:
1.94 harris41 235: Parameters:
236:
237: =over
238:
239: =item I<$logfile>
240:
241: File output stream to output errors and warnings to.
242:
243: =item I<$fn>
244:
245: File name (including path).
246:
247: =back
248:
249: Returns:
250:
251: =over 4
252:
253: =item Scalar string (if successful)
254:
255: XHTML text that indicates successful reading of the metadata.
256:
257: =back
258:
1.90 matthew 259: =cut
260:
261: #########################################
262: #########################################
1.7 www 263: sub metaread {
1.140 albertel 264: my ($logfile,$fn,$prefix)=@_;
1.7 www 265: unless (-e $fn) {
1.94 harris41 266: print($logfile 'No file '.$fn."\n");
1.146 sakharuk 267: return '<br /><b>'.&mt('No file').':</b> <tt>'.
1.145 albertel 268: &Apache::loncfile::display($fn).'</tt>';
1.7 www 269: }
1.94 harris41 270: print($logfile 'Processing '.$fn."\n");
1.7 www 271: my $metastring;
272: {
1.140 albertel 273: my $metafh=Apache::File->new($fn);
274: $metastring=join('',<$metafh>);
1.7 www 275: }
1.140 albertel 276: &metaeval($metastring,$prefix);
1.147 sakharuk 277: return '<br /><b>'.&mt('Processed file').':</b> <tt>'.
1.239 bisitz 278: &Apache::loncfile::display($fn).'</tt><br />';
1.7 www 279: }
1.12 www 280:
1.90 matthew 281: #########################################
282: #########################################
283:
1.101 www 284: sub coursedependencies {
285: my $url=&Apache::lonnet::declutter(shift);
286: $url=~s/\.meta$//;
1.215 albertel 287: my ($adomain,$aauthor)=($url=~ m{^($match_domain)/($match_username)/});
288: my $regexp=quotemeta($url);
1.101 www 289: $regexp='___'.$regexp.'___course';
290: my %evaldata=&Apache::lonnet::dump('nohist_resevaldata',$adomain,
291: $aauthor,$regexp);
292: my %courses=();
293: foreach (keys %evaldata) {
294: if ($_=~/^([a-zA-Z0-9]+_[a-zA-Z0-9]+)___.+___course$/) {
295: $courses{$1}=1;
296: }
297: }
298: return %courses;
299: }
300: #########################################
301: #########################################
302:
303:
1.90 matthew 304: =pod
305:
1.94 harris41 306: =item Form-field-generating subroutines.
307:
308: For input parameters, these subroutines take in values
309: such as I<$name>, I<$value> and other form field metadata.
310: The output (scalar string that is returned) is an XHTML
311: string which presents the form field (foreseeably inside
312: <form></form> tags).
1.90 matthew 313:
314: =over 4
315:
1.94 harris41 316: =item B<textfield>
1.90 matthew 317:
1.94 harris41 318: =item B<hiddenfield>
1.90 matthew 319:
1.94 harris41 320: =item B<selectbox>
1.90 matthew 321:
322: =back
323:
324: =cut
325:
326: #########################################
327: #########################################
1.8 www 328: sub textfield {
1.240 raeburn 329: my ($title,$name,$value,$noline)=@_;
1.141 www 330: $value=~s/^\s+//gs;
331: $value=~s/\s+$//gs;
332: $value=~s/\s+/ /gs;
1.134 www 333: $title=&mt($title);
1.192 albertel 334: $env{'form.'.$name}=$value;
1.238 bisitz 335: return "\n".&Apache::lonhtmlcommon::row_title($title)
336: .'<input type="text" name="'.$name.'" size="80" value="'.$value.'" />'
1.240 raeburn 337: .&Apache::lonhtmlcommon::row_closure($noline);
1.11 www 338: }
339:
1.180 albertel 340: sub text_with_browse_field {
1.240 raeburn 341: my ($title,$name,$value,$restriction,$noline)=@_;
1.180 albertel 342: $value=~s/^\s+//gs;
343: $value=~s/\s+$//gs;
344: $value=~s/\s+/ /gs;
345: $title=&mt($title);
1.192 albertel 346: $env{'form.'.$name}=$value;
1.238 bisitz 347: return "\n".&Apache::lonhtmlcommon::row_title($title)
348: .'<input type="text" name="'.$name.'" size="80" value="'.$value.'" />'
349: .'<br />'
350: .'<a href="javascript:openbrowser(\'pubform\',\''.$name.'\',\''.$restriction.'\');">'
351: .&mt('Select')
352: .'</a> '
353: .'<a href="javascript:opensearcher(\'pubform\',\''.$name.'\');">'
354: .&mt('Search')
355: .'</a>'
1.240 raeburn 356: .&Apache::lonhtmlcommon::row_closure($noline);
1.180 albertel 357: }
358:
1.11 www 359: sub hiddenfield {
360: my ($name,$value)=@_;
1.192 albertel 361: $env{'form.'.$name}=$value;
1.94 harris41 362: return "\n".'<input type="hidden" name="'.$name.'" value="'.$value.'" />';
1.8 www 363: }
364:
1.193 www 365: sub checkbox {
366: my ($name,$text)=@_;
1.201 albertel 367: return "\n<br /><label><input type='checkbox' name='$name' /> ".
368: &mt($text)."</label>";
1.193 www 369: }
370:
1.9 www 371: sub selectbox {
1.65 harris41 372: my ($title,$name,$value,$functionref,@idlist)=@_;
1.134 www 373: $title=&mt($title);
1.123 albertel 374: $value=(split(/\s*,\s*/,$value))[-1];
1.167 albertel 375: if (defined($value)) {
1.192 albertel 376: $env{'form.'.$name}=$value;
1.167 albertel 377: } else {
1.192 albertel 378: $env{'form.'.$name}=$idlist[0];
1.167 albertel 379: }
1.238 bisitz 380: my $selout="\n".&Apache::lonhtmlcommon::row_title($title)
381: .'<select name="'.$name.'">';
1.65 harris41 382: foreach (@idlist) {
383: $selout.='<option value=\''.$_.'\'';
384: if ($_ eq $value) {
385: $selout.=' selected>'.&{$functionref}($_).'</option>';
386: }
387: else {$selout.='>'.&{$functionref}($_).'</option>';}
388: }
1.238 bisitz 389: $selout.='</select>'.&Apache::lonhtmlcommon::row_closure();
390: return $selout;
1.9 www 391: }
392:
1.167 albertel 393: sub select_level_form {
394: my ($value,$name)=@_;
1.192 albertel 395: $env{'form.'.$name}=$value;
396: if (!defined($value)) { $env{'form.'.$name}=0; }
1.167 albertel 397: return &Apache::loncommon::select_level_form($value,$name);
398: }
1.90 matthew 399: #########################################
400: #########################################
401:
402: =pod
403:
1.94 harris41 404: =item B<urlfixup>
1.90 matthew 405:
406: Fix up a url? First step of publication
1.12 www 407:
1.90 matthew 408: =cut
409:
410: #########################################
411: #########################################
1.34 www 412: sub urlfixup {
1.35 www 413: my ($url,$target)=@_;
1.39 www 414: unless ($url) { return ''; }
1.68 albertel 415: #javascript code needs no fixing
416: if ($url =~ /^javascript:/i) { return $url; }
1.69 albertel 417: if ($url =~ /^mailto:/i) { return $url; }
1.68 albertel 418: #internal document links need no fixing
419: if ($url =~ /^\#/) { return $url; }
1.223 albertel 420: my ($host)=($url=~m{(?:(?:http|https|ftp)://)*([^/]+)});
421: my @lonids = &Apache::lonnet::machine_ids($host);
422: if (@lonids) {
423: $url=~s{^(?:http|https|ftp)://}{};
424: $url=~s/^\Q$host\E//;
1.65 harris41 425: }
1.223 albertel 426: if ($url=~m{^(?:http|https|ftp)://}) { return $url; }
1.222 albertel 427: $url=~s{\Q~$cuname\E}{res/$cudom/$cuname};
1.71 www 428: return $url;
429: }
430:
1.90 matthew 431: #########################################
432: #########################################
433:
434: =pod
435:
1.94 harris41 436: =item B<absoluteurl>
1.90 matthew 437:
1.94 harris41 438: Currently undocumented.
1.90 matthew 439:
440: =cut
1.71 www 441:
1.90 matthew 442: #########################################
443: #########################################
1.71 www 444: sub absoluteurl {
445: my ($url,$target)=@_;
446: unless ($url) { return ''; }
1.35 www 447: if ($target) {
448: $target=~s/\/[^\/]+$//;
449: $url=&Apache::lonnet::hreflocation($target,$url);
450: }
451: return $url;
1.34 www 452: }
453:
1.90 matthew 454: #########################################
455: #########################################
456:
457: =pod
458:
1.94 harris41 459: =item B<set_allow>
1.90 matthew 460:
461: Currently undocumented
462:
463: =cut
464:
465: #########################################
466: #########################################
1.81 albertel 467: sub set_allow {
468: my ($allow,$logfile,$target,$tag,$oldurl)=@_;
469: my $newurl=&urlfixup($oldurl,$target);
470: my $return_url=$oldurl;
471: print $logfile 'GUYURL: '.$tag.':'.$oldurl.' - '.$newurl."\n";
472: if ($newurl ne $oldurl) {
473: $return_url=$newurl;
474: print $logfile 'URL: '.$tag.':'.$oldurl.' - '.$newurl."\n";
475: }
476: if (($newurl !~ /^javascript:/i) &&
477: ($newurl !~ /^mailto:/i) &&
1.220 albertel 478: ($newurl !~ /^(?:http|https|ftp):/i) &&
1.81 albertel 479: ($newurl !~ /^\#/)) {
480: $$allow{&absoluteurl($newurl,$target)}=1;
481: }
1.218 raeburn 482: return $return_url;
1.81 albertel 483: }
484:
1.90 matthew 485: #########################################
486: #########################################
487:
488: =pod
489:
1.94 harris41 490: =item B<get_subscribed_hosts>
1.90 matthew 491:
492: Currently undocumented
493:
494: =cut
495:
496: #########################################
497: #########################################
1.85 albertel 498: sub get_subscribed_hosts {
499: my ($target)=@_;
500: my @subscribed;
501: my $filename;
502: $target=~/(.*)\/([^\/]+)$/;
503: my $srcf=$2;
504: opendir(DIR,$1);
1.225 albertel 505: # cycle through listed files, subscriptions used to exist
506: # as "filename.lonid"
1.85 albertel 507: while ($filename=readdir(DIR)) {
1.216 albertel 508: if ($filename=~/\Q$srcf\E\.($match_lonid)$/) {
1.85 albertel 509: my $subhost=$1;
1.225 albertel 510: if (($subhost ne 'meta'
511: && $subhost ne 'subscription'
512: && $subhost ne 'meta.subscription'
513: && $subhost ne 'tmp') &&
1.98 www 514: ($subhost ne $Apache::lonnet::perlvar{'lonHostID'})) {
1.85 albertel 515: push(@subscribed,$subhost);
516: }
517: }
518: }
519: closedir(DIR);
520: my $sh;
521: if ( $sh=Apache::File->new("$target.subscription") ) {
522: while (my $subline=<$sh>) {
1.216 albertel 523: if ($subline =~ /^($match_lonid):/) {
1.98 www 524: if ($1 ne $Apache::lonnet::perlvar{'lonHostID'}) {
525: push(@subscribed,$1);
526: }
1.85 albertel 527: }
528: }
529: }
530: return @subscribed;
531: }
532:
1.86 albertel 533:
1.90 matthew 534: #########################################
535: #########################################
536:
537: =pod
538:
1.94 harris41 539: =item B<get_max_ids_indices>
1.90 matthew 540:
541: Currently undocumented
542:
543: =cut
544:
545: #########################################
546: #########################################
1.86 albertel 547: sub get_max_ids_indices {
548: my ($content)=@_;
549: my $maxindex=10;
550: my $maxid=10;
551: my $needsfixup=0;
1.106 albertel 552: my $duplicateids=0;
553:
554: my %allids;
555: my %duplicatedids;
1.86 albertel 556:
557: my $parser=HTML::LCParser->new($content);
1.207 albertel 558: $parser->xml_mode(1);
1.86 albertel 559: my $token;
560: while ($token=$parser->get_token) {
561: if ($token->[0] eq 'S') {
562: my $counter;
563: if ($counter=$addid{$token->[1]}) {
564: if ($counter eq 'id') {
1.186 albertel 565: if (defined($token->[2]->{'id'}) &&
566: $token->[2]->{'id'} !~ /^\s*$/) {
1.86 albertel 567: $maxid=($token->[2]->{'id'}>$maxid)?$token->[2]->{'id'}:$maxid;
1.106 albertel 568: if (exists($allids{$token->[2]->{'id'}})) {
569: $duplicateids=1;
570: $duplicatedids{$token->[2]->{'id'}}=1;
571: } else {
572: $allids{$token->[2]->{'id'}}=1;
573: }
1.86 albertel 574: } else {
575: $needsfixup=1;
576: }
577: } else {
1.186 albertel 578: if (defined($token->[2]->{'index'}) &&
579: $token->[2]->{'index'} !~ /^\s*$/) {
1.86 albertel 580: $maxindex=($token->[2]->{'index'}>$maxindex)?$token->[2]->{'index'}:$maxindex;
581: } else {
582: $needsfixup=1;
583: }
584: }
585: }
586: }
587: }
1.106 albertel 588: return ($needsfixup,$maxid,$maxindex,$duplicateids,
589: (keys(%duplicatedids)));
1.86 albertel 590: }
591:
1.90 matthew 592: #########################################
593: #########################################
594:
595: =pod
596:
1.94 harris41 597: =item B<get_all_text_unbalanced>
1.90 matthew 598:
599: Currently undocumented
600:
601: =cut
602:
603: #########################################
604: #########################################
1.87 albertel 605: sub get_all_text_unbalanced {
606: #there is a copy of this in lonxml.pm
607: my($tag,$pars)= @_;
608: my $token;
609: my $result='';
610: $tag='<'.$tag.'>';
611: while ($token = $$pars[-1]->get_token) {
612: if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
613: $result.=$token->[1];
614: } elsif ($token->[0] eq 'PI') {
615: $result.=$token->[2];
616: } elsif ($token->[0] eq 'S') {
617: $result.=$token->[4];
618: } elsif ($token->[0] eq 'E') {
619: $result.=$token->[2];
620: }
1.177 albertel 621: if ($result =~ /\Q$tag\E/s) {
1.176 albertel 622: ($result,my $redo)=$result =~ /(.*)\Q$tag\E(.*)/is;
1.88 albertel 623: #&Apache::lonnet::logthis('Got a winner with leftovers ::'.$2);
624: #&Apache::lonnet::logthis('Result is :'.$1);
1.176 albertel 625: $redo=$tag.$redo;
1.87 albertel 626: push (@$pars,HTML::LCParser->new(\$redo));
627: $$pars[-1]->xml_mode('1');
628: last;
629: }
630: }
631: return $result
632: }
633:
1.90 matthew 634: #########################################
635: #########################################
636:
637: =pod
638:
1.94 harris41 639: =item B<fix_ids_and_indices>
1.90 matthew 640:
641: Currently undocumented
642:
643: =cut
644:
645: #########################################
646: #########################################
1.87 albertel 647: #Arguably this should all be done as a lonnet::ssi instead
1.86 albertel 648: sub fix_ids_and_indices {
649: my ($logfile,$source,$target)=@_;
650:
651: my %allow;
652: my $content;
653: {
654: my $org=Apache::File->new($source);
655: $content=join('',<$org>);
656: }
657:
1.106 albertel 658: my ($needsfixup,$maxid,$maxindex,$duplicateids,@duplicatedids)=
659: &get_max_ids_indices(\$content);
1.86 albertel 660:
1.106 albertel 661: print $logfile ("Got $needsfixup,$maxid,$maxindex,$duplicateids--".
662: join(', ',@duplicatedids));
663: if ($duplicateids) {
664: print $logfile "Duplicate ID(s) exist, ".join(', ',@duplicatedids)."\n";
1.226 albertel 665: my $outstring='<span class="LC_error">'.&mt('Unable to publish file, it contains duplicated ID(s), ID(s) need to be unique. The duplicated ID(s) are').': '.join(', ',@duplicatedids).'</span>';
1.106 albertel 666: return ($outstring,1);
667: }
1.86 albertel 668: if ($needsfixup) {
669: print $logfile "Needs ID and/or index fixup\n".
670: "Max ID : $maxid (min 10)\n".
671: "Max Index: $maxindex (min 10)\n";
672: }
673: my $outstring='';
1.236 www 674: my $responsecounter=1;
1.86 albertel 675: my @parser;
676: $parser[0]=HTML::LCParser->new(\$content);
677: $parser[-1]->xml_mode(1);
678: my $token;
679: while (@parser) {
680: while ($token=$parser[-1]->get_token) {
681: if ($token->[0] eq 'S') {
682: my $counter;
683: my $tag=$token->[1];
684: my $lctag=lc($tag);
685: if ($lctag eq 'allow') {
686: $allow{$token->[2]->{'src'}}=1;
687: next;
688: }
1.202 albertel 689: if ($lctag eq 'base') { next; }
1.236 www 690: if (($lctag eq 'part') || ($lctag eq 'problem')) {
691: $responsecounter=0;
692: }
693: if ($lctag=~/response$/) { $responsecounter++; }
1.86 albertel 694: my %parms=%{$token->[2]};
695: $counter=$addid{$tag};
696: if (!$counter) { $counter=$addid{$lctag}; }
697: if ($counter) {
698: if ($counter eq 'id') {
1.186 albertel 699: unless (defined($parms{'id'}) &&
700: $parms{'id'}!~/^\s*$/) {
1.86 albertel 701: $maxid++;
702: $parms{'id'}=$maxid;
1.205 albertel 703: print $logfile 'ID(new) : '.$tag.':'.$maxid."\n";
704: } else {
705: print $logfile 'ID(kept): '.$tag.':'.$parms{'id'}."\n";
1.86 albertel 706: }
707: } elsif ($counter eq 'index') {
1.186 albertel 708: unless (defined($parms{'index'}) &&
709: $parms{'index'}!~/^\s*$/) {
1.86 albertel 710: $maxindex++;
711: $parms{'index'}=$maxindex;
712: print $logfile 'Index: '.$tag.':'.$maxindex."\n";
713: }
714: }
715: }
1.203 www 716: unless ($parms{'type'} eq 'zombie') {
717: foreach my $type ('src','href','background','bgimg') {
718: foreach my $key (keys(%parms)) {
719: if ($key =~ /^$type$/i) {
720: $parms{$key}=&set_allow(\%allow,$logfile,
721: $target,$tag,
722: $parms{$key});
723: }
1.86 albertel 724: }
725: }
726: }
727: # probably a <randomlabel> image type <label>
1.135 albertel 728: # or a <image> tag inside <imageresponse>
729: if (($lctag eq 'label' && defined($parms{'description'}))
730: ||
731: ($lctag eq 'image')) {
1.86 albertel 732: my $next_token=$parser[-1]->get_token();
733: if ($next_token->[0] eq 'T') {
1.218 raeburn 734: $next_token->[1] =~ s/[\n\r\f]+//g;
1.86 albertel 735: $next_token->[1]=&set_allow(\%allow,$logfile,
736: $target,$tag,
737: $next_token->[1]);
738: }
739: $parser[-1]->unget_token($next_token);
740: }
741: if ($lctag eq 'applet') {
742: my $codebase='';
1.148 albertel 743: my $havecodebase=0;
744: foreach my $key (keys(%parms)) {
745: if (lc($key) eq 'codebase') {
746: $codebase=$parms{$key};
747: $havecodebase=1;
748: }
749: }
750: if ($havecodebase) {
751: my $oldcodebase=$codebase;
1.86 albertel 752: unless ($oldcodebase=~/\/$/) {
753: $oldcodebase.='/';
754: }
755: $codebase=&urlfixup($oldcodebase,$target);
756: $codebase=~s/\/$//;
757: if ($codebase ne $oldcodebase) {
758: $parms{'codebase'}=$codebase;
759: print $logfile 'URL codebase: '.$tag.':'.
760: $oldcodebase.' - '.
761: $codebase."\n";
762: }
763: $allow{&absoluteurl($codebase,$target).'/*'}=1;
764: } else {
1.148 albertel 765: foreach my $key (keys(%parms)) {
766: if ($key =~ /(archive|code|object)/i) {
767: my $oldurl=$parms{$key};
1.86 albertel 768: my $newurl=&urlfixup($oldurl,$target);
769: $newurl=~s/\/[^\/]+$/\/\*/;
1.148 albertel 770: print $logfile 'Allow: applet '.lc($key).':'.
771: $oldurl.' allows '.$newurl."\n";
1.86 albertel 772: $allow{&absoluteurl($newurl,$target)}=1;
773: }
774: }
775: }
776: }
777: my $newparmstring='';
778: my $endtag='';
779: foreach (keys %parms) {
780: if ($_ eq '/') {
781: $endtag=' /';
782: } else {
783: my $quote=($parms{$_}=~/\"/?"'":'"');
784: $newparmstring.=' '.$_.'='.$quote.$parms{$_}.$quote;
785: }
786: }
787: if (!$endtag) { if ($token->[4]=~m:/>$:) { $endtag=' /'; }; }
788: $outstring.='<'.$tag.$newparmstring.$endtag.'>';
1.235 www 789: if ($lctag eq 'm' || $lctag eq 'script' || $lctag eq 'answer'
1.131 albertel 790: || $lctag eq 'display' || $lctag eq 'tex') {
1.130 albertel 791: $outstring.=&get_all_text_unbalanced('/'.$lctag,\@parser);
1.87 albertel 792: }
1.86 albertel 793: } elsif ($token->[0] eq 'E') {
794: if ($token->[2]) {
795: unless ($token->[1] eq 'allow') {
796: $outstring.='</'.$token->[1].'>';
797: }
1.236 www 798: }
799: if ((($token->[1] eq 'part') || ($token->[1] eq 'problem'))
800: && (!$responsecounter)) {
1.239 bisitz 801: my $outstring='<span class="LC_error">'.&mt('Found [_1] without responses. This resource cannot be published.',$token->[1]).'</span>';
1.236 www 802: return ($outstring,1);
803: }
1.86 albertel 804: } else {
805: $outstring.=$token->[1];
806: }
807: }
808: pop(@parser);
809: }
810:
811: if ($needsfixup) {
812: print $logfile "End of ID and/or index fixup\n".
813: "Max ID : $maxid (min 10)\n".
814: "Max Index: $maxindex (min 10)\n";
815: } else {
816: print $logfile "Does not need ID and/or index fixup\n";
817: }
818:
1.106 albertel 819: return ($outstring,0,%allow);
1.86 albertel 820: }
821:
1.89 matthew 822: #########################################
823: #########################################
824:
825: =pod
826:
1.94 harris41 827: =item B<store_metadata>
1.89 matthew 828:
829: Store the metadata in the metadata table in the loncapa database.
830: Uses lonmysql to access the database.
831:
832: Inputs: \%metadata
833:
834: Returns: (error,status). error is undef on success, status is undef on error.
835:
836: =cut
837:
838: #########################################
839: #########################################
840: sub store_metadata {
1.151 www 841: my %metadata = @_;
1.89 matthew 842: my $error;
843: # Determine if the table exists
844: my $status = &Apache::lonmysql::check_table('metadata');
845: if (! defined($status)) {
1.226 albertel 846: $error='<span class="LC_error">WARNING: Cannot connect to '.
847: 'database!</span>';
1.89 matthew 848: &Apache::lonnet::logthis($error);
849: return ($error,undef);
850: }
851: if ($status == 0) {
852: # It would be nice to actually create the table....
1.226 albertel 853: $error ='<span class="LC_error">WARNING: The metadata table does not '.
854: 'exist in the LON-CAPA database.</span>';
1.89 matthew 855: &Apache::lonnet::logthis($error);
856: return ($error,undef);
857: }
1.172 matthew 858: my $dbh = &Apache::lonmysql::get_dbh();
1.237 www 859: if (($metadata{'obsolete'}) || ($metadata{'copyright'} eq 'priv')) {
1.172 matthew 860: # remove this entry
1.228 albertel 861: my $delitem = 'url = '.$dbh->quote($metadata{'url'});
862: $status = &LONCAPA::lonmetadata::delete_metadata($dbh,undef,$delitem);
863:
1.152 www 864: } else {
1.213 albertel 865: $status = &LONCAPA::lonmetadata::update_metadata($dbh,undef,undef,
1.172 matthew 866: \%metadata);
1.152 www 867: }
1.172 matthew 868: if (defined($status) && $status ne '') {
1.226 albertel 869: $error='<span class="LC_error">Error occured saving new values in '.
870: 'metadata table in LON-CAPA database</span>';
1.89 matthew 871: &Apache::lonnet::logthis($error);
1.172 matthew 872: &Apache::lonnet::logthis($status);
1.89 matthew 873: return ($error,undef);
874: }
1.213 albertel 875: return (undef,'success');
1.89 matthew 876: }
877:
1.142 www 878:
1.185 www 879: # ========================================== Parse file for errors and warnings
880:
881: sub checkonthis {
882: my ($r,$source)=@_;
1.187 www 883: my $uri=&Apache::lonnet::hreflocation($source);
884: $uri=~s/\/$//;
1.190 albertel 885: my $result=&Apache::lonnet::ssi_body($uri,
886: ('grade_target'=>'web',
887: 'return_only_error_and_warning_counts' => 1));
888: my ($errorcount,$warningcount)=split(':',$result);
1.187 www 889: if (($errorcount) || ($warningcount)) {
890: $r->print('<br /><tt>'.$uri.'</tt>: ');
891: if ($errorcount) {
1.226 albertel 892: $r->print('<img src="/adm/lonMisc/bomb.gif" /><span class="LC_error"><b>'.
1.187 www 893: $errorcount.' '.
1.226 albertel 894: &mt('error(s)').'</b></span> ');
1.185 www 895: }
1.187 www 896: if ($warningcount) {
1.185 www 897: $r->print('<font color="blue">'.
1.187 www 898: $warningcount.' '.
1.185 www 899: &mt('warning(s)').'</font>');
900: }
901: } else {
1.190 albertel 902: #$r->print('<font color="green">'.&mt('ok').'</font>');
1.185 www 903: }
904: $r->rflush();
1.187 www 905: return ($warningcount,$errorcount);
1.185 www 906: }
907:
1.142 www 908: # ============================================== Parse file itself for metadata
1.144 www 909: #
910: # parses a file with target meta, sets global %metadatafields %metadatakeys
1.142 www 911:
912: sub parseformeta {
913: my ($source,$style)=@_;
1.143 www 914: my $allmeta='';
1.142 www 915: if (($style eq 'ssi') || ($style eq 'prv')) {
916: my $dir=$source;
917: $dir=~s-/[^/]*$--;
918: my $file=$source;
919: $file=(split('/',$file))[-1];
920: $source=&Apache::lonnet::hreflocation($dir,$file);
1.143 www 921: $allmeta=&Apache::lonnet::ssi_body($source,('grade_target' => 'meta'));
1.142 www 922: &metaeval($allmeta);
923: }
1.143 www 924: return $allmeta;
1.142 www 925: }
926:
1.90 matthew 927: #########################################
928: #########################################
929:
930: =pod
931:
1.94 harris41 932: =item B<publish>
933:
934: This is the workhorse function of this module. This subroutine generates
935: backup copies, performs any automatic processing (prior to publication,
936: especially for rat and ssi files),
1.90 matthew 937:
1.113 albertel 938: Returns a 2 element array, the first is the string to be shown to the
939: user, the second is an error code, either 1 (an error occured) or 0
940: (no error occurred)
941:
1.94 harris41 942: I<Additional documentation needed.>
1.90 matthew 943:
944: =cut
945:
946: #########################################
947: #########################################
1.2 www 948: sub publish {
1.50 www 949:
1.97 www 950: my ($source,$target,$style,$batch)=@_;
1.2 www 951: my $logfile;
1.4 www 952: my $scrout='';
1.23 www 953: my $allmeta='';
954: my $content='';
1.36 www 955: my %allow=();
1.4 www 956:
1.2 www 957: unless ($logfile=Apache::File->new('>>'.$source.'.log')) {
1.226 albertel 958: return ('<span class="LC_error">'.&mt('No write permission to user directory, FAIL').'</span>',1);
1.2 www 959: }
960: print $logfile
1.211 albertel 961: "\n\n================= Publish ".localtime()." Phase One ================\n".$env{'user.name'}.':'.$env{'user.domain'}."\n";
1.2 www 962:
1.119 www 963: if (($style eq 'ssi') || ($style eq 'rat') || ($style eq 'prv')) {
1.3 www 964: # ------------------------------------------------------- This needs processing
1.4 www 965:
966: # ----------------------------------------------------------------- Backup Copy
1.3 www 967: my $copyfile=$source.'.save';
1.13 www 968: if (copy($source,$copyfile)) {
1.3 www 969: print $logfile "Copied original file to ".$copyfile."\n";
970: } else {
1.13 www 971: print $logfile "Unable to write backup ".$copyfile.':'.$!."\n";
1.239 bisitz 972: return ("<span class=\"LC_error\">".&mt("Failed to write backup copy, [_1], FAIL",$1)."</span>",1);
1.3 www 973: }
1.4 www 974: # ------------------------------------------------------------- IDs and indices
1.86 albertel 975:
1.106 albertel 976: my ($outstring,$error);
977: ($outstring,$error,%allow)=&fix_ids_and_indices($logfile,$source,
978: $target);
1.113 albertel 979: if ($error) { return ($outstring,$error); }
1.36 www 980: # ------------------------------------------------------------ Construct Allows
1.62 www 981:
1.146 sakharuk 982: $scrout.='<h3>'.&mt('Dependencies').'</h3>';
1.62 www 983: my $allowstr='';
1.232 raeburn 984: foreach my $thisdep (sort(keys(%allow))) {
1.73 albertel 985: if ($thisdep !~ /[^\s]/) { next; }
1.231 www 986: if ($thisdep =~/\$/) {
1.232 raeburn 987: $scrout.='<br /><span class="LC_warning">'
988: .&mt('The resource depends on another resource with variable filename, i.e., [_1].','<tt>'.$thisdep.'</tt>').'<br />'
989: .&mt('You likely need to explicitly allow access to all possible dependencies using the [_1]-tag.','<tt><allow></tt>')
990: .'</span><br />';
1.231 www 991: }
1.62 www 992: unless ($style eq 'rat') {
993: $allowstr.="\n".'<allow src="'.$thisdep.'" />';
994: }
1.120 albertel 995: $scrout.='<br />';
1.231 www 996: if ($thisdep!~/[\*\$]/ && $thisdep!~m|^/adm/|) {
1.59 www 997: $scrout.='<a href="'.$thisdep.'">';
1.44 www 998: }
1.59 www 999: $scrout.='<tt>'.$thisdep.'</tt>';
1.231 www 1000: if ($thisdep!~/[\*\$]/ && $thisdep!~m|^/adm/|) {
1.44 www 1001: $scrout.='</a>';
1.59 www 1002: if (
1003: &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
1004: $thisdep.'.meta') eq '-1') {
1.226 albertel 1005: $scrout.= ' - <span class="LC_error">'.&mt('Currently not available').
1006: '</span>';
1.59 www 1007: } else {
1008: my %temphash=(&Apache::lonnet::declutter($target).'___'.
1009: &Apache::lonnet::declutter($thisdep).'___usage'
1010: => time);
1.215 albertel 1011: $thisdep=~m{^/res/($match_domain)/($match_username)/};
1.59 www 1012: if ((defined($1)) && (defined($2))) {
1.92 albertel 1013: &Apache::lonnet::put('nohist_resevaldata',\%temphash,
1014: $1,$2);
1.59 www 1015: }
1016: }
1.44 www 1017: }
1.65 harris41 1018: }
1.175 albertel 1019: $outstring=~s/\n*(\<\/[^\>]+\>[^<]*)$/$allowstr\n$1\n/s;
1.62 www 1020:
1.94 harris41 1021: # ------------------------------------------------------------- Write modified.
1.37 www 1022:
1.4 www 1023: {
1024: my $org;
1025: unless ($org=Apache::File->new('>'.$source)) {
1026: print $logfile "No write permit to $source\n";
1.226 albertel 1027: return ('<span class="LC_error">'.&mt('No write permission to').
1.136 www 1028: ' '.$source.
1.226 albertel 1029: ', '.&mt('FAIL').'</span>',1);
1.4 www 1030: }
1.94 harris41 1031: print($org $outstring);
1.4 www 1032: }
1033: $content=$outstring;
1.34 www 1034:
1.37 www 1035: }
1.94 harris41 1036: # -------------------------------------------- Initial step done, now metadata.
1.7 www 1037:
1.94 harris41 1038: # --------------------------------------- Storage for metadata keys and fields.
1.144 www 1039: # these are globals
1040: #
1.8 www 1041: %metadatafields=();
1042: %metadatakeys=();
1043:
1044: my %oldparmstores=();
1.44 www 1045:
1.97 www 1046: unless ($batch) {
1.136 www 1047: $scrout.='<h3>'.&mt('Metadata Information').' ' .
1.239 bisitz 1048: &Apache::loncommon::help_open_topic("Metadata_Description")
1.84 bowersj2 1049: . '</h3>';
1.97 www 1050: }
1.7 www 1051:
1052: # ------------------------------------------------ First, check out environment
1.195 www 1053: if ((!(-e $source.'.meta')) || ($env{'form.forceoverride'})) {
1.192 albertel 1054: $metadatafields{'author'}=$env{'environment.firstname'}.' '.
1055: $env{'environment.middlename'}.' '.
1056: $env{'environment.lastname'}.' '.
1057: $env{'environment.generation'};
1.8 www 1058: $metadatafields{'author'}=~s/\s+/ /g;
1059: $metadatafields{'author'}=~s/\s+$//;
1.211 albertel 1060: $metadatafields{'owner'}=$cuname.':'.$cudom;
1.7 www 1061:
1062: # ------------------------------------------------ Check out directory hierachy
1063:
1064: my $thisdisfn=$source;
1.122 albertel 1065: $thisdisfn=~s/^\/home\/\Q$cuname\E\///;
1.7 www 1066:
1067: my @urlparts=split(/\//,$thisdisfn);
1068: $#urlparts--;
1069:
1.27 www 1070: my $currentpath='/home/'.$cuname.'/';
1.7 www 1071:
1.140 albertel 1072: my $prefix='../'x($#urlparts);
1.65 harris41 1073: foreach (@urlparts) {
1.7 www 1074: $currentpath.=$_.'/';
1.140 albertel 1075: $scrout.=&metaread($logfile,$currentpath.'default.meta',$prefix);
1076: $prefix=~s|^\.\./||;
1.65 harris41 1077: }
1.185 www 1078:
1.149 www 1079: # ----------------------------------------------------------- Parse file itself
1080: # read %metadatafields from file itself
1081:
1082: $allmeta=&parseformeta($source,$style);
1.7 www 1083:
1084: # ------------------- Clear out parameters and stores (there should not be any)
1085:
1.65 harris41 1086: foreach (keys %metadatafields) {
1.7 www 1087: if (($_=~/^parameter/) || ($_=~/^stores/)) {
1088: delete $metadatafields{$_};
1089: }
1.65 harris41 1090: }
1.7 www 1091:
1.8 www 1092: } else {
1.7 www 1093: # ---------------------- Read previous metafile, remember parameters and stores
1094:
1095: $scrout.=&metaread($logfile,$source.'.meta');
1096:
1.65 harris41 1097: foreach (keys %metadatafields) {
1.7 www 1098: if (($_=~/^parameter/) || ($_=~/^stores/)) {
1099: $oldparmstores{$_}=1;
1100: delete $metadatafields{$_};
1101: }
1.65 harris41 1102: }
1.195 www 1103: # ------------------------------------------------------------- Save some stuff
1104: my %savemeta=();
1105: foreach ('title') {
1106: $savemeta{$_}=$metadatafields{$_};
1107: }
1.161 albertel 1108: # ------------------------------------------ See if anything new in file itself
1109:
1110: $allmeta=&parseformeta($source,$style);
1.195 www 1111: # ----------------------------------------------------------- Restore the stuff
1112: foreach (keys %savemeta) {
1113: $metadatafields{$_}=$savemeta{$_};
1114: }
1.144 www 1115: }
1.7 www 1116:
1.144 www 1117:
1.7 www 1118: # ---------------- Find and document discrepancies in the parameters and stores
1119:
1.116 albertel 1120: my $chparms='';
1121: foreach (sort keys %metadatafields) {
1122: if (($_=~/^parameter/) || ($_=~/^stores/)) {
1123: unless ($_=~/\.\w+$/) {
1124: unless ($oldparmstores{$_}) {
1.219 albertel 1125: my $disp_key = $_;
1126: $disp_key =~ tr/\0/_/;
1127: print $logfile ('New: '.$disp_key."\n");
1128: $chparms .= $disp_key.' ';
1.116 albertel 1129: }
1130: }
1131: }
1132: }
1133: if ($chparms) {
1.224 albertel 1134: $scrout.='<p><b>'.&mt('New parameters or saved values').
1.136 www 1135: ':</b> '.$chparms.'</p>';
1.116 albertel 1136: }
1.7 www 1137:
1.116 albertel 1138: $chparms='';
1139: foreach (sort keys %oldparmstores) {
1140: if (($_=~/^parameter/) || ($_=~/^stores/)) {
1141: unless (($metadatafields{$_.'.name'}) ||
1142: ($metadatafields{$_.'.package'}) || ($_=~/\.\w+$/)) {
1.219 albertel 1143: my $disp_key = $_;
1144: $disp_key =~ tr/\0/_/;
1145: print $logfile ('Obsolete: '.$disp_key."\n");
1146: $chparms.=$disp_key.' ';
1.116 albertel 1147: }
1148: }
1149: }
1150: if ($chparms) {
1.224 albertel 1151: $scrout.='<p><b>'.&mt('Obsolete parameters or saved values').':</b> '.
1.219 albertel 1152: $chparms.'</p><h1><span class="LC_warning">'.&mt('Warning!').
1153: '</span></h1><p><span class="LC_warning">'.
1154: &mt('If this resource is in active use, student performance data from the previous version may become inaccessible.').'</span></p><hr />';
1.116 albertel 1155: }
1.229 www 1156: if ($metadatafields{'copyright'} eq 'priv') {
1157: $scrout.='</p><h1><span class="LC_warning">'.&mt('Warning!').
1158: '</span></h1><p><span class="LC_warning">'.
1159: &mt('Copyright/distribution option "Private" is no longer supported. Select another option from below. Consider "Custom Rights" for maximum control over the usage of your resource.').'</span></p><hr />';
1160: }
1.37 www 1161:
1.8 www 1162: # ------------------------------------------------------- Now have all metadata
1.5 www 1163:
1.116 albertel 1164: my %keywords=();
1.97 www 1165:
1.116 albertel 1166: if (length($content)<500000) {
1167: my $textonly=$content;
1168: $textonly=~s/\<script[^\<]+\<\/script\>//g;
1169: $textonly=~s/\<m\>[^\<]+\<\/m\>//g;
1170: $textonly=~s/\<[^\>]*\>//g;
1171: $textonly=~tr/A-Z/a-z/;
1172: $textonly=~s/[\$\&][a-z]\w*//g;
1173: $textonly=~s/[^a-z\s]//g;
1174:
1175: foreach ($textonly=~m/(\w+)/g) {
1176: unless ($nokey{$_}) {
1177: $keywords{$_}=1;
1178: }
1179: }
1180: }
1.97 www 1181:
1182:
1.168 www 1183: foreach my $addkey (split(/[\"\'\,\;]/,$metadatafields{'keywords'})) {
1184: $addkey=~s/\s+/ /g;
1185: $addkey=~s/^\s//;
1186: $addkey=~s/\s$//;
1187: if ($addkey=~/\w/) {
1188: $keywords{$addkey}=1;
1189: }
1.116 albertel 1190: }
1.97 www 1191: # --------------------------------------------------- Now we also have keywords
1192: # =============================================================================
1.167 albertel 1193: # interactive mode html goes into $intr_scrout
1194: # batch mode throws away this HTML
1195: # additionally all of the field functions have a by product of setting
1.192 albertel 1196: # $env{'from.'..} so that it can be used by the phase two handler in
1.167 albertel 1197: # batch mode
1198:
1.239 bisitz 1199: my $intr_scrout.='<br />'
1.238 bisitz 1200: .'<form name="pubform" action="/adm/publish" method="post">';
1201: unless ($env{'form.makeobsolete'}) {
1.239 bisitz 1202: $intr_scrout.='<p>'
1203: .&mt('Searching for your resource will be based on the following metadata. Please provide as much data as possible.')
1204: .'</p>'
1205: .'<p><input type="submit" value="'
1.238 bisitz 1206: .&mt('Finalize Publication')
1.239 bisitz 1207: .'" /></p>';
1.238 bisitz 1208: }
1.239 bisitz 1209: $intr_scrout.=&Apache::lonhtmlcommon::start_pick_box();
1.238 bisitz 1210: $intr_scrout.=
1.167 albertel 1211: &hiddenfield('phase','two').
1.192 albertel 1212: &hiddenfield('filename',$env{'form.filename'}).
1.209 www 1213: &hiddenfield('allmeta',&escape($allmeta)).
1.194 www 1214: &hiddenfield('dependencies',join(',',keys %allow));
1215: unless ($env{'form.makeobsolete'}) {
1216: $intr_scrout.=
1.167 albertel 1217: &textfield('Title','title',$metadatafields{'title'}).
1218: &textfield('Author(s)','author',$metadatafields{'author'}).
1219: &textfield('Subject','subject',$metadatafields{'subject'});
1.194 www 1220: # --------------------------------------------------- Scan content for keywords
1.7 www 1221:
1.238 bisitz 1222: my $keywords_help = &Apache::loncommon::help_open_topic("Publishing_Keywords");
1.167 albertel 1223: my $keywordout=<<"END";
1.77 matthew 1224: <script>
1.116 albertel 1225: function checkAll(field) {
1.77 matthew 1226: for (i = 0; i < field.length; i++)
1227: field[i].checked = true ;
1228: }
1229:
1.116 albertel 1230: function uncheckAll(field) {
1.77 matthew 1231: for (i = 0; i < field.length; i++)
1232: field[i].checked = false ;
1233: }
1234: </script>
1.117 albertel 1235: END
1.238 bisitz 1236: $keywordout.="\n".&Apache::lonhtmlcommon::row_title(&mt('Keywords'))
1237: .$keywords_help
1238: .'<input type="button" value="'.&mt('check all').'" onclick="javascript:checkAll(document.pubform.keywords)" />'
1239: .'<input type="button" value="'.&mt('uncheck all').'" onclick="javascript:uncheckAll(document.pubform.keywords)" />'
1240: .'</p><br />'
1.241 ! raeburn 1241: .&Apache::loncommon::start_data_table()
! 1242: .&Apache::loncommon::start_data_table_row();
! 1243:
1.167 albertel 1244: my $colcount=0;
1.116 albertel 1245:
1.167 albertel 1246: foreach (sort keys %keywords) {
1.179 matthew 1247: $keywordout.='<td><label><input type="checkbox" name="keywords" value="'.$_.'"';
1.167 albertel 1248: if ($metadatafields{'keywords'}) {
1249: if ($metadatafields{'keywords'}=~/\Q$_\E/) {
1.120 albertel 1250: $keywordout.=' checked="on"';
1.192 albertel 1251: $env{'form.keywords'}.=$_.',';
1.116 albertel 1252: }
1.167 albertel 1253: } elsif (&Apache::loncommon::keyword($_)) {
1254: $keywordout.=' checked="on"';
1.192 albertel 1255: $env{'form.keywords'}.=$_.',';
1.167 albertel 1256: }
1.179 matthew 1257: $keywordout.=' />'.$_.'</label></td>';
1.167 albertel 1258: if ($colcount>10) {
1259: $keywordout.="</tr><tr>\n";
1260: $colcount=0;
1.116 albertel 1261: }
1.167 albertel 1262: $colcount++;
1263: }
1.192 albertel 1264: $env{'form.keywords'}=~s/\,$//;
1.116 albertel 1265:
1.241 ! raeburn 1266: $keywordout.=&Apache::loncommon::end_data_table_row()
! 1267: .&Apache::loncommon::end_data_table()
1.238 bisitz 1268: .&Apache::lonhtmlcommon::row_closure();
1.51 www 1269:
1.167 albertel 1270: $intr_scrout.=$keywordout;
1.9 www 1271:
1.167 albertel 1272: $intr_scrout.=&textfield('Additional Keywords','addkey','');
1.12 www 1273:
1.167 albertel 1274: $intr_scrout.=&textfield('Notes','notes',$metadatafields{'notes'});
1.9 www 1275:
1.238 bisitz 1276: $intr_scrout.="\n".&Apache::lonhtmlcommon::row_title(&mt('Abstract'))
1277: .'<textarea cols="80" rows="5" name="abstract">'
1278: .$metadatafields{'abstract'}
1279: .'</textarea>'
1280: .&Apache::lonhtmlcommon::row_closure();
1.9 www 1281:
1.167 albertel 1282: $source=~/\.(\w+)$/;
1.150 www 1283:
1.238 bisitz 1284: $intr_scrout.="\n".&Apache::lonhtmlcommon::row_title(&mt('Grade Levels'))
1285: .&mt('Lowest Grade Level:').' '
1286: .&select_level_form($metadatafields{'lowestgradelevel'},'lowestgradelevel')
1287: # .&Apache::lonhtmlcommon::row_closure();
1288: # $intr_scrout.="\n".&Apache::lonhtmlcommon::row_title(&mt('Highest Grade Level'))
1289: .' '.&mt('Highest Grade Level:').' '
1290: .&select_level_form($metadatafields{'highestgradelevel'},'highestgradelevel')
1291: .&Apache::lonhtmlcommon::row_closure();
1.150 www 1292:
1.238 bisitz 1293: $intr_scrout.=&textfield('Standards','standards',$metadatafields{'standards'});
1.11 www 1294:
1.167 albertel 1295: $intr_scrout.=&hiddenfield('mime',$1);
1.11 www 1296:
1.167 albertel 1297: my $defaultlanguage=$metadatafields{'language'};
1298: $defaultlanguage =~ s/\s*notset\s*//g;
1299: $defaultlanguage =~ s/^,\s*//g;
1300: $defaultlanguage =~ s/,\s*$//g;
1.123 albertel 1301:
1.167 albertel 1302: $intr_scrout.=&selectbox('Language','language',
1303: $defaultlanguage,
1304: \&Apache::loncommon::languagedescription,
1305: (&Apache::loncommon::languageids),
1306: );
1.11 www 1307:
1.167 albertel 1308: unless ($metadatafields{'creationdate'}) {
1309: $metadatafields{'creationdate'}=time;
1310: }
1311: $intr_scrout.=&hiddenfield('creationdate',
1312: &Apache::lonmysql::unsqltime($metadatafields{'creationdate'}));
1.116 albertel 1313:
1.167 albertel 1314: $intr_scrout.=&hiddenfield('lastrevisiondate',time);
1.11 www 1315:
1.240 raeburn 1316: my $pubowner_last;
1317: if ($style eq 'prv') {
1318: $pubowner_last = 1;
1319: }
1.167 albertel 1320: $intr_scrout.=&textfield('Publisher/Owner','owner',
1.240 raeburn 1321: $metadatafields{'owner'},$pubowner_last);
1.84 bowersj2 1322:
1.173 www 1323: # ---------------------------------------------- Retrofix for unused copyright
1324: if ($metadatafields{'copyright'} eq 'free') {
1325: $metadatafields{'copyright'}='default';
1326: $metadatafields{'sourceavail'}='open';
1327: }
1.229 www 1328: if ($metadatafields{'copyright'} eq 'priv') {
1329: $metadatafields{'copyright'}='domain';
1330: }
1.174 www 1331: # ------------------------------------------------ Dial in reasonable defaults
1.167 albertel 1332: my $defaultoption=$metadatafields{'copyright'};
1333: unless ($defaultoption) { $defaultoption='default'; }
1.174 www 1334: my $defaultsourceoption=$metadatafields{'sourceavail'};
1335: unless ($defaultsourceoption) { $defaultsourceoption='closed'; }
1.167 albertel 1336: unless ($style eq 'prv') {
1.174 www 1337: # -------------------------------------------------- Correct copyright for rat.
1.167 albertel 1338: if ($style eq 'rat') {
1.174 www 1339: # -------------------------------------- Retrofix for non-applicable copyright
1.167 albertel 1340: if ($metadatafields{'copyright'} eq 'public') {
1341: delete $metadatafields{'copyright'};
1342: $defaultoption='default';
1343: }
1344: $intr_scrout.=&selectbox('Copyright/Distribution','copyright',
1345: $defaultoption,
1346: \&Apache::loncommon::copyrightdescription,
1.229 www 1347: (grep !/^(public|priv)$/,(&Apache::loncommon::copyrightids)));
1.116 albertel 1348: } else {
1.174 www 1349: $intr_scrout.=&selectbox('Copyright/Distribution','copyright',
1350: $defaultoption,
1351: \&Apache::loncommon::copyrightdescription,
1.229 www 1352: (grep !/^priv$/,(&Apache::loncommon::copyrightids)));
1.65 harris41 1353: }
1.174 www 1354: my $copyright_help =
1.238 bisitz 1355: &Apache::loncommon::help_open_topic('Publishing_Copyright');
1356: my $replace=&mt('Copyright/Distribution:');
1357: $intr_scrout =~ s/$replace/$replace.' '.$copyright_help/ge;
1358:
1359: $intr_scrout.=&text_with_browse_field('Custom Distribution File','customdistributionfile',$metadatafields{'customdistributionfile'},'rights');
1.174 www 1360: $intr_scrout.=&selectbox('Source Distribution','sourceavail',
1361: $defaultsourceoption,
1362: \&Apache::loncommon::source_copyrightdescription,
1363: (&Apache::loncommon::source_copyrightids));
1.198 www 1364: # $intr_scrout.=&text_with_browse_field('Source Custom Distribution File','sourcerights',$metadatafields{'sourcerights'},'rights');
1.174 www 1365: my $uctitle=&mt('Obsolete');
1.238 bisitz 1366: my $obsolete_checked=($metadatafields{'obsolete'})?' checked="1" ':'';
1367: $intr_scrout.="\n".&Apache::lonhtmlcommon::row_title($uctitle)
1368: .'<input type="checkbox" name="obsolete" '.$obsolete_checked.'/ >'
1369: .&Apache::lonhtmlcommon::row_closure(1);
1370: $intr_scrout.=&text_with_browse_field('Suggested Replacement for Obsolete File',
1.180 albertel 1371: 'obsoletereplacement',
1.240 raeburn 1372: $metadatafields{'obsoletereplacement'},'',1);
1.174 www 1373: } else {
1374: $intr_scrout.=&hiddenfield('copyright','private');
1375: }
1.194 www 1376: } else {
1377: $intr_scrout.=
1378: &hiddenfield('title',$metadatafields{'title'}).
1379: &hiddenfield('author',$metadatafields{'author'}).
1380: &hiddenfield('subject',$metadatafields{'subject'}).
1381: &hiddenfield('keywords',$metadatafields{'keywords'}).
1382: &hiddenfield('abstract',$metadatafields{'abstract'}).
1383: &hiddenfield('notes',$metadatafields{'notes'}).
1384: &hiddenfield('mime',$metadatafields{'mime'}).
1385: &hiddenfield('creationdate',$metadatafields{'creationdate'}).
1386: &hiddenfield('lastrevisiondate',time).
1387: &hiddenfield('owner',$metadatafields{'owner'}).
1388: &hiddenfield('lowestgradelevel',$metadatafields{'lowestgradelevel'}).
1389: &hiddenfield('standards',$metadatafields{'standards'}).
1390: &hiddenfield('highestgradelevel',$metadatafields{'highestgradelevel'}).
1391: &hiddenfield('language',$metadatafields{'language'}).
1392: &hiddenfield('copyright',$metadatafields{'copyright'}).
1393: &hiddenfield('sourceavail',$metadatafields{'sourceavail'}).
1394: &hiddenfield('customdistributionfile',$metadatafields{'customdistributionfile'}).
1.195 www 1395: &hiddenfield('obsolete',1).
1.194 www 1396: &text_with_browse_field('Suggested Replacement for Obsolete File',
1397: 'obsoletereplacement',
1.240 raeburn 1398: $metadatafields{'obsoletereplacement'},'',1);
1.194 www 1399: }
1.167 albertel 1400: if (!$batch) {
1.238 bisitz 1401: $scrout.=$intr_scrout
1.239 bisitz 1402: .&Apache::lonhtmlcommon::end_pick_box()
1403: .'<p><input type="submit" value="'
1.238 bisitz 1404: .&mt($env{'form.makeobsolete'}?'Make Obsolete':'Finalize Publication')
1.239 bisitz 1405: .'" /></p>'
1406: .'</form>';
1.97 www 1407: }
1.167 albertel 1408: return($scrout,0);
1.2 www 1409: }
1.1 www 1410:
1.90 matthew 1411: #########################################
1412: #########################################
1413:
1414: =pod
1415:
1.94 harris41 1416: =item B<phasetwo>
1.90 matthew 1417:
1418: Render second interface showing status of publication steps.
1419: This is publication step two.
1420:
1.94 harris41 1421: Parameters:
1422:
1423: =over 4
1424:
1425: =item I<$source>
1426:
1427: =item I<$target>
1428:
1429: =item I<$style>
1430:
1431: =item I<$distarget>
1432:
1433: =back
1434:
1435: Returns:
1436:
1437: =over 4
1438:
1.197 www 1439: =item integer
1.94 harris41 1440:
1.197 www 1441: 0: fail
1442: 1: success
1.94 harris41 1443:
1.90 matthew 1444: =cut
1.12 www 1445:
1.100 matthew 1446: #'stupid emacs
1.90 matthew 1447: #########################################
1448: #########################################
1.11 www 1449: sub phasetwo {
1450:
1.100 matthew 1451: my ($r,$source,$target,$style,$distarget,$batch)=@_;
1.102 www 1452: $source=~s/\/+/\//g;
1453: $target=~s/\/+/\//g;
1.196 www 1454: #
1455: # Unless trying to get rid of something, check name validity
1456: #
1457: unless ($env{'form.obsolete'}) {
1458: if ($target=~/(\_\_\_|\&\&\&|\:\:\:)/) {
1.226 albertel 1459: $r->print('<span class="LC_error">'.
1460: &mt('Unsupported character combination [_1] in filename, FAIL.',"<tt>'.$1.'</tt>").
1461: '</span>');
1.196 www 1462: return 0;
1463: }
1464: unless ($target=~/\.(\w+)$/) {
1.226 albertel 1465: $r->print('<span class="LC_error">'.&mt('No valid extension found in filename, FAIL').'</span>');
1.196 www 1466: return 0;
1467: }
1468: if ($target=~/\.(\d+)\.(\w+)$/) {
1.226 albertel 1469: $r->print('<span class="LC_error">'.&mt('Cannot publish versioned resource, FAIL').'</span>');
1.196 www 1470: return 0;
1471: }
1472: }
1.109 www 1473:
1.196 www 1474: #
1475: # End name check
1476: #
1.102 www 1477: $distarget=~s/\/+/\//g;
1.11 www 1478: my $logfile;
1479: unless ($logfile=Apache::File->new('>>'.$source.'.log')) {
1.110 www 1480: $r->print(
1.226 albertel 1481: '<span class="LC_error">'.
1482: &mt('No write permission to user directory, FAIL').'</span>');
1.110 www 1483: return 0;
1.11 www 1484: }
1.227 albertel 1485:
1486: if ($source =~ /\.rights$/) {
1487: $r->print('<p><span class="LC_warning">'.&mt('Warning: It can take up to 1 hour for rights changes to fully propagate.').'</span></p>');
1488: }
1489:
1.11 www 1490: print $logfile
1.211 albertel 1491: "\n================= Publish ".localtime()." Phase Two ================\n".$env{'user.name'}.':'.$env{'user.domain'}."\n";
1.100 matthew 1492:
1493: %metadatafields=();
1494: %metadatakeys=();
1.167 albertel 1495:
1.209 www 1496: &metaeval(&unescape($env{'form.allmeta'}));
1.100 matthew 1497:
1.192 albertel 1498: $metadatafields{'title'}=$env{'form.title'};
1499: $metadatafields{'author'}=$env{'form.author'};
1500: $metadatafields{'subject'}=$env{'form.subject'};
1501: $metadatafields{'notes'}=$env{'form.notes'};
1502: $metadatafields{'abstract'}=$env{'form.abstract'};
1503: $metadatafields{'mime'}=$env{'form.mime'};
1504: $metadatafields{'language'}=$env{'form.language'};
1505: $metadatafields{'creationdate'}=$env{'form.creationdate'};
1506: $metadatafields{'lastrevisiondate'}=$env{'form.lastrevisiondate'};
1507: $metadatafields{'owner'}=$env{'form.owner'};
1508: $metadatafields{'copyright'}=$env{'form.copyright'};
1509: $metadatafields{'standards'}=$env{'form.standards'};
1510: $metadatafields{'lowestgradelevel'}=$env{'form.lowestgradelevel'};
1511: $metadatafields{'highestgradelevel'}=$env{'form.highestgradelevel'};
1.115 www 1512: $metadatafields{'customdistributionfile'}=
1.192 albertel 1513: $env{'form.customdistributionfile'};
1514: $metadatafields{'sourceavail'}=$env{'form.sourceavail'};
1515: $metadatafields{'obsolete'}=$env{'form.obsolete'};
1.138 www 1516: $metadatafields{'obsoletereplacement'}=
1.192 albertel 1517: $env{'form.obsoletereplacement'};
1518: $metadatafields{'dependencies'}=$env{'form.dependencies'};
1.211 albertel 1519: $metadatafields{'modifyinguser'}=$env{'user.name'}.':'.
1.192 albertel 1520: $env{'user.domain'};
1.211 albertel 1521: $metadatafields{'authorspace'}=$cuname.':'.$cudom;
1.214 albertel 1522: $metadatafields{'domain'}=$cudom;
1.100 matthew 1523:
1.192 albertel 1524: my $allkeywords=$env{'form.addkey'};
1525: if (exists($env{'form.keywords'})) {
1526: if (ref($env{'form.keywords'})) {
1527: $allkeywords .= ','.join(',',@{$env{'form.keywords'}});
1.100 matthew 1528: } else {
1.192 albertel 1529: $allkeywords .= ','.$env{'form.keywords'};
1.100 matthew 1530: }
1531: }
1.168 www 1532: $allkeywords=~s/[\"\']//g;
1.170 www 1533: $allkeywords=~s/\s*[\;\,]\s*/\,/g;
1.168 www 1534: $allkeywords=~s/\s+/ /g;
1535: $allkeywords=~s/^[ \,]//;
1536: $allkeywords=~s/[ \,]$//;
1.100 matthew 1537: $metadatafields{'keywords'}=$allkeywords;
1538:
1.149 www 1539: # check if custom distribution file is specified
1540: if ($metadatafields{'copyright'} eq 'custom') {
1541: my $file=$metadatafields{'customdistributionfile'};
1542: unless ($file=~/\.rights$/) {
1.197 www 1543: $r->print(
1.226 albertel 1544: '<span class="LC_error">'.&mt('No valid custom distribution rights file specified, FAIL').
1545: '</span>');
1.197 www 1546: return 0;
1.149 www 1547: }
1548: }
1.100 matthew 1549: {
1550: print $logfile "\nWrite metadata file for ".$source;
1551: my $mfh;
1552: unless ($mfh=Apache::File->new('>'.$source.'.meta')) {
1.197 www 1553: $r->print(
1.226 albertel 1554: '<span class="LC_error">'.&mt('Could not write metadata, FAIL').
1555: '</span>');
1.197 www 1556: return 0;
1.100 matthew 1557: }
1558: foreach (sort keys %metadatafields) {
1559: unless ($_=~/\./) {
1560: my $unikey=$_;
1561: $unikey=~/^([A-Za-z]+)/;
1562: my $tag=$1;
1563: $tag=~tr/A-Z/a-z/;
1564: print $mfh "\n\<$tag";
1565: foreach (split(/\,/,$metadatakeys{$unikey})) {
1566: my $value=$metadatafields{$unikey.'.'.$_};
1567: $value=~s/\"/\'\'/g;
1568: print $mfh ' '.$_.'="'.$value.'"';
1569: }
1570: print $mfh '>'.
1.165 albertel 1571: &HTML::Entities::encode($metadatafields{$unikey},'<>&"')
1.100 matthew 1572: .'</'.$tag.'>';
1573: }
1574: }
1.136 www 1575: $r->print('<p>'.&mt('Wrote Metadata').'</p>');
1.100 matthew 1576: print $logfile "\nWrote metadata";
1577: }
1578:
1579: # -------------------------------- Synchronize entry with SQL metadata database
1.12 www 1580:
1.89 matthew 1581: $metadatafields{'url'} = $distarget;
1582: $metadatafields{'version'} = 'current';
1.152 www 1583:
1584: my ($error,$success) = &store_metadata(%metadatafields);
1585: if ($success) {
1586: $r->print('<p>'.&mt('Synchronized SQL metadata database').'</p>');
1587: print $logfile "\nSynchronized SQL metadata database";
1.89 matthew 1588: } else {
1.152 www 1589: $r->print($error);
1590: print $logfile "\n".$error;
1.24 harris41 1591: }
1.159 www 1592: # --------------------------------------------- Delete author resource messages
1593: my $delresult=&Apache::lonmsg::del_url_author_res_msg($target);
1594: $r->print('<p>'.&mt('Removing error messages:').' '.$delresult.'</p>');
1595: print $logfile "\nRemoving error messages: $delresult";
1.12 www 1596: # ----------------------------------------------------------- Copy old versions
1597:
1.100 matthew 1598: if (-e $target) {
1599: my $filename;
1600: my $maxversion=0;
1601: $target=~/(.*)\/([^\/]+)\.(\w+)$/;
1602: my $srcf=$2;
1603: my $srct=$3;
1604: my $srcd=$1;
1605: unless ($srcd=~/^\/home\/httpd\/html\/res/) {
1606: print $logfile "\nPANIC: Target dir is ".$srcd;
1.197 www 1607: $r->print(
1.239 bisitz 1608: "<span class=\"LC_error\">".&mt('Invalid target directory, FAIL')."</span>");
1.197 www 1609: return 0;
1.100 matthew 1610: }
1611: opendir(DIR,$srcd);
1612: while ($filename=readdir(DIR)) {
1613: if (-l $srcd.'/'.$filename) {
1614: unlink($srcd.'/'.$filename);
1615: unlink($srcd.'/'.$filename.'.meta');
1616: } else {
1.118 albertel 1617: if ($filename=~/\Q$srcf\E\.(\d+)\.\Q$srct\E$/) {
1.100 matthew 1618: $maxversion=($1>$maxversion)?$1:$maxversion;
1619: }
1620: }
1621: }
1622: closedir(DIR);
1623: $maxversion++;
1.120 albertel 1624: $r->print('<p>Creating old version '.$maxversion.'</p>');
1.125 www 1625: print $logfile "\nCreating old version ".$maxversion."\n";
1.100 matthew 1626:
1627: my $copyfile=$srcd.'/'.$srcf.'.'.$maxversion.'.'.$srct;
1628:
1.13 www 1629: if (copy($target,$copyfile)) {
1.12 www 1630: print $logfile "Copied old target to ".$copyfile."\n";
1.136 www 1631: $r->print('<p>'.&mt('Copied old target file').'</p>');
1.12 www 1632: } else {
1.13 www 1633: print $logfile "Unable to write ".$copyfile.':'.$!."\n";
1.226 albertel 1634: $r->print("<span class=\"LC_error\">".&mt('Failed to copy old target').
1635: ", $!, ".&mt('FAIL')."</span>");
1.197 www 1636: return 0;
1.12 www 1637: }
1.100 matthew 1638:
1.12 www 1639: # --------------------------------------------------------------- Copy Metadata
1640:
1641: $copyfile=$copyfile.'.meta';
1.100 matthew 1642:
1.13 www 1643: if (copy($target.'.meta',$copyfile)) {
1.14 www 1644: print $logfile "Copied old target metadata to ".$copyfile."\n";
1.136 www 1645: $r->print('<p>'.&mt('Copied old metadata').'</p>')
1.12 www 1646: } else {
1.13 www 1647: print $logfile "Unable to write metadata ".$copyfile.':'.$!."\n";
1.14 www 1648: if (-e $target.'.meta') {
1.197 www 1649: $r->print(
1.226 albertel 1650: "<span class=\"LC_error\">".
1651: &mt('Failed to write old metadata copy').", $!, ".&mt('FAIL')."</span>");
1.197 www 1652: return 0;
1.14 www 1653: }
1.12 www 1654: }
1.100 matthew 1655:
1656:
1657: } else {
1.138 www 1658: $r->print('<p>'.&mt('Initial version').'</p>');
1.100 matthew 1659: print $logfile "\nInitial version";
1660: }
1.12 www 1661:
1662: # ---------------------------------------------------------------- Write Source
1.100 matthew 1663: my $copyfile=$target;
1664:
1665: my @parts=split(/\//,$copyfile);
1666: my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
1667:
1668: my $count;
1669: for ($count=5;$count<$#parts;$count++) {
1670: $path.="/$parts[$count]";
1671: if ((-e $path)!=1) {
1672: print $logfile "\nCreating directory ".$path;
1.136 www 1673: $r->print('<p>'.&mt('Created directory').' '.$parts[$count].'</p>');
1.100 matthew 1674: mkdir($path,0777);
1.12 www 1675: }
1.100 matthew 1676: }
1677:
1678: if (copy($source,$copyfile)) {
1679: print $logfile "\nCopied original source to ".$copyfile."\n";
1.136 www 1680: $r->print('<p>'.&mt('Copied source file').'</p>');
1.100 matthew 1681: } else {
1682: print $logfile "\nUnable to write ".$copyfile.':'.$!."\n";
1.226 albertel 1683: $r->print("<span class=\"LC_error\">".
1684: &mt('Failed to copy source').", $!, ".&mt('FAIL')."</span>");
1.197 www 1685: return 0;
1.100 matthew 1686: }
1687:
1.12 www 1688: # --------------------------------------------------------------- Copy Metadata
1689:
1.100 matthew 1690: $copyfile=$copyfile.'.meta';
1691:
1692: if (copy($source.'.meta',$copyfile)) {
1693: print $logfile "\nCopied original metadata to ".$copyfile."\n";
1.136 www 1694: $r->print('<p>'.&mt('Copied metadata').'</p>');
1.100 matthew 1695: } else {
1696: print $logfile "\nUnable to write metadata ".$copyfile.':'.$!."\n";
1.197 www 1697: $r->print(
1.226 albertel 1698: "<span class=\"LC_error\">".&mt('Failed to write metadata copy').", $!, ".&mt('FAIL')."</span>");
1.197 www 1699: return 0;
1.100 matthew 1700: }
1701: $r->rflush;
1.12 www 1702:
1.181 www 1703: # ------------------------------------------------------------- Trigger updates
1.183 www 1704: push(@{$modified_urls},[$target,$source]);
1.182 www 1705: unless ($registered_cleanup) {
1706: $r->register_cleanup(\¬ify);
1707: $registered_cleanup=1;
1708: }
1.199 www 1709:
1710: # ---------------------------------------------------------- Clear local caches
1711: my $thisdistarget=$target;
1712: $thisdistarget=~s/^\Q$docroot\E//;
1713: &Apache::lonnet::devalidate_cache_new('resversion',$target);
1714: &Apache::lonnet::devalidate_cache_new('meta',
1715: &Apache::lonnet::declutter($thisdistarget));
1716:
1.12 www 1717: # ------------------------------------------------ Provide link to new resource
1.100 matthew 1718: unless ($batch) {
1719:
1720: my $thissrc=$source;
1.215 albertel 1721: $thissrc=~s{^/home/($match_username)/public_html}{/priv/$1};
1.100 matthew 1722:
1723: my $thissrcdir=$thissrc;
1724: $thissrcdir=~s/\/[^\/]+$/\//;
1725:
1726:
1727: $r->print(
1.120 albertel 1728: '<hr /><a href="'.$thisdistarget.'"><font size="+2">'.
1.138 www 1729: &mt('View Published Version').'</font></a>'.
1.238 bisitz 1730: '<p><a href="'.$thissrc.'"><font size="+2">'.
1.138 www 1731: &mt('Back to Source').'</font></a></p>'.
1.100 matthew 1732: '<p><a href="'.$thissrcdir.
1.138 www 1733: '"><font size="+2">'.
1734: &mt('Back to Source Directory').'</font></a></p>');
1.100 matthew 1735: }
1.181 www 1736: $logfile->close();
1.197 www 1737: $r->print('<p><font color="green">'.&mt('Done').'</font></p>');
1738: return 1;
1.11 www 1739: }
1740:
1.181 www 1741: # =============================================================== Notifications
1742: sub notify {
1743: # --------------------------------------------------- Send update notifications
1.183 www 1744: foreach my $targetsource (@{$modified_urls}){
1.182 www 1745: my ($target,$source)=@{$targetsource};
1746: my $logfile=Apache::File->new('>>'.$source.'.log');
1747: print $logfile "\nCleanup phase: Notifications\n";
1748: my @subscribed=&get_subscribed_hosts($target);
1749: foreach my $subhost (@subscribed) {
1750: print $logfile "\nNotifying host ".$subhost.':';
1751: my $reply=&Apache::lonnet::critical('update:'.$target,$subhost);
1752: print $logfile $reply;
1753: }
1.181 www 1754: # ---------------------------------------- Send update notifications, meta only
1.182 www 1755: my @subscribedmeta=&get_subscribed_hosts("$target.meta");
1756: foreach my $subhost (@subscribedmeta) {
1757: print $logfile "\nNotifying host for metadata only ".$subhost.':';
1758: my $reply=&Apache::lonnet::critical('update:'.$target.'.meta',
1759: $subhost);
1760: print $logfile $reply;
1761: }
1.181 www 1762: # --------------------------------------------------- Notify subscribed courses
1.182 www 1763: my %courses=&coursedependencies($target);
1764: my $now=time;
1765: foreach (keys %courses) {
1766: print $logfile "\nNotifying course ".$_.':';
1767: my ($cdom,$cname)=split(/\_/,$_);
1768: my $reply=&Apache::lonnet::cput
1769: ('versionupdate',{$target => $now},$cdom,$cname);
1770: print $logfile $reply;
1771: }
1772: print $logfile "\n============ Done ============\n";
1773: $logfile->close();
1.181 www 1774: }
1.233 www 1775: if ($lock) { &Apache::lonnet::remove_lock($lock); }
1.182 www 1776: return OK;
1.181 www 1777: }
1778:
1.95 www 1779: #########################################
1780:
1781: sub batchpublish {
1.97 www 1782: my ($r,$srcfile,$targetfile)=@_;
1.192 albertel 1783: #publication pollutes %env with form.* values
1784: my %oldenv=%env;
1.102 www 1785: $srcfile=~s/\/+/\//g;
1786: $targetfile=~s/\/+/\//g;
1.95 www 1787: my $thisdisfn=$srcfile;
1788: $thisdisfn=~s/\/home\/korte\/public_html\///;
1789: $srcfile=~s/\/+/\//g;
1.96 www 1790:
1.97 www 1791: my $docroot=$r->dir_config('lonDocRoot');
1792: my $thisdistarget=$targetfile;
1.122 albertel 1793: $thisdistarget=~s/^\Q$docroot\E//;
1.97 www 1794:
1.96 www 1795:
1.139 albertel 1796: %metadatafields=();
1797: %metadatakeys=();
1798: $srcfile=~/\.(\w+)$/;
1799: my $thistype=$1;
1.97 www 1800:
1801:
1.139 albertel 1802: my $thisembstyle=&Apache::loncommon::fileembstyle($thistype);
1.96 www 1803:
1.138 www 1804: $r->print('<h2>'.&mt('Publishing').' <tt>'.$thisdisfn.'</tt></h2>');
1.97 www 1805:
1806: # phase one takes
1807: # my ($source,$target,$style,$batch)=@_;
1.113 albertel 1808: my ($outstring,$error)=&publish($srcfile,$targetfile,$thisembstyle,1);
1809: $r->print('<p>'.$outstring.'</p>');
1.96 www 1810: # phase two takes
1811: # my ($source,$target,$style,$distarget,batch)=@_;
1.192 albertel 1812: # $env{'form.allmeta'},$env{'form.title'},$env{'form.author'},...
1.113 albertel 1813: if (!$error) {
1814: $r->print('<p>');
1815: &phasetwo($r,$srcfile,$targetfile,$thisembstyle,$thisdistarget,1);
1816: $r->print('</p>');
1817: }
1.192 albertel 1818: %env=%oldenv;
1.97 www 1819: return '';
1.95 www 1820: }
1.1 www 1821:
1.90 matthew 1822: #########################################
1.95 www 1823:
1824: sub publishdirectory {
1825: my ($r,$fn,$thisdisfn)=@_;
1.102 www 1826: $fn=~s/\/+/\//g;
1827: $thisdisfn=~s/\/+/\//g;
1.96 www 1828: my $resdir=
1.139 albertel 1829: $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cudom.'/'.$cuname.'/'.
1830: $thisdisfn;
1.156 www 1831: $r->print('<h1>'.&mt('Directory').' <tt>'.$thisdisfn.'</tt></h1>'.
1832: &mt('Target').': <tt>'.$resdir.'</tt><br />');
1.139 albertel 1833:
1834: my $dirptr=16384; # Mask indicating a directory in stat.cmode.
1.193 www 1835: unless ($env{'form.phase'} eq 'two') {
1836: # ask user what they want
1837: $r->print('<form name="pubdirpref" method="post">'.
1838: &hiddenfield('phase','two').
1839: &hiddenfield('filename',$env{'form.filename'}).
1840: &checkbox('pubrec','include subdirectories').
1.194 www 1841: &checkbox('forcerepub','force republication of previously published files').
1.206 albertel 1842: &checkbox('obsolete','make file(s) obsolete').
1.195 www 1843: &checkbox('forceoverride','force directory level catalog information over existing').
1844: '<br /><input type="submit" value="'.&mt('Publish Directory').'" /></form>');
1.233 www 1845: $lock=0;
1.193 www 1846: } else {
1.234 www 1847: unless ($lock) { $lock=&Apache::lonnet::set_lock(&mt('Publishing [_1]',$fn)); }
1.193 www 1848: # actually publish things
1849: opendir(DIR,$fn);
1850: my @files=sort(readdir(DIR));
1851: foreach my $filename (@files) {
1852: my ($cdev,$cino,$cmode,$cnlink,
1853: $cuid,$cgid,$crdev,$csize,
1854: $catime,$cmtime,$cctime,
1855: $cblksize,$cblocks)=stat($fn.'/'.$filename);
1856:
1857: my $extension='';
1858: if ($filename=~/\.(\w+)$/) { $extension=$1; }
1859: if ($cmode&$dirptr) {
1860: if (($filename!~/^\./) && ($env{'form.pubrec'})) {
1861: &publishdirectory($r,$fn.'/'.$filename,$thisdisfn.'/'.$filename);
1862: }
1863: } elsif ((&Apache::loncommon::fileembstyle($extension) ne 'hdn') &&
1864: ($filename!~/^[\#\.]/) && ($filename!~/\~$/)) {
1.96 www 1865: # find out publication status and/or exiting metadata
1.193 www 1866: my $publishthis=0;
1867: if (-e $resdir.'/'.$filename) {
1868: my ($rdev,$rino,$rmode,$rnlink,
1869: $ruid,$rgid,$rrdev,$rsize,
1870: $ratime,$rmtime,$rctime,
1871: $rblksize,$rblocks)=stat($resdir.'/'.$filename);
1872: if (($rmtime<$cmtime) || ($env{'form.forcerepub'})) {
1.96 www 1873: # previously published, modified now
1.193 www 1874: $publishthis=1;
1875: }
1.212 albertel 1876: my $meta_cmtime = (stat($fn.'/'.$filename.'.meta'))[9];
1877: my $meta_rmtime = (stat($resdir.'/'.$filename.'.meta'))[9];
1878: if ( $meta_rmtime<$meta_cmtime ) {
1879: $publishthis=1;
1880: }
1.193 www 1881: } else {
1882: # never published
1.96 www 1883: $publishthis=1;
1.193 www 1884: }
1.212 albertel 1885:
1.193 www 1886: if ($publishthis) {
1887: &batchpublish($r,$fn.'/'.$filename,$resdir.'/'.$filename);
1888: } else {
1889: $r->print('<br />'.&mt('Skipping').' '.$filename.'<br />');
1890: }
1891: $r->rflush();
1.139 albertel 1892: }
1893: }
1.193 www 1894: closedir(DIR);
1.139 albertel 1895: }
1.95 www 1896: }
1.160 www 1897:
1898: #########################################
1899: # publish a default.meta file
1900:
1901: sub defaultmetapublish {
1902: my ($r,$fn,$cuname,$cudom)=@_;
1903: $fn=~s/^\/\~$cuname\//\/home\/$cuname\/public_html\//;
1904: unless (-e $fn) {
1905: return HTTP_NOT_FOUND;
1906: }
1907: my $target=$fn;
1908: $target=~s/^\/home\/$cuname\/public_html\//$Apache::lonnet::perlvar{'lonDocRoot'}\/res\/$cudom\/$cuname\//;
1909:
1910:
1911: &Apache::loncommon::content_type($r,'text/html');
1912: $r->send_http_header;
1913:
1.208 albertel 1914: $r->print(&Apache::loncommon::start_page('Catalog Information Publication'));
1.160 www 1915:
1916: # ---------------------------------------------------------------- Write Source
1917: my $copyfile=$target;
1918:
1919: my @parts=split(/\//,$copyfile);
1920: my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
1921:
1922: my $count;
1923: for ($count=5;$count<$#parts;$count++) {
1924: $path.="/$parts[$count]";
1925: if ((-e $path)!=1) {
1926: $r->print('<p>'.&mt('Created directory').' '.$parts[$count].'</p>');
1927: mkdir($path,0777);
1928: }
1929: }
1930:
1931: if (copy($fn,$copyfile)) {
1932: $r->print('<p>'.&mt('Copied source file').'</p>');
1933: } else {
1.226 albertel 1934: return "<span class=\"LC_error\">".
1935: &mt('Failed to copy source').", $!, ".&mt('FAIL')."</span>";
1.160 www 1936: }
1937:
1938: # --------------------------------------------------- Send update notifications
1939:
1940: my @subscribed=&get_subscribed_hosts($target);
1941: foreach my $subhost (@subscribed) {
1942: $r->print('<p>'.&mt('Notifying host').' '.$subhost.':');$r->rflush;
1943: my $reply=&Apache::lonnet::critical('update:'.$target,$subhost);
1944: $r->print($reply.'</p><br />');$r->rflush;
1945: }
1946: # ------------------------------------------------------------------- Link back
1947: my $link=$fn;
1948: $link=~s/^\/home\/$cuname\/public_html\//\/priv\/$cuname\//;
1949: $r->print("<a href='$link'>".&mt('Back to Catalog Information').'</a>');
1.208 albertel 1950: $r->print(&Apache::loncommon::end_page());
1.160 www 1951: return OK;
1952: }
1.90 matthew 1953: #########################################
1954:
1955: =pod
1956:
1.94 harris41 1957: =item B<handler>
1.90 matthew 1958:
1959: A basic outline of the handler subroutine follows.
1960:
1961: =over 4
1962:
1.94 harris41 1963: =item *
1964:
1965: Get query string for limited number of parameters.
1966:
1967: =item *
1968:
1969: Check filename.
1970:
1971: =item *
1972:
1973: File is there and owned, init lookup tables.
1974:
1975: =item *
1.90 matthew 1976:
1.94 harris41 1977: Start page output.
1.90 matthew 1978:
1.94 harris41 1979: =item *
1.90 matthew 1980:
1.94 harris41 1981: Evaluate individual file, and then output information.
1.90 matthew 1982:
1.94 harris41 1983: =item *
1.90 matthew 1984:
1.94 harris41 1985: Publishing from $thisfn to $thistarget with $thisembstyle.
1.90 matthew 1986:
1987: =back
1988:
1989: =cut
1990:
1991: #########################################
1992: #########################################
1.1 www 1993: sub handler {
1.139 albertel 1994: my $r=shift;
1.2 www 1995:
1.139 albertel 1996: if ($r->header_only) {
1997: &Apache::loncommon::content_type($r,'text/html');
1998: $r->send_http_header;
1999: return OK;
2000: }
1.2 www 2001:
1.43 www 2002: # Get query string for limited number of parameters
2003:
1.80 matthew 2004: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
2005: ['filename']);
1.43 www 2006:
1.183 www 2007: # -------------------------------------- Flag and buffer for registered cleanup
1.182 www 2008: $registered_cleanup=0;
1.183 www 2009: @{$modified_urls}=();
1.2 www 2010: # -------------------------------------------------------------- Check filename
2011:
1.209 www 2012: my $fn=&unescape($env{'form.filename'});
1.160 www 2013:
2014: ($cuname,$cudom)=
2015: &Apache::loncacc::constructaccess($fn,$r->dir_config('lonDefDomain'));
2016:
2017: # special publication: default.meta file
2018: if ($fn=~/\/default.meta$/) {
2019: return &defaultmetapublish($r,$fn,$cuname,$cudom);
2020: }
1.159 www 2021: $fn=~s/\.meta$//;
1.27 www 2022:
1.139 albertel 2023: unless ($fn) {
2024: $r->log_reason($cuname.' at '.$cudom.
2025: ' trying to publish empty filename', $r->filename);
2026: return HTTP_NOT_FOUND;
2027: }
2028:
2029: unless (($cuname) && ($cudom)) {
2030: $r->log_reason($cuname.' at '.$cudom.
1.192 albertel 2031: ' trying to publish file '.$env{'form.filename'}.
1.139 albertel 2032: ' ('.$fn.') - not authorized',
2033: $r->filename);
2034: return HTTP_NOT_ACCEPTABLE;
2035: }
2036:
1.163 albertel 2037: my $home=&Apache::lonnet::homeserver($cuname,$cudom);
2038: my $allowed=0;
2039: my @ids=&Apache::lonnet::current_machine_ids();
2040: foreach my $id (@ids) { if ($id eq $home) { $allowed = 1; } }
2041: unless ($allowed) {
1.139 albertel 2042: $r->log_reason($cuname.' at '.$cudom.
1.192 albertel 2043: ' trying to publish file '.$env{'form.filename'}.
1.163 albertel 2044: ' ('.$fn.') - not homeserver ('.$home.')',
1.139 albertel 2045: $r->filename);
2046: return HTTP_NOT_ACCEPTABLE;
2047: }
2048:
1.215 albertel 2049: $fn=~s{^http://[^/]+}{};
2050: $fn=~s{^/~($match_username)}{/home/$1/public_html};
1.139 albertel 2051:
2052: my $targetdir='';
2053: $docroot=$r->dir_config('lonDocRoot');
2054: if ($1 ne $cuname) {
2055: $r->log_reason($cuname.' at '.$cudom.
2056: ' trying to publish unowned file '.
1.192 albertel 2057: $env{'form.filename'}.' ('.$fn.')',
1.139 albertel 2058: $r->filename);
2059: return HTTP_NOT_ACCEPTABLE;
2060: } else {
2061: $targetdir=$docroot.'/res/'.$cudom;
2062: }
1.2 www 2063:
2064:
1.139 albertel 2065: unless (-e $fn) {
2066: $r->log_reason($cuname.' at '.$cudom.
2067: ' trying to publish non-existing file '.
1.192 albertel 2068: $env{'form.filename'}.' ('.$fn.')',
1.139 albertel 2069: $r->filename);
2070: return HTTP_NOT_FOUND;
2071: }
1.2 www 2072:
1.94 harris41 2073: # -------------------------------- File is there and owned, init lookup tables.
1.2 www 2074:
1.205 albertel 2075: %addid=();
2076:
2077: {
2078: my $fh=Apache::File->new($r->dir_config('lonTabDir').'/addid.tab');
2079: while (<$fh>=~/(\w+)\s+(\w+)/) {
2080: $addid{$1}=$2;
1.139 albertel 2081: }
1.205 albertel 2082: }
1.3 www 2083:
1.205 albertel 2084: %nokey=();
1.11 www 2085:
1.205 albertel 2086: {
2087: my $fh=Apache::File->new($r->dir_config('lonIncludes').'/un_keyword.tab');
2088: while (<$fh>) {
2089: my $word=$_;
2090: chomp($word);
2091: $nokey{$word}=1;
1.139 albertel 2092: }
2093: }
1.11 www 2094:
1.94 harris41 2095: # ---------------------------------------------------------- Start page output.
1.2 www 2096:
1.139 albertel 2097: &Apache::loncommon::content_type($r,'text/html');
2098: $r->send_http_header;
1.180 albertel 2099:
1.208 albertel 2100: my $js='<script type="text/javascript">'.
2101: &Apache::loncommon::browser_and_searcher_javascript().
2102: '</script>';
1.210 albertel 2103: $r->print(&Apache::loncommon::start_page('Resource Publication',$js));
1.101 www 2104:
2105:
1.139 albertel 2106: my $thisfn=$fn;
1.95 www 2107:
1.139 albertel 2108: my $thistarget=$thisfn;
1.95 www 2109:
1.139 albertel 2110: $thistarget=~s/^\/home/$targetdir/;
2111: $thistarget=~s/\/public\_html//;
1.95 www 2112:
1.139 albertel 2113: my $thisdistarget=$thistarget;
2114: $thisdistarget=~s/^\Q$docroot\E//;
1.95 www 2115:
1.139 albertel 2116: my $thisdisfn=$thisfn;
2117: $thisdisfn=~s/^\/home\/\Q$cuname\E\/public_html\///;
1.95 www 2118:
1.139 albertel 2119: if ($fn=~/\/$/) {
1.95 www 2120: # -------------------------------------------------------- This is a directory
1.139 albertel 2121: &publishdirectory($r,$fn,$thisdisfn);
1.193 www 2122: $r->print('<hr /><a href="/priv/'
1.139 albertel 2123: .$cuname.'/'.$thisdisfn
2124: .'">'.&mt('Return to Directory').'</a>');
1.128 www 2125:
1.95 www 2126:
1.139 albertel 2127: } else {
1.94 harris41 2128: # ---------------------- Evaluate individual file, and then output information.
1.139 albertel 2129: $thisfn=~/\.(\w+)$/;
2130: my $thistype=$1;
2131: my $thisembstyle=&Apache::loncommon::fileembstyle($thistype);
1.200 raeburn 2132: if ($thistype eq 'page') { $thisembstyle = 'rat'; }
1.2 www 2133:
1.239 bisitz 2134: $r->print('<h2>'.&mt('Publishing [_1]','<tt>'.$thisdisfn.'</tt>').'</h2>');
2135:
2136: $r->print('<h3>'.&mt('Resource Details').'</h3>');
2137:
2138: $r->print(&Apache::lonhtmlcommon::start_pick_box());
2139:
2140: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Type'))
2141: .&Apache::loncommon::filedescription($thistype)
2142: .&Apache::lonhtmlcommon::row_closure()
2143: );
2144:
2145: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Link to Resource'))
2146: .'<tt>'
2147: );
1.139 albertel 2148: $r->print(<<ENDCAPTION);
1.129 www 2149: <a href='javascript:void(window.open("/~$cuname/$thisdisfn","cat","height=300,width=500,scrollbars=1,resizable=1,menubar=0,location=1"))'>
2150: $thisdisfn</a>
2151: ENDCAPTION
1.239 bisitz 2152: $r->print('</tt>'
2153: .&Apache::lonhtmlcommon::row_closure()
2154: );
2155:
2156: $r->print(&Apache::lonhtmlcommon::row_title(&mt('Target'))
2157: .'<tt>'.$thisdistarget.'</tt>'
2158: );
2159: # SB - ToDo:
1.192 albertel 2160: if (($cuname ne $env{'user.name'})||($cudom ne $env{'user.domain'})) {
1.239 bisitz 2161: # $r->print(&Apache::lonhtmlcommon::row_title('<span class="LC_warning">'.&mt('Co-Author').'</span>')
1.240 raeburn 2162: $r->print(&Apache::lonhtmlcommon::row_closure()
2163: .&Apache::lonhtmlcommon::row_title(&mt('Co-Author'))
1.239 bisitz 2164: .'<span class="LC_warning">'
2165: .&mt('[_1] at [_2]',$cuname,$cudom)
2166: .'</span>'
2167: );
1.139 albertel 2168: }
1.26 www 2169:
1.139 albertel 2170: if (&Apache::loncommon::fileembstyle($thistype) eq 'ssi') {
1.240 raeburn 2171: $r->print(&Apache::lonhtmlcommon::row_closure()
2172: .&Apache::lonhtmlcommon::row_title(&mt('Diffs')));
1.139 albertel 2173: $r->print(<<ENDDIFF);
1.136 www 2174: <a href='javascript:void(window.open("/adm/diff?filename=/~$cuname/$thisdisfn&versiontwo=priv","cat","height=300,width=500,scrollbars=1,resizable=1,menubar=0,location=1"))'>
1.129 www 2175: ENDDIFF
1.240 raeburn 2176: $r->print(&mt('Diffs with Current Version').'</a>');
1.139 albertel 2177: }
1.240 raeburn 2178:
2179: $r->print(&Apache::lonhtmlcommon::row_closure(1)
2180: .&Apache::lonhtmlcommon::end_pick_box()
2181: );
1.11 www 2182:
1.94 harris41 2183: # ------------------ Publishing from $thisfn to $thistarget with $thisembstyle.
1.2 www 2184:
1.192 albertel 2185: unless ($env{'form.phase'} eq 'two') {
1.185 www 2186: # ---------------------------------------------------------- Parse for problems
1.189 albertel 2187: my ($warningcount,$errorcount);
2188: if ($thisembstyle eq 'ssi') {
2189: ($warningcount,$errorcount)=&checkonthis($r,$thisfn);
2190: }
2191: unless ($errorcount) {
1.187 www 2192: my ($outstring,$error)=
2193: &publish($thisfn,$thistarget,$thisembstyle);
2194: $r->print('<hr />'.$outstring);
2195: } else {
1.239 bisitz 2196: $r->print('<h3 class="LC_error">'.
1.189 albertel 2197: &mt('The document contains errors and cannot be published.').
1.187 www 2198: '</h3>');
2199: }
1.139 albertel 2200: } else {
1.197 www 2201: &phasetwo($r,$thisfn,$thistarget,$thisembstyle,$thisdistarget);
2202: $r->print('<hr />');
1.139 albertel 2203: }
2204: }
1.208 albertel 2205: $r->print(&Apache::loncommon::end_page());
1.15 www 2206:
1.139 albertel 2207: return OK;
1.1 www 2208: }
2209:
2210: 1;
2211: __END__
2212:
1.89 matthew 2213: =pod
1.126 bowersj2 2214:
2215: =back
1.66 harris41 2216:
2217: =back
2218:
1.89 matthew 2219: =cut
1.66 harris41 2220:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>