Annotation of loncom/interface/lonhelper.pm, revision 1.186
1.1 bowersj2 1: # The LearningOnline Network with CAPA
2: # .helper XML handler to implement the LON-CAPA helper
3: #
1.186 ! www 4: # $Id: lonhelper.pm,v 1.185 2011/10/31 01:20:05 raeburn Exp $
1.1 bowersj2 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: #
28:
1.3 bowersj2 29: =pod
30:
1.44 bowersj2 31: =head1 NAME
1.3 bowersj2 32:
1.44 bowersj2 33: lonhelper - implements helper framework
34:
35: =head1 SYNOPSIS
36:
37: lonhelper implements the helper framework for LON-CAPA, and provides
38: many generally useful components for that framework.
39:
40: Helpers are little programs which present the user with a sequence of
41: simple choices, instead of one monolithic multi-dimensional
42: choice. They are also referred to as "wizards", "druids", and
43: other potentially trademarked or semantically-loaded words.
44:
45: =head1 OVERVIEWX<lonhelper>
46:
47: Helpers are well-established UI widgets that users
1.3 bowersj2 48: feel comfortable with. It can take a complicated multidimensional problem the
49: user has and turn it into a series of bite-sized one-dimensional questions.
50:
51: For developers, helpers provide an easy way to bundle little bits of functionality
52: for the user, without having to write the tedious state-maintenence code.
53:
54: Helpers are defined as XML documents, placed in the /home/httpd/html/adm/helpers
55: directory and having the .helper file extension. For examples, see that directory.
56:
57: All classes are in the Apache::lonhelper namespace.
58:
1.44 bowersj2 59: =head1 lonhelper XML file formatX<lonhelper, XML file format>
1.3 bowersj2 60:
61: A helper consists of a top-level <helper> tag which contains a series of states.
62: Each state contains one or more state elements, which are what the user sees, like
63: messages, resource selections, or date queries.
64:
65: The helper tag is required to have one attribute, "title", which is the name
1.31 bowersj2 66: of the helper itself, such as "Parameter helper". The helper tag may optionally
67: have a "requiredpriv" attribute, specifying the priviledge a user must have
68: to use the helper, or get denied access. See loncom/auth/rolesplain.tab for
69: useful privs. Default is full access, which is often wrong!
1.3 bowersj2 70:
71: =head2 State tags
72:
73: State tags are required to have an attribute "name", which is the symbolic
1.7 bowersj2 74: name of the state and will not be directly seen by the user. The helper is
75: required to have one state named "START", which is the state the helper
1.5 bowersj2 76: will start with. By convention, this state should clearly describe what
1.3 bowersj2 77: the helper will do for the user, and may also include the first information
78: entry the user needs to do for the helper.
79:
80: State tags are also required to have an attribute "title", which is the
81: human name of the state, and will be displayed as the header on top of
82: the screen for the user.
83:
1.160 albertel 84: State tags may also optionally have an attribute "help" which should be
85: the filename of a help file, this will add a blue ? to the title.
86:
1.3 bowersj2 87: =head2 Example Helper Skeleton
88:
89: An example of the tags so far:
90:
91: <helper title="Example Helper">
92: <state name="START" title="Demonstrating the Example Helper">
1.160 albertel 93: <!-- notice this is the START state the helper requires -->
1.3 bowersj2 94: </state>
95: <state name="GET_NAME" title="Enter Student Name">
96: </state>
97: </helper>
98:
1.160 albertel 99: Of course this does nothing. In order for the helper to do something, it is
100: necessary to put actual elements into the helper. Documentation for each
1.3 bowersj2 101: of these elements follows.
102:
1.44 bowersj2 103: =head1 Creating a Helper With Code, Not XML
1.13 bowersj2 104:
1.160 albertel 105: In some situations, such as the printing helper (see lonprintout.pm),
1.13 bowersj2 106: writing the helper in XML would be too complicated, because of scope
107: issues or the fact that the code actually outweighs the XML. It is
108: possible to create a helper via code, though it is a little odd.
109:
110: Creating a helper via code is more like issuing commands to create
111: a helper then normal code writing. For instance, elements will automatically
112: be added to the last state created, so it's important to create the
113: states in the correct order.
114:
115: First, create a new helper:
116:
117: use Apache::lonhelper;
118:
119: my $helper = Apache::lonhelper::new->("Helper Title");
120:
121: Next you'll need to manually add states to the helper:
122:
123: Apache::lonhelper::state->new("STATE_NAME", "State's Human Title");
124:
125: You don't need to save a reference to it because all elements up until
126: the next state creation will automatically be added to this state.
127:
128: Elements are created by populating the $paramHash in
129: Apache::lonhelper::paramhash. To prevent namespace issues, retrieve
130: a reference to that has with getParamHash:
131:
132: my $paramHash = Apache::lonhelper::getParamHash();
133:
134: You will need to do this for each state you create.
135:
136: Populate the $paramHash with the parameters for the element you wish
137: to add next; the easiest way to find out what those entries are is
138: to read the code. Some common ones are 'variable' to record the variable
139: to store the results in, and NEXTSTATE to record a next state transition.
140:
141: Then create your element:
142:
143: $paramHash->{MESSAGETEXT} = "This is a message.";
144: Apache::lonhelper::message->new();
145:
146: The creation will take the $paramHash and bless it into a
147: Apache::lonhelper::message object. To create the next element, you need
148: to get a reference to the new, empty $paramHash:
149:
150: $paramHash = Apache::lonhelper::getParamHash();
151:
152: and you can repeat creating elements that way. You can add states
153: and elements as needed.
154:
155: See lonprintout.pm, subroutine printHelper for an example of this, where
156: we dynamically add some states to prevent security problems, for instance.
157:
158: Normally the machinery in the XML format is sufficient; dynamically
159: adding states can easily be done by wrapping the state in a <condition>
160: tag. This should only be used when the code dominates the XML content,
161: the code is so complicated that it is difficult to get access to
1.44 bowersj2 162: all of the information you need because of scoping issues, or would-be <exec> or
163: <eval> blocks using the {DATA} mechanism results in hard-to-read
164: and -maintain code. (See course.initialization.helper for a borderline
165: case.)
1.13 bowersj2 166:
167: It is possible to do some of the work with an XML fragment parsed by
1.17 bowersj2 168: lonxml; again, see lonprintout.pm for an example. In that case it is
169: imperative that you call B<Apache::lonhelper::registerHelperTags()>
170: before parsing XML fragments and B<Apache::lonhelper::unregisterHelperTags()>
171: when you are done. See lonprintout.pm for examples of this usage in the
172: printHelper subroutine.
1.13 bowersj2 173:
1.57 albertel 174: =head2 Localization
175:
176: The helper framework tries to handle as much localization as
177: possible. The text is always run through
178: Apache::lonlocal::normalize_string, so be sure to run the keys through
179: that function for maximum usefulness and robustness.
180:
1.3 bowersj2 181: =cut
182:
1.1 bowersj2 183: package Apache::lonhelper;
1.2 bowersj2 184: use Apache::Constants qw(:common);
185: use Apache::File;
1.3 bowersj2 186: use Apache::lonxml;
1.57 albertel 187: use Apache::lonlocal;
1.100 albertel 188: use Apache::lonnet;
1.151 raeburn 189: use Apache::longroup;
1.148 foxr 190: use Apache::lonselstudent;
1.171 foxr 191:
192:
1.152 www 193: use LONCAPA;
1.139 foxr 194:
1.7 bowersj2 195: # Register all the tags with the helper, so the helper can
196: # push and pop them
197:
198: my @helperTags;
199:
200: sub register {
201: my ($namespace, @tags) = @_;
202:
203: for my $tag (@tags) {
204: push @helperTags, [$namespace, $tag];
205: }
206: }
207:
1.2 bowersj2 208: BEGIN {
1.7 bowersj2 209: Apache::lonxml::register('Apache::lonhelper',
210: ('helper'));
211: register('Apache::lonhelper', ('state'));
1.2 bowersj2 212: }
213:
1.7 bowersj2 214: # Since all helpers are only three levels deep (helper tag, state tag,
1.3 bowersj2 215: # substate type), it's easier and more readble to explicitly track
216: # those three things directly, rather then futz with the tag stack
217: # every time.
218: my $helper;
219: my $state;
220: my $substate;
1.4 bowersj2 221: # To collect parameters, the contents of the subtags are collected
222: # into this paramHash, then passed to the element object when the
223: # end of the element tag is located.
224: my $paramHash;
1.2 bowersj2 225:
1.25 bowersj2 226: # Note from Jeremy 5-8-2003: It is *vital* that the real handler be called
227: # as a subroutine from the handler, or very mysterious things might happen.
228: # I don't know exactly why, but it seems that the scope where the Apache
229: # server enters the perl handler is treated differently from the rest of
230: # the handler. This also seems to manifest itself in the debugger as entering
231: # the perl handler in seemingly random places (sometimes it starts in the
232: # compiling phase, sometimes in the handler execution phase where it runs
233: # the code and stepping into the "1;" the module ends with goes into the handler,
234: # sometimes starting directly with the handler); I think the cause is related.
235: # In the debugger, this means that breakpoints are ignored until you step into
236: # a function and get out of what must be a "faked up scope" in the Apache->
237: # mod_perl connection. In this code, it was manifesting itself in the existence
1.65 www 238: # of two separate file-scoped $helper variables, one set to the value of the
1.25 bowersj2 239: # helper in the helper constructor, and one referenced by the handler on the
1.44 bowersj2 240: # "$helper->process()" line. Using the debugger, one could actually
241: # see the two different $helper variables, as hashes at completely
242: # different addresses. The second was therefore never set, and was still
1.25 bowersj2 243: # undefined when I tried to call process on it.
244: # By pushing the "real handler" down into the "real scope", everybody except the
245: # actual handler function directly below this comment gets the same $helper and
246: # everybody is happy.
247: # The upshot of all of this is that for safety when a handler is using
248: # file-scoped variables in LON-CAPA, the handler should be pushed down one
249: # call level, as I do here, to ensure that the top-level handler function does
250: # not get a different file scope from the rest of the code.
251: sub handler {
252: my $r = shift;
253: return real_handler($r);
254: }
255:
1.13 bowersj2 256: # For debugging purposes, one can send a second parameter into this
257: # function, the 'uri' of the helper you wish to have rendered, and
258: # call this from other handlers.
1.25 bowersj2 259: sub real_handler {
1.3 bowersj2 260: my $r = shift;
1.13 bowersj2 261: my $uri = shift;
262: if (!defined($uri)) { $uri = $r->uri(); }
1.100 albertel 263: $env{'request.uri'} = $uri;
1.13 bowersj2 264: my $filename = '/home/httpd/html' . $uri;
1.2 bowersj2 265: my $fh = Apache::File->new($filename);
266: my $file;
1.3 bowersj2 267: read $fh, $file, 100000000;
268:
1.27 bowersj2 269:
1.3 bowersj2 270: # Send header, don't cache this page
1.100 albertel 271: if ($env{'browser.mathml'}) {
1.70 sakharuk 272: &Apache::loncommon::content_type($r,'text/xml');
273: } else {
274: &Apache::loncommon::content_type($r,'text/html');
275: }
276: $r->send_http_header;
277: return OK if $r->header_only;
1.3 bowersj2 278: $r->rflush();
1.2 bowersj2 279:
1.3 bowersj2 280: # Discard result, we just want the objects that get created by the
281: # xml parsing
282: &Apache::lonxml::xmlparse($r, 'helper', $file);
1.2 bowersj2 283:
1.31 bowersj2 284: my $allowed = $helper->allowedCheck();
285: if (!$allowed) {
1.100 albertel 286: $env{'user.error.msg'} = $env{'request.uri'}.':'.$helper->{REQUIRED_PRIV}.
1.31 bowersj2 287: ":0:0:Permission denied to access this helper.";
288: return HTTP_NOT_ACCEPTABLE;
289: }
290:
1.13 bowersj2 291: $helper->process();
292:
1.3 bowersj2 293: $r->print($helper->display());
1.31 bowersj2 294: return OK;
1.2 bowersj2 295: }
296:
1.13 bowersj2 297: sub registerHelperTags {
298: for my $tagList (@helperTags) {
299: Apache::lonxml::register($tagList->[0], $tagList->[1]);
300: }
301: }
302:
303: sub unregisterHelperTags {
304: for my $tagList (@helperTags) {
305: Apache::lonxml::deregister($tagList->[0], $tagList->[1]);
306: }
307: }
308:
1.2 bowersj2 309: sub start_helper {
310: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
311:
312: if ($target ne 'helper') {
313: return '';
314: }
1.7 bowersj2 315:
1.13 bowersj2 316: registerHelperTags();
317:
1.31 bowersj2 318: Apache::lonhelper::helper->new($token->[2]{'title'}, $token->[2]{'requiredpriv'});
1.4 bowersj2 319: return '';
1.2 bowersj2 320: }
321:
322: sub end_helper {
323: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
324:
1.3 bowersj2 325: if ($target ne 'helper') {
326: return '';
327: }
1.7 bowersj2 328:
1.13 bowersj2 329: unregisterHelperTags();
1.7 bowersj2 330:
1.4 bowersj2 331: return '';
1.2 bowersj2 332: }
1.1 bowersj2 333:
1.3 bowersj2 334: sub start_state {
335: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
336:
337: if ($target ne 'helper') {
338: return '';
339: }
340:
1.13 bowersj2 341: Apache::lonhelper::state->new($token->[2]{'name'},
1.160 albertel 342: $token->[2]{'title'},
343: $token->[2]{'help'});
1.3 bowersj2 344: return '';
345: }
346:
1.13 bowersj2 347: # Use this to get the param hash from other files.
348: sub getParamHash {
349: return $paramHash;
350: }
351:
352: # Use this to get the helper, if implementing elements in other files
353: # (like lonprintout.pm)
354: sub getHelper {
355: return $helper;
356: }
357:
1.3 bowersj2 358: # don't need this, so ignore it
359: sub end_state {
360: return '';
361: }
362:
1.1 bowersj2 363: 1;
364:
1.3 bowersj2 365: package Apache::lonhelper::helper;
366:
367: use Digest::MD5 qw(md5_hex);
1.57 albertel 368: use HTML::Entities();
1.3 bowersj2 369: use Apache::loncommon;
370: use Apache::File;
1.57 albertel 371: use Apache::lonlocal;
1.100 albertel 372: use Apache::lonnet;
1.154 albertel 373: use LONCAPA;
1.3 bowersj2 374:
375: sub new {
376: my $proto = shift;
377: my $class = ref($proto) || $proto;
378: my $self = {};
379:
380: $self->{TITLE} = shift;
1.31 bowersj2 381: $self->{REQUIRED_PRIV} = shift;
1.3 bowersj2 382:
383: # If there is a state from the previous form, use that. If there is no
384: # state, use the start state parameter.
1.100 albertel 385: if (defined $env{"form.CURRENT_STATE"})
1.3 bowersj2 386: {
1.100 albertel 387: $self->{STATE} = $env{"form.CURRENT_STATE"};
1.3 bowersj2 388: }
389: else
390: {
391: $self->{STATE} = "START";
392: }
393:
1.100 albertel 394: $self->{TOKEN} = $env{'form.TOKEN'};
1.3 bowersj2 395: # If a token was passed, we load that in. Otherwise, we need to create a
396: # new storage file
397: # Tried to use standard Tie'd hashes, but you can't seem to take a
398: # reference to a tied hash and write to it. I'd call that a wart.
399: if ($self->{TOKEN}) {
400: # Validate the token before trusting it
401: if ($self->{TOKEN} !~ /^[a-f0-9]{32}$/) {
402: # Not legit. Return nothing and let all hell break loose.
403: # User shouldn't be doing that!
404: return undef;
405: }
406:
407: # Get the hash.
408: $self->{FILENAME} = $Apache::lonnet::tmpdir . md5_hex($self->{TOKEN}); # Note the token is not the literal file
409:
410: my $file = Apache::File->new($self->{FILENAME});
411: my $contents = <$file>;
1.5 bowersj2 412:
413: # Now load in the contents
414: for my $value (split (/&/, $contents)) {
415: my ($name, $value) = split(/=/, $value);
416: $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
417: $self->{VARS}->{$name} = $value;
418: }
419:
1.3 bowersj2 420: $file->close();
421: } else {
422: # Only valid if we're just starting.
423: if ($self->{STATE} ne 'START') {
424: return undef;
425: }
426: # Must create the storage
1.100 albertel 427: $self->{TOKEN} = md5_hex($env{'user.name'} . $env{'user.domain'} .
1.3 bowersj2 428: time() . rand());
429: $self->{FILENAME} = $Apache::lonnet::tmpdir . md5_hex($self->{TOKEN});
430: }
431:
432: # OK, we now have our persistent storage.
433:
1.100 albertel 434: if (defined $env{"form.RETURN_PAGE"})
1.3 bowersj2 435: {
1.100 albertel 436: $self->{RETURN_PAGE} = $env{"form.RETURN_PAGE"};
1.3 bowersj2 437: }
438: else
439: {
440: $self->{RETURN_PAGE} = $ENV{REFERER};
441: }
442:
443: $self->{STATES} = {};
444: $self->{DONE} = 0;
445:
1.9 bowersj2 446: # Used by various helpers for various things; see lonparm.helper
447: # for an example.
448: $self->{DATA} = {};
449:
1.13 bowersj2 450: $helper = $self;
451:
452: # Establish the $paramHash
453: $paramHash = {};
454:
1.3 bowersj2 455: bless($self, $class);
456: return $self;
457: }
458:
459: # Private function; returns a string to construct the hidden fields
460: # necessary to have the helper track state.
461: sub _saveVars {
462: my $self = shift;
463: my $result = "";
464: $result .= '<input type="hidden" name="CURRENT_STATE" value="' .
1.67 albertel 465: HTML::Entities::encode($self->{STATE},'<>&"') . "\" />\n";
1.3 bowersj2 466: $result .= '<input type="hidden" name="TOKEN" value="' .
467: $self->{TOKEN} . "\" />\n";
468: $result .= '<input type="hidden" name="RETURN_PAGE" value="' .
1.67 albertel 469: HTML::Entities::encode($self->{RETURN_PAGE},'<>&"') . "\" />\n";
1.3 bowersj2 470:
471: return $result;
472: }
473:
474: # Private function: Create the querystring-like representation of the stored
475: # data to write to disk.
476: sub _varsInFile {
477: my $self = shift;
478: my @vars = ();
1.154 albertel 479: for my $key (keys(%{$self->{VARS}})) {
480: push(@vars, &escape($key) . '=' . &escape($self->{VARS}->{$key}));
1.3 bowersj2 481: }
482: return join ('&', @vars);
483: }
484:
1.5 bowersj2 485: # Use this to declare variables.
486: # FIXME: Document this
487: sub declareVar {
488: my $self = shift;
489: my $var = shift;
490:
491: if (!defined($self->{VARS}->{$var})) {
492: $self->{VARS}->{$var} = '';
493: }
494:
1.157 raeburn 495: my $envname = 'form.' . $var . '_forminput';
1.100 albertel 496: if (defined($env{$envname})) {
497: if (ref($env{$envname})) {
498: $self->{VARS}->{$var} = join('|||', @{$env{$envname}});
1.28 bowersj2 499: } else {
1.100 albertel 500: $self->{VARS}->{$var} = $env{$envname};
1.28 bowersj2 501: }
1.5 bowersj2 502: }
503: }
504:
1.31 bowersj2 505: sub allowedCheck {
506: my $self = shift;
507:
508: if (!defined($self->{REQUIRED_PRIV})) {
509: return 1;
510: }
511:
1.100 albertel 512: return Apache::lonnet::allowed($self->{REQUIRED_PRIV}, $env{'request.course.id'});
1.31 bowersj2 513: }
514:
1.3 bowersj2 515: sub changeState {
516: my $self = shift;
517: $self->{STATE} = shift;
518: }
519:
520: sub registerState {
521: my $self = shift;
522: my $state = shift;
523:
524: my $stateName = $state->name();
525: $self->{STATES}{$stateName} = $state;
526: }
527:
1.13 bowersj2 528: sub process {
1.3 bowersj2 529: my $self = shift;
530:
531: # Phase 1: Post processing for state of previous screen (which is actually
532: # the "current state" in terms of the helper variables), if it wasn't the
533: # beginning state.
1.170 schafran 534: if ($self->{STATE} ne "START" || $env{"form.SUBMIT"} eq &mt("Next")) {
1.3 bowersj2 535: my $prevState = $self->{STATES}{$self->{STATE}};
1.13 bowersj2 536: $prevState->postprocess();
1.3 bowersj2 537: }
538:
539: # Note, to handle errors in a state's input that a user must correct,
540: # do not transition in the postprocess, and force the user to correct
541: # the error.
542:
543: # Phase 2: Preprocess current state
544: my $startState = $self->{STATE};
1.17 bowersj2 545: my $state = $self->{STATES}->{$startState};
1.3 bowersj2 546:
1.13 bowersj2 547: # For debugging, print something here to determine if you're going
548: # to an undefined state.
1.3 bowersj2 549: if (!defined($state)) {
1.13 bowersj2 550: return;
1.3 bowersj2 551: }
552: $state->preprocess();
553:
554: # Phase 3: While the current state is different from the previous state,
555: # keep processing.
1.17 bowersj2 556: while ( $startState ne $self->{STATE} &&
557: defined($self->{STATES}->{$self->{STATE}}) )
1.3 bowersj2 558: {
559: $startState = $self->{STATE};
1.17 bowersj2 560: $state = $self->{STATES}->{$startState};
1.3 bowersj2 561: $state->preprocess();
562: }
563:
1.13 bowersj2 564: return;
565: }
566:
567: # 1: Do the post processing for the previous state.
568: # 2: Do the preprocessing for the current state.
569: # 3: Check to see if state changed, if so, postprocess current and move to next.
570: # Repeat until state stays stable.
571: # 4: Render the current state to the screen as an HTML page.
572: sub display {
573: my $self = shift;
1.181 raeburn 574: my $footer = shift;
1.13 bowersj2 575: my $state = $self->{STATES}{$self->{STATE}};
576:
577: my $result = "";
578:
1.17 bowersj2 579: if (!defined($state)) {
580: $result = "<font color='#ff0000'>Error: state '$state' not defined!</font>";
581: return $result;
582: }
583:
1.3 bowersj2 584: # Phase 4: Display.
1.68 sakharuk 585: my $stateTitle=&mt($state->title());
1.160 albertel 586: my $stateHelp= $state->help();
1.135 albertel 587: my $browser_searcher_js =
588: '<script type="text/javascript">'."\n".
589: &Apache::loncommon::browser_and_searcher_javascript().
590: "\n".'</script>';
591:
1.174 bisitz 592: # Breadcrumbs
593: my $brcrum = [{'href' => '',
594: 'text' => 'Helper'}];
595: # FIXME: Dynamically add context sensitive breadcrumbs
596: # depending on the caller,
597: # e.g. printing, parametrization, etc.
598: # FIXME: Add breadcrumbs to reflect current helper state
599:
1.135 albertel 600: $result .= &Apache::loncommon::start_page($self->{TITLE},
1.174 bisitz 601: $browser_searcher_js,
602: {'bread_crumbs' => $brcrum,});
603:
1.170 schafran 604: my $previous = HTML::Entities::encode(&mt("Back"), '<>&"');
605: my $next = HTML::Entities::encode(&mt("Next"), '<>&"');
1.57 albertel 606: # FIXME: This should be parameterized, not concatenated - Jeremy
1.3 bowersj2 607:
1.135 albertel 608:
1.181 raeburn 609: if (!$state->overrideForm()) { $result.='<form name="helpform" method="post" action="">'; }
1.160 albertel 610: if ($stateHelp) {
1.175 bisitz 611: $stateHelp = &Apache::loncommon::help_open_topic($stateHelp);
1.160 albertel 612: }
1.3 bowersj2 613:
1.175 bisitz 614: # Prepare buttons
615: my $buttons;
1.3 bowersj2 616: if (!$state->overrideForm()) {
617: if ($self->{STATE} ne $self->{START_STATE}) {
618: #$result .= '<input name="SUBMIT" type="submit" value="<- Previous" /> ';
619: }
1.175 bisitz 620: $buttons = '<p>'; # '<fieldset>';
1.3 bowersj2 621: if ($self->{DONE}) {
622: my $returnPage = $self->{RETURN_PAGE};
1.175 bisitz 623: $buttons .= '<a href="'.$returnPage.'">'.&mt('End Helper').'</a>';
1.3 bowersj2 624: }
625: else {
1.175 bisitz 626: $buttons .= '<span class="LC_nobreak">'
627: .'<input name="back" type="button" '
628: .'value="'.$previous.'" onclick="history.go(-1)" /> '
629: .'<input name="SUBMIT" type="submit" value="'.$next.'" />'
630: .'</span>';
1.30 bowersj2 631: }
1.175 bisitz 632: $buttons .= '</p>'; # '</fieldset>';
1.30 bowersj2 633: }
634:
635:
1.175 bisitz 636:
637: $result .= '<h2>'.$stateTitle.$stateHelp.'</h2>';
638:
639: # $result .= '<div>';
640:
641: # Top buttons
642: $result .= $buttons;
643:
644: # Main content of current helper screen
1.30 bowersj2 645: if (!$state->overrideForm()) {
1.175 bisitz 646: $result .= $self->_saveVars();
1.3 bowersj2 647: }
1.175 bisitz 648: $result .= $state->render();
649:
650: # Bottom buttons
651: $result .= $buttons;
652:
1.3 bowersj2 653:
1.13 bowersj2 654: #foreach my $key (keys %{$self->{VARS}}) {
655: # $result .= "|$key| -> " . $self->{VARS}->{$key} . "<br />";
656: #}
1.5 bowersj2 657:
1.175 bisitz 658: # $result .= '</div>';
1.30 bowersj2 659:
1.3 bowersj2 660: $result .= <<FOOTER;
661: </form>
662: FOOTER
663:
1.181 raeburn 664: $result .= $footer.&Apache::loncommon::end_page();
1.3 bowersj2 665: # Handle writing out the vars to the file
666: my $file = Apache::File->new('>'.$self->{FILENAME});
1.33 bowersj2 667: print $file $self->_varsInFile();
1.3 bowersj2 668:
669: return $result;
670: }
671:
672: 1;
673:
674: package Apache::lonhelper::state;
675:
676: # States bundle things together and are responsible for compositing the
1.4 bowersj2 677: # various elements together. It is not generally necessary for users to
678: # use the state object directly, so it is not perldoc'ed.
679:
680: # Basically, all the states do is pass calls to the elements and aggregate
681: # the results.
1.3 bowersj2 682:
683: sub new {
684: my $proto = shift;
685: my $class = ref($proto) || $proto;
686: my $self = {};
687:
688: $self->{NAME} = shift;
689: $self->{TITLE} = shift;
1.160 albertel 690: $self->{HELP} = shift;
1.3 bowersj2 691: $self->{ELEMENTS} = [];
692:
693: bless($self, $class);
694:
695: $helper->registerState($self);
696:
1.13 bowersj2 697: $state = $self;
698:
1.3 bowersj2 699: return $self;
700: }
701:
702: sub name {
703: my $self = shift;
704: return $self->{NAME};
705: }
706:
707: sub title {
708: my $self = shift;
709: return $self->{TITLE};
710: }
711:
1.160 albertel 712: sub help {
713: my $self = shift;
714: return $self->{HELP};
715: }
716:
1.4 bowersj2 717: sub preprocess {
718: my $self = shift;
719: for my $element (@{$self->{ELEMENTS}}) {
720: $element->preprocess();
721: }
722: }
723:
1.6 bowersj2 724: # FIXME: Document that all postprocesses must return a true value or
725: # the state transition will be overridden
1.4 bowersj2 726: sub postprocess {
727: my $self = shift;
1.6 bowersj2 728:
729: # Save the state so we can roll it back if we need to.
730: my $originalState = $helper->{STATE};
731: my $everythingSuccessful = 1;
732:
1.4 bowersj2 733: for my $element (@{$self->{ELEMENTS}}) {
1.6 bowersj2 734: my $result = $element->postprocess();
735: if (!$result) { $everythingSuccessful = 0; }
736: }
737:
738: # If not all the postprocesses were successful, override
739: # any state transitions that may have occurred. It is the
740: # responsibility of the states to make sure they have
741: # error handling in that case.
742: if (!$everythingSuccessful) {
743: $helper->{STATE} = $originalState;
1.4 bowersj2 744: }
745: }
746:
1.13 bowersj2 747: # Override the form if any element wants to.
748: # two elements overriding the form will make a mess, but that should
749: # be considered helper author error ;-)
1.4 bowersj2 750: sub overrideForm {
1.13 bowersj2 751: my $self = shift;
752: for my $element (@{$self->{ELEMENTS}}) {
753: if ($element->overrideForm()) {
754: return 1;
755: }
756: }
1.4 bowersj2 757: return 0;
758: }
759:
760: sub addElement {
761: my $self = shift;
762: my $element = shift;
763:
764: push @{$self->{ELEMENTS}}, $element;
765: }
766:
767: sub render {
768: my $self = shift;
769: my @results = ();
770:
771: for my $element (@{$self->{ELEMENTS}}) {
772: push @results, $element->render();
773: }
1.28 bowersj2 774:
1.4 bowersj2 775: return join("\n", @results);
776: }
777:
778: 1;
779:
780: package Apache::lonhelper::element;
781: # Support code for elements
782:
783: =pod
784:
1.44 bowersj2 785: =head1 Element Base Class
1.4 bowersj2 786:
1.28 bowersj2 787: The Apache::lonhelper::element base class provides support for elements
788: and defines some generally useful tags for use in elements.
1.4 bowersj2 789:
1.44 bowersj2 790: =head2 finalcode tagX<finalcode>
1.25 bowersj2 791:
792: Each element can contain a "finalcode" tag that, when the special FINAL
793: helper state is used, will be executed, surrounded by "sub { my $helper = shift;"
794: and "}". It is expected to return a string describing what it did, which
795: may be an empty string. See course initialization helper for an example. This is
796: generally intended for helpers like the course initialization helper, which consist
797: of several panels, each of which is performing some sort of bite-sized functionality.
798:
1.44 bowersj2 799: =head2 defaultvalue tagX<defaultvalue>
1.25 bowersj2 800:
801: Each element that accepts user input can contain a "defaultvalue" tag that,
802: when surrounded by "sub { my $helper = shift; my $state = shift; " and "}",
803: will form a subroutine that when called will provide a default value for
804: the element. How this value is interpreted by the element is specific to
805: the element itself, and possibly the settings the element has (such as
806: multichoice vs. single choice for <choices> tags).
807:
1.160 albertel 808: This is also intended for things like the course initialization helper, where the
1.25 bowersj2 809: user is setting various parameters. By correctly grabbing current settings
810: and including them into the helper, it allows the user to come back to the
811: helper later and re-execute it, without needing to worry about overwriting
812: some setting accidentally.
813:
814: Again, see the course initialization helper for examples.
815:
1.44 bowersj2 816: =head2 validator tagX<validator>
1.38 bowersj2 817:
818: Some elements that accepts user input can contain a "validator" tag that,
819: when surrounded by "sub { my $helper = shift; my $state = shift; my $element = shift; my $val = shift "
820: and "}", where "$val" is the value the user entered, will form a subroutine
821: that when called will verify whether the given input is valid or not. If it
822: is valid, the routine will return a false value. If invalid, the routine
823: will return an error message to be displayed for the user.
824:
825: Consult the documentation for each element to see whether it supports this
826: tag.
827:
1.44 bowersj2 828: =head2 getValue methodX<getValue (helper elements)>
1.31 bowersj2 829:
830: If the element stores the name of the variable in a 'variable' member, which
831: the provided ones all do, you can retreive the value of the variable by calling
832: this method.
833:
1.4 bowersj2 834: =cut
835:
1.5 bowersj2 836: BEGIN {
1.7 bowersj2 837: &Apache::lonhelper::register('Apache::lonhelper::element',
1.25 bowersj2 838: ('nextstate', 'finalcode',
1.38 bowersj2 839: 'defaultvalue', 'validator'));
1.5 bowersj2 840: }
841:
1.4 bowersj2 842: # Because we use the param hash, this is often a sufficent
843: # constructor
844: sub new {
845: my $proto = shift;
846: my $class = ref($proto) || $proto;
847: my $self = $paramHash;
848: bless($self, $class);
849:
850: $self->{PARAMS} = $paramHash;
851: $self->{STATE} = $state;
852: $state->addElement($self);
853:
854: # Ensure param hash is not reused
855: $paramHash = {};
856:
857: return $self;
858: }
859:
1.5 bowersj2 860: sub start_nextstate {
861: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
862:
863: if ($target ne 'helper') {
864: return '';
865: }
866:
867: $paramHash->{NEXTSTATE} = &Apache::lonxml::get_all_text('/nextstate',
868: $parser);
869: return '';
870: }
871:
872: sub end_nextstate { return ''; }
873:
1.25 bowersj2 874: sub start_finalcode {
875: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
876:
877: if ($target ne 'helper') {
878: return '';
879: }
880:
881: $paramHash->{FINAL_CODE} = &Apache::lonxml::get_all_text('/finalcode',
882: $parser);
883: return '';
884: }
885:
886: sub end_finalcode { return ''; }
887:
888: sub start_defaultvalue {
889: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
890:
891: if ($target ne 'helper') {
892: return '';
893: }
894:
895: $paramHash->{DEFAULT_VALUE} = &Apache::lonxml::get_all_text('/defaultvalue',
896: $parser);
897: $paramHash->{DEFAULT_VALUE} = 'sub { my $helper = shift; my $state = shift;' .
898: $paramHash->{DEFAULT_VALUE} . '}';
899: return '';
900: }
901:
902: sub end_defaultvalue { return ''; }
903:
1.57 albertel 904: # Validators may need to take language specifications
1.38 bowersj2 905: sub start_validator {
906: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
907:
908: if ($target ne 'helper') {
909: return '';
910: }
911:
912: $paramHash->{VALIDATOR} = &Apache::lonxml::get_all_text('/validator',
913: $parser);
914: $paramHash->{VALIDATOR} = 'sub { my $helper = shift; my $state = shift; my $element = shift; my $val = shift;' .
915: $paramHash->{VALIDATOR} . '}';
916: return '';
917: }
918:
919: sub end_validator { return ''; }
920:
1.4 bowersj2 921: sub preprocess {
922: return 1;
923: }
924:
925: sub postprocess {
926: return 1;
927: }
928:
929: sub render {
930: return '';
931: }
932:
1.13 bowersj2 933: sub overrideForm {
934: return 0;
935: }
936:
1.31 bowersj2 937: sub getValue {
938: my $self = shift;
939: return $helper->{VARS}->{$self->{'variable'}};
940: }
941:
1.4 bowersj2 942: 1;
943:
944: package Apache::lonhelper::message;
945:
946: =pod
947:
1.48 bowersj2 948: =head1 Elements
949:
950: =head2 Element: messageX<message, helper element>
1.4 bowersj2 951:
1.44 bowersj2 952: Message elements display their contents, and
953: transition directly to the state in the <nextstate> attribute. Example:
1.4 bowersj2 954:
1.44 bowersj2 955: <message nextstate='GET_NAME'>
956: This is the <b>message</b> the user will see,
957: <i>HTML allowed</i>.
1.4 bowersj2 958: </message>
959:
1.44 bowersj2 960: This will display the HTML message and transition to the 'nextstate' if
1.7 bowersj2 961: given. The HTML will be directly inserted into the helper, so if you don't
1.44 bowersj2 962: want text to run together, you'll need to manually wrap the message text
1.4 bowersj2 963: in <p> tags, or whatever is appropriate for your HTML.
964:
1.5 bowersj2 965: Message tags do not add in whitespace, so if you want it, you'll need to add
966: it into states. This is done so you can inline some elements, such as
967: the <date> element, right between two messages, giving the appearence that
968: the <date> element appears inline. (Note the elements can not be embedded
969: within each other.)
970:
1.4 bowersj2 971: This is also a good template for creating your own new states, as it has
972: very little code beyond the state template.
973:
1.57 albertel 974: =head3 Localization
975:
976: The contents of the message tag will be run through the
977: normalize_string function and that will be used as a call to &mt.
978:
1.4 bowersj2 979: =cut
980:
981: no strict;
982: @ISA = ("Apache::lonhelper::element");
983: use strict;
1.57 albertel 984: use Apache::lonlocal;
1.4 bowersj2 985:
986: BEGIN {
1.7 bowersj2 987: &Apache::lonhelper::register('Apache::lonhelper::message',
1.10 bowersj2 988: ('message'));
1.3 bowersj2 989: }
990:
1.5 bowersj2 991: sub new {
992: my $ref = Apache::lonhelper::element->new();
993: bless($ref);
994: }
1.4 bowersj2 995:
996: # CONSTRUCTION: Construct the message element from the XML
997: sub start_message {
998: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
999:
1000: if ($target ne 'helper') {
1001: return '';
1002: }
1.10 bowersj2 1003:
1.69 sakharuk 1004: $paramHash->{MESSAGE_TEXT} = &mtn(&Apache::lonxml::get_all_text('/message',
1005: $parser));
1.10 bowersj2 1006:
1007: if (defined($token->[2]{'nextstate'})) {
1008: $paramHash->{NEXTSTATE} = $token->[2]{'nextstate'};
1009: }
1.162 albertel 1010: if (defined($token->[2]{'type'})) {
1011: $paramHash->{TYPE} = $token->[2]{'type'};
1012: }
1.4 bowersj2 1013: return '';
1.3 bowersj2 1014: }
1015:
1.10 bowersj2 1016: sub end_message {
1.4 bowersj2 1017: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1018:
1019: if ($target ne 'helper') {
1020: return '';
1021: }
1.10 bowersj2 1022: Apache::lonhelper::message->new();
1023: return '';
1.5 bowersj2 1024: }
1025:
1026: sub render {
1027: my $self = shift;
1.162 albertel 1028:
1029: if ($self->{TYPE} =~ /^\s*warning\s*$/i) {
1030: $self->{MESSAGE_TEXT} =
1031: '<span class="LC_warning">'. $self->{MESSAGE_TEXT}.'</span>';
1032: }
1033: if ($self->{TYPE} =~ /^\s*error\s*$/i) {
1034: $self->{MESSAGE_TEXT} =
1035: '<span class="LC_error">'. $self->{MESSAGE_TEXT}.'</span>';
1036: }
1.161 albertel 1037: return $self->{MESSAGE_TEXT};
1.5 bowersj2 1038: }
1039: # If a NEXTSTATE was given, switch to it
1040: sub postprocess {
1041: my $self = shift;
1042: if (defined($self->{NEXTSTATE})) {
1043: $helper->changeState($self->{NEXTSTATE});
1044: }
1.6 bowersj2 1045:
1046: return 1;
1.5 bowersj2 1047: }
1048: 1;
1049:
1.159 albertel 1050: package Apache::lonhelper::helpicon;
1051:
1052: =pod
1053:
1054: =head1 Elements
1055:
1056: =head2 Element: helpiconX<helpicon, helper element>
1057:
1058: Helpicon elements add a help icon at the current location.
1059: Example:
1060:
1061: <helpicon file="Help">
1062: General Help
1063: </helpicon>
1064:
1065: In this example will generate a help icon to the Help.hlp url with a
1066: description of 'General Help'. The description is not required and if
1067: left out (Example: <helpicon file="Help" /> only the icon will be
1068: added.)
1069:
1070: =head3 Localization
1071:
1072: The description text will be run through the normalize_string function
1073: and that will be used as a call to &mt.
1074:
1075: =cut
1076:
1077: no strict;
1078: @ISA = ("Apache::lonhelper::element");
1079: use strict;
1080: use Apache::lonlocal;
1081:
1082: BEGIN {
1083: &Apache::lonhelper::register('Apache::lonhelper::helpicon',
1084: ('helpicon'));
1085: }
1086:
1087: sub new {
1088: my $ref = Apache::lonhelper::element->new();
1089: bless($ref);
1090: }
1091:
1092: # CONSTRUCTION: Construct the message element from the XML
1093: sub start_helpicon {
1094: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1095:
1096: if ($target ne 'helper') {
1097: return '';
1098: }
1099:
1100: $paramHash->{HELP_TEXT} = &mtn(&Apache::lonxml::get_all_text('/helpicon',
1101: $parser));
1102:
1103: $paramHash->{HELP_TEXT} =~s/^\s+//;
1104: $paramHash->{HELP_TEXT} =~s/\s+$//;
1105:
1106: if (defined($token->[2]{'file'})) {
1107: $paramHash->{HELP_FILE} = $token->[2]{'file'};
1108: }
1109: return '';
1110: }
1111:
1112: sub end_helpicon {
1113: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1114:
1115: if ($target ne 'helper') {
1116: return '';
1117: }
1118: Apache::lonhelper::helpicon->new();
1119: return '';
1120: }
1121:
1122: sub render {
1123: my $self = shift;
1124:
1125: my $text;
1126: if ( $self->{HELP_TEXT} ne '') {
1.160 albertel 1127: $text=&mtn($self->{HELP_TEXT});
1.159 albertel 1128: }
1129:
1130: return &Apache::loncommon::help_open_topic($self->{HELP_FILE},
1131: $text);
1132: }
1.160 albertel 1133: sub postprocess {
1134: my $self = shift;
1135: if (defined($self->{NEXTSTATE})) {
1136: $helper->changeState($self->{NEXTSTATE});
1137: }
1138:
1139: return 1;
1140: }
1141:
1.159 albertel 1142: 1;
1143:
1.155 albertel 1144: package Apache::lonhelper::skip;
1145:
1146: =pod
1147:
1148: =head1 Elements
1149:
1150: =head2 Element: skipX<skip>
1151:
1152: The <skip> tag allows you define conditions under which the current state
1153: should be skipped over and define what state to skip to.
1154:
1155: <state name="SKIP">
1156: <skip>
1157: <clause>
1158: #some code that decides whether to skip the state or not
1159: </clause>
1160: <nextstate>FINISH</nextstate>
1161: </skip>
1162: <message nextstate="FINISH">A possibly skipped state</message>
1163: </state>
1164:
1165: =cut
1166:
1167: no strict;
1168: @ISA = ("Apache::lonhelper::element");
1169: use strict;
1170:
1171: BEGIN {
1172: &Apache::lonhelper::register('Apache::lonhelper::skip',
1173: ('skip'));
1174: }
1175:
1176: sub new {
1177: my $ref = Apache::lonhelper::element->new();
1178: bless($ref);
1179: }
1180:
1181: sub start_skip {
1182: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1183:
1184: if ($target ne 'helper') {
1185: return '';
1186: }
1187: # let <cluase> know what text to skip to
1188: $paramHash->{SKIPTAG}='/skip';
1189: return '';
1190: }
1191:
1192: sub end_skip {
1193: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1194:
1195: if ($target ne 'helper') {
1196: return '';
1197: }
1198: Apache::lonhelper::skip->new();
1199: return '';
1200: }
1201:
1202: sub render {
1203: my $self = shift;
1204: return '';
1205: }
1206: # If a NEXTSTATE is set, switch to it
1207: sub preprocess {
1208: my ($self) = @_;
1209:
1210: if (defined($self->{NEXTSTATE})) {
1211: $helper->changeState($self->{NEXTSTATE});
1212: }
1213:
1214: return 1;
1215: }
1216:
1217: 1;
1218:
1.5 bowersj2 1219: package Apache::lonhelper::choices;
1220:
1221: =pod
1222:
1.44 bowersj2 1223: =head2 Element: choicesX<choices, helper element>
1.5 bowersj2 1224:
1225: Choice states provide a single choice to the user as a text selection box.
1226: A "choice" is two pieces of text, one which will be displayed to the user
1227: (the "human" value), and one which will be passed back to the program
1228: (the "computer" value). For instance, a human may choose from a list of
1229: resources on disk by title, while your program wants the file name.
1230:
1231: <choices> takes an attribute "variable" to control which helper variable
1232: the result is stored in.
1233:
1234: <choices> takes an attribute "multichoice" which, if set to a true
1235: value, will allow the user to select multiple choices.
1236:
1.26 bowersj2 1237: <choices> takes an attribute "allowempty" which, if set to a true
1238: value, will allow the user to select none of the choices without raising
1239: an error message.
1240:
1.44 bowersj2 1241: =head3 SUB-TAGS
1.5 bowersj2 1242:
1.44 bowersj2 1243: <choices> can have the following subtags:X<choice, helper tag>
1.5 bowersj2 1244:
1245: =over 4
1246:
1247: =item * <nextstate>state_name</nextstate>: If given, this will cause the
1.44 bowersj2 1248: choice element to transition to the given state after executing.
1249: This will override the <nextstate> passed to <choices> (if any).
1.5 bowersj2 1250:
1251: =item * <choice />: If the choices are static,
1252: this element will allow you to specify them. Each choice
1253: contains attribute, "computer", as described above. The
1254: content of the tag will be used as the human label.
1255: For example,
1256: <choice computer='234-12-7312'>Bobby McDormik</choice>.
1257:
1.44 bowersj2 1258: <choice> can take a parameter "eval", which if set to
1259: a true value, will cause the contents of the tag to be
1260: evaluated as it would be in an <eval> tag; see <eval> tag
1261: below.
1.13 bowersj2 1262:
1.5 bowersj2 1263: <choice> may optionally contain a 'nextstate' attribute, which
1.44 bowersj2 1264: will be the state transistioned to if the choice is made, if
1265: the choice is not multichoice. This will override the nextstate
1266: passed to the parent C<choices> tag.
1.5 bowersj2 1267:
1.136 foxr 1268: <choice> may optionally contain a 'relatedvalue' attribute, which
1269: if present will cause a text entry to appear to the right of the
1270: selection. The value of the relatedvalue attribute is a variable
1271: into which the text entry will be stored e.g.:
1272: <choice computer='numberprovided" relatedvalue="num">Type the number in:</choice>
1273:
1274: <choice> may contain a relatededefault atribute which, if the
1275: relatedvalue attribute is present will be the initial value of the input
1276: box.
1277:
1.5 bowersj2 1278: =back
1279:
1280: To create the choices programmatically, either wrap the choices in
1281: <condition> tags (prefered), or use an <exec> block inside the <choice>
1282: tag. Store the choices in $state->{CHOICES}, which is a list of list
1283: references, where each list has three strings. The first is the human
1284: name, the second is the computer name. and the third is the option
1285: next state. For example:
1286:
1287: <exec>
1288: for (my $i = 65; $i < 65 + 26; $i++) {
1289: push @{$state->{CHOICES}}, [chr($i), $i, 'next'];
1290: }
1291: </exec>
1292:
1293: This will allow the user to select from the letters A-Z (in ASCII), while
1294: passing the ASCII value back into the helper variables, and the state
1295: will in all cases transition to 'next'.
1296:
1297: You can mix and match methods of creating choices, as long as you always
1298: "push" onto the choice list, rather then wiping it out. (You can even
1299: remove choices programmatically, but that would probably be bad form.)
1300:
1.44 bowersj2 1301: =head3 defaultvalue support
1.25 bowersj2 1302:
1303: Choices supports default values both in multichoice and single choice mode.
1304: In single choice mode, have the defaultvalue tag's function return the
1305: computer value of the box you want checked. If the function returns a value
1306: that does not correspond to any of the choices, the default behavior of selecting
1307: the first choice will be preserved.
1308:
1309: For multichoice, return a string with the computer values you want checked,
1310: delimited by triple pipes. Note this matches how the result of the <choices>
1311: tag is stored in the {VARS} hash.
1312:
1.5 bowersj2 1313: =cut
1314:
1315: no strict;
1316: @ISA = ("Apache::lonhelper::element");
1317: use strict;
1.57 albertel 1318: use Apache::lonlocal;
1.100 albertel 1319: use Apache::lonnet;
1.5 bowersj2 1320:
1321: BEGIN {
1.7 bowersj2 1322: &Apache::lonhelper::register('Apache::lonhelper::choices',
1.5 bowersj2 1323: ('choice', 'choices'));
1324: }
1325:
1326: sub new {
1327: my $ref = Apache::lonhelper::element->new();
1328: bless($ref);
1329: }
1330:
1331: # CONSTRUCTION: Construct the message element from the XML
1332: sub start_choices {
1333: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1334:
1335: if ($target ne 'helper') {
1336: return '';
1337: }
1338:
1339: # Need to initialize the choices list, so everything can assume it exists
1.24 sakharuk 1340: $paramHash->{'variable'} = $token->[2]{'variable'} if (!defined($paramHash->{'variable'}));
1.5 bowersj2 1341: $helper->declareVar($paramHash->{'variable'});
1342: $paramHash->{'multichoice'} = $token->[2]{'multichoice'};
1.26 bowersj2 1343: $paramHash->{'allowempty'} = $token->[2]{'allowempty'};
1.5 bowersj2 1344: $paramHash->{CHOICES} = [];
1345: return '';
1346: }
1347:
1348: sub end_choices {
1349: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1350:
1351: if ($target ne 'helper') {
1352: return '';
1353: }
1354: Apache::lonhelper::choices->new();
1355: return '';
1356: }
1357:
1358: sub start_choice {
1359: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1360:
1361: if ($target ne 'helper') {
1362: return '';
1363: }
1364:
1365: my $computer = $token->[2]{'computer'};
1.69 sakharuk 1366: my $human = &mt(&Apache::lonxml::get_all_text('/choice',
1367: $parser));
1.136 foxr 1368: my $nextstate = $token->[2]{'nextstate'};
1369: my $evalFlag = $token->[2]{'eval'};
1370: my $relatedVar = $token->[2]{'relatedvalue'};
1371: my $relatedDefault = $token->[2]{'relateddefault'};
1.94 albertel 1372: push @{$paramHash->{CHOICES}}, [&mtn($human), $computer, $nextstate,
1.136 foxr 1373: $evalFlag, $relatedVar, $relatedDefault];
1.5 bowersj2 1374: return '';
1375: }
1376:
1377: sub end_choice {
1378: return '';
1379: }
1380:
1.87 matthew 1381: {
1382: # used to generate unique id attributes for <input> tags.
1383: # internal use only.
1384: my $id = 0;
1385: sub new_id { return $id++; }
1386: }
1387:
1.5 bowersj2 1388: sub render {
1389: my $self = shift;
1390: my $var = $self->{'variable'};
1391: my $buttons = '';
1392: my $result = '';
1393:
1394: if ($self->{'multichoice'}) {
1.6 bowersj2 1395: $result .= <<SCRIPT;
1.112 albertel 1396: <script type="text/javascript">
1397: // <!--
1.18 bowersj2 1398: function checkall(value, checkName) {
1.15 bowersj2 1399: for (i=0; i<document.forms.helpform.elements.length; i++) {
1.18 bowersj2 1400: ele = document.forms.helpform.elements[i];
1.157 raeburn 1401: if (ele.name == checkName + '_forminput') {
1.18 bowersj2 1402: document.forms.helpform.elements[i].checked=value;
1403: }
1.5 bowersj2 1404: }
1405: }
1.112 albertel 1406: // -->
1.5 bowersj2 1407: </script>
1408: SCRIPT
1.25 bowersj2 1409: }
1410:
1411: # Only print "select all" and "unselect all" if there are five or
1412: # more choices; fewer then that and it looks silly.
1413: if ($self->{'multichoice'} && scalar(@{$self->{CHOICES}}) > 4) {
1.68 sakharuk 1414: my %lt=&Apache::lonlocal::texthash(
1415: 'sa' => "Select All",
1416: 'ua' => "Unselect All");
1.5 bowersj2 1417: $buttons = <<BUTTONS;
1418: <br />
1.68 sakharuk 1419: <input type="button" onclick="checkall(true, '$var')" value="$lt{'sa'}" />
1420: <input type="button" onclick="checkall(false, '$var')" value="$lt{'ua'}" />
1.6 bowersj2 1421: <br />
1.5 bowersj2 1422: BUTTONS
1423: }
1424:
1.16 bowersj2 1425: if (defined $self->{ERROR_MSG}) {
1.6 bowersj2 1426: $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br />';
1.5 bowersj2 1427: }
1428:
1429: $result .= $buttons;
1.6 bowersj2 1430:
1.5 bowersj2 1431: $result .= "<table>\n\n";
1432:
1.25 bowersj2 1433: my %checkedChoices;
1434: my $checkedChoicesFunc;
1435:
1436: if (defined($self->{DEFAULT_VALUE})) {
1437: $checkedChoicesFunc = eval ($self->{DEFAULT_VALUE});
1438: die 'Error in default value code for variable ' .
1.34 bowersj2 1439: $self->{'variable'} . ', Perl said: ' . $@ if $@;
1.25 bowersj2 1440: } else {
1441: $checkedChoicesFunc = sub { return ''; };
1442: }
1443:
1444: # Process which choices should be checked.
1445: if ($self->{'multichoice'}) {
1446: for my $selectedChoice (split(/\|\|\|/, (&$checkedChoicesFunc($helper, $self)))) {
1447: $checkedChoices{$selectedChoice} = 1;
1448: }
1449: } else {
1450: # single choice
1451: my $selectedChoice = &$checkedChoicesFunc($helper, $self);
1452:
1453: my $foundChoice = 0;
1454:
1455: # check that the choice is in the list of choices.
1456: for my $choice (@{$self->{CHOICES}}) {
1457: if ($choice->[1] eq $selectedChoice) {
1458: $checkedChoices{$choice->[1]} = 1;
1459: $foundChoice = 1;
1460: }
1461: }
1462:
1463: # If we couldn't find the choice, pick the first one
1464: if (!$foundChoice) {
1465: $checkedChoices{$self->{CHOICES}->[0]->[1]} = 1;
1466: }
1467: }
1468:
1.5 bowersj2 1469: my $type = "radio";
1470: if ($self->{'multichoice'}) { $type = 'checkbox'; }
1471: foreach my $choice (@{$self->{CHOICES}}) {
1.87 matthew 1472: my $id = &new_id();
1.5 bowersj2 1473: $result .= "<tr>\n<td width='20'> </td>\n";
1.157 raeburn 1474: $result .= "<td valign='top'><input type='$type' name='${var}_forminput'"
1.111 albertel 1475: . " value='" .
1.89 foxr 1476: HTML::Entities::encode($choice->[1],"<>&\"'")
1.5 bowersj2 1477: . "'";
1.25 bowersj2 1478: if ($checkedChoices{$choice->[1]}) {
1.182 raeburn 1479: $result .= " checked='checked'";
1.5 bowersj2 1480: }
1.182 raeburn 1481: $result .= qq{ id="id$id"};
1.13 bowersj2 1482: my $choiceLabel = $choice->[0];
1.136 foxr 1483: if ($choice->[3]) { # if we need to evaluate this choice
1.13 bowersj2 1484: $choiceLabel = "sub { my $helper = shift; my $state = shift;" .
1485: $choiceLabel . "}";
1486: $choiceLabel = eval($choiceLabel);
1487: $choiceLabel = &$choiceLabel($helper, $self);
1488: }
1.182 raeburn 1489: $result .= " /></td><td> ".qq{<label for="id$id">}.
1.164 albertel 1490: $choiceLabel. "</label></td>";
1.136 foxr 1491: if ($choice->[4]) {
1492: $result .='<td><input type="text" size="5" name="'
1.157 raeburn 1493: .$choice->[4].'_forminput" value="'
1.136 foxr 1494: .$choice->[5].'" /></td>';
1495: }
1496: $result .= "</tr>\n";
1.5 bowersj2 1497: }
1498: $result .= "</table>\n\n\n";
1499: $result .= $buttons;
1500:
1501: return $result;
1502: }
1503:
1504: # If a NEXTSTATE was given or a nextstate for this choice was
1505: # given, switch to it
1506: sub postprocess {
1507: my $self = shift;
1.157 raeburn 1508: my $chosenValue = $env{'form.' . $self->{'variable'} . '_forminput'};
1.5 bowersj2 1509:
1.171 foxr 1510:
1.26 bowersj2 1511: if (!defined($chosenValue) && !$self->{'allowempty'}) {
1.59 bowersj2 1512: $self->{ERROR_MSG} =
1513: &mt("You must choose one or more choices to continue.");
1.6 bowersj2 1514: return 0;
1515: }
1516:
1.171 foxr 1517:
1518:
1.28 bowersj2 1519: if (ref($chosenValue)) {
1520: $helper->{VARS}->{$self->{'variable'}} = join('|||', @$chosenValue);
1.42 bowersj2 1521: }
1522:
1523: if (defined($self->{NEXTSTATE})) {
1524: $helper->changeState($self->{NEXTSTATE});
1525: }
1526:
1527: foreach my $choice (@{$self->{CHOICES}}) {
1528: if ($choice->[1] eq $chosenValue) {
1529: if (defined($choice->[2])) {
1530: $helper->changeState($choice->[2]);
1531: }
1532: }
1.136 foxr 1533: if ($choice->[4]) {
1534: my $varname = $choice->[4];
1.157 raeburn 1535: $helper->{'VARS'}->{$varname} = $env{'form.'."${varname}_forminput"};
1.136 foxr 1536: }
1.42 bowersj2 1537: }
1538: return 1;
1539: }
1540: 1;
1541:
1542: package Apache::lonhelper::dropdown;
1543:
1544: =pod
1545:
1.44 bowersj2 1546: =head2 Element: dropdownX<dropdown, helper tag>
1.42 bowersj2 1547:
1548: A drop-down provides a drop-down box instead of a radio button
1549: box. Because most people do not know how to use a multi-select
1550: drop-down box, that option is not allowed. Otherwise, the arguments
1551: are the same as "choices", except "allowempty" is also meaningless.
1552:
1553: <dropdown> takes an attribute "variable" to control which helper variable
1554: the result is stored in.
1555:
1.44 bowersj2 1556: =head3 SUB-TAGS
1.42 bowersj2 1557:
1558: <choice>, which acts just as it does in the "choices" element.
1559:
1560: =cut
1561:
1.57 albertel 1562: # This really ought to be a sibling class to "choice" which is itself
1563: # a child of some abstract class.... *shrug*
1564:
1.42 bowersj2 1565: no strict;
1566: @ISA = ("Apache::lonhelper::element");
1567: use strict;
1.57 albertel 1568: use Apache::lonlocal;
1.100 albertel 1569: use Apache::lonnet;
1.42 bowersj2 1570:
1571: BEGIN {
1572: &Apache::lonhelper::register('Apache::lonhelper::dropdown',
1573: ('dropdown'));
1574: }
1575:
1576: sub new {
1577: my $ref = Apache::lonhelper::element->new();
1578: bless($ref);
1579: }
1580:
1581: # CONSTRUCTION: Construct the message element from the XML
1582: sub start_dropdown {
1583: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1584:
1585: if ($target ne 'helper') {
1586: return '';
1587: }
1588:
1589: # Need to initialize the choices list, so everything can assume it exists
1590: $paramHash->{'variable'} = $token->[2]{'variable'} if (!defined($paramHash->{'variable'}));
1591: $helper->declareVar($paramHash->{'variable'});
1592: $paramHash->{CHOICES} = [];
1593: return '';
1594: }
1595:
1596: sub end_dropdown {
1597: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1598:
1599: if ($target ne 'helper') {
1600: return '';
1601: }
1602: Apache::lonhelper::dropdown->new();
1603: return '';
1604: }
1605:
1606: sub render {
1607: my $self = shift;
1608: my $var = $self->{'variable'};
1609: my $result = '';
1610:
1611: if (defined $self->{ERROR_MSG}) {
1612: $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br />';
1613: }
1614:
1615: my %checkedChoices;
1616: my $checkedChoicesFunc;
1617:
1618: if (defined($self->{DEFAULT_VALUE})) {
1619: $checkedChoicesFunc = eval ($self->{DEFAULT_VALUE});
1620: die 'Error in default value code for variable ' .
1621: $self->{'variable'} . ', Perl said: ' . $@ if $@;
1622: } else {
1623: $checkedChoicesFunc = sub { return ''; };
1624: }
1625:
1626: # single choice
1627: my $selectedChoice = &$checkedChoicesFunc($helper, $self);
1628:
1629: my $foundChoice = 0;
1630:
1631: # check that the choice is in the list of choices.
1632: for my $choice (@{$self->{CHOICES}}) {
1633: if ($choice->[1] eq $selectedChoice) {
1634: $checkedChoices{$choice->[1]} = 1;
1635: $foundChoice = 1;
1636: }
1637: }
1638:
1639: # If we couldn't find the choice, pick the first one
1640: if (!$foundChoice) {
1641: $checkedChoices{$self->{CHOICES}->[0]->[1]} = 1;
1642: }
1643:
1.157 raeburn 1644: $result .= "<select name='${var}_forminput'>\n";
1.42 bowersj2 1645: foreach my $choice (@{$self->{CHOICES}}) {
1646: $result .= "<option value='" .
1.89 foxr 1647: HTML::Entities::encode($choice->[1],"<>&\"'")
1.42 bowersj2 1648: . "'";
1649: if ($checkedChoices{$choice->[1]}) {
1.111 albertel 1650: $result .= " selected='selected' ";
1.42 bowersj2 1651: }
1652: my $choiceLabel = $choice->[0];
1653: if ($choice->[4]) { # if we need to evaluate this choice
1654: $choiceLabel = "sub { my $helper = shift; my $state = shift;" .
1655: $choiceLabel . "}";
1656: $choiceLabel = eval($choiceLabel);
1657: $choiceLabel = &$choiceLabel($helper, $self);
1658: }
1.112 albertel 1659: $result .= ">" . &mtn($choiceLabel) . "</option>\n";
1.42 bowersj2 1660: }
1.43 bowersj2 1661: $result .= "</select>\n";
1.42 bowersj2 1662:
1663: return $result;
1664: }
1665:
1666: # If a NEXTSTATE was given or a nextstate for this choice was
1667: # given, switch to it
1668: sub postprocess {
1669: my $self = shift;
1.157 raeburn 1670: my $chosenValue = $env{'form.' . $self->{'variable'} . '_forminput'};
1.42 bowersj2 1671:
1672: if (!defined($chosenValue) && !$self->{'allowempty'}) {
1673: $self->{ERROR_MSG} = "You must choose one or more choices to" .
1674: " continue.";
1675: return 0;
1.6 bowersj2 1676: }
1677:
1.5 bowersj2 1678: if (defined($self->{NEXTSTATE})) {
1679: $helper->changeState($self->{NEXTSTATE});
1680: }
1681:
1682: foreach my $choice (@{$self->{CHOICES}}) {
1683: if ($choice->[1] eq $chosenValue) {
1684: if (defined($choice->[2])) {
1685: $helper->changeState($choice->[2]);
1686: }
1687: }
1688: }
1.6 bowersj2 1689: return 1;
1.5 bowersj2 1690: }
1691: 1;
1692:
1693: package Apache::lonhelper::date;
1694:
1695: =pod
1696:
1.44 bowersj2 1697: =head2 Element: dateX<date, helper element>
1.5 bowersj2 1698:
1699: Date elements allow the selection of a date with a drop down list.
1700:
1701: Date elements can take two attributes:
1702:
1703: =over 4
1704:
1705: =item * B<variable>: The name of the variable to store the chosen
1706: date in. Required.
1707:
1708: =item * B<hoursminutes>: If a true value, the date will show hours
1709: and minutes, as well as month/day/year. If false or missing,
1710: the date will only show the month, day, and year.
1711:
1712: =back
1713:
1714: Date elements contain only an option <nextstate> tag to determine
1715: the next state.
1716:
1717: Example:
1718:
1719: <date variable="DUE_DATE" hoursminutes="1">
1720: <nextstate>choose_why</nextstate>
1721: </date>
1722:
1723: =cut
1724:
1725: no strict;
1726: @ISA = ("Apache::lonhelper::element");
1727: use strict;
1.57 albertel 1728: use Apache::lonlocal; # A localization nightmare
1.100 albertel 1729: use Apache::lonnet;
1.166 raeburn 1730: use DateTime;
1.5 bowersj2 1731:
1732: BEGIN {
1.7 bowersj2 1733: &Apache::lonhelper::register('Apache::lonhelper::date',
1.5 bowersj2 1734: ('date'));
1735: }
1736:
1737: # Don't need to override the "new" from element
1738: sub new {
1739: my $ref = Apache::lonhelper::element->new();
1740: bless($ref);
1741: }
1742:
1743: my @months = ("January", "February", "March", "April", "May", "June", "July",
1744: "August", "September", "October", "November", "December");
1745:
1746: # CONSTRUCTION: Construct the message element from the XML
1747: sub start_date {
1748: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1749:
1750: if ($target ne 'helper') {
1751: return '';
1752: }
1753:
1754: $paramHash->{'variable'} = $token->[2]{'variable'};
1755: $helper->declareVar($paramHash->{'variable'});
1756: $paramHash->{'hoursminutes'} = $token->[2]{'hoursminutes'};
1.118 albertel 1757: $paramHash->{'anytime'} = $token->[2]{'anytime'};
1.5 bowersj2 1758: }
1759:
1760: sub end_date {
1761: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1762:
1763: if ($target ne 'helper') {
1764: return '';
1765: }
1766: Apache::lonhelper::date->new();
1767: return '';
1768: }
1769:
1770: sub render {
1771: my $self = shift;
1772: my $result = "";
1773: my $var = $self->{'variable'};
1774:
1775: my $date;
1.118 albertel 1776:
1777: my $time=time;
1.119 albertel 1778: my ($anytime,$onclick);
1.118 albertel 1779:
1.137 albertel 1780: # first check VARS for a valid new value from the user
1781: # then check DEFAULT_VALUE for a valid default time value
1782: # otherwise pick now as reasonably good time
1783:
1784: if (defined($helper->{VARS}{$var})
1785: && $helper->{VARS}{$var} > 0) {
1.166 raeburn 1786: $date = &get_date_object($helper->{VARS}{$var});
1.137 albertel 1787: } elsif (defined($self->{DEFAULT_VALUE})) {
1.118 albertel 1788: my $valueFunc = eval($self->{DEFAULT_VALUE});
1789: die('Error in default value code for variable ' .
1790: $self->{'variable'} . ', Perl said: ' . $@) if $@;
1791: $time = &$valueFunc($helper, $self);
1.130 albertel 1792: if (lc($time) eq 'anytime') {
1793: $anytime=1;
1.166 raeburn 1794: $date = &get_date_object(time);
1.137 albertel 1795: $date->min(0);
1796: } elsif (defined($time) && $time ne 0) {
1.166 raeburn 1797: $date = &get_date_object($time);
1.130 albertel 1798: } else {
1.137 albertel 1799: # leave date undefined so it'll default to now
1.130 albertel 1800: }
1.137 albertel 1801: }
1.130 albertel 1802:
1.138 albertel 1803: if (!defined($date)) {
1.166 raeburn 1804: $date = &get_date_object(time);
1.137 albertel 1805: $date->min(0);
1.118 albertel 1806: }
1.137 albertel 1807:
1.119 albertel 1808: if ($anytime) {
1809: $onclick = "onclick=\"javascript:updateCheck(this.form,'${var}anytime',false)\"";
1810: }
1.5 bowersj2 1811: # Default date: The current hour.
1812:
1813: if (defined $self->{ERROR_MSG}) {
1814: $result .= '<font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br /><br />';
1815: }
1816:
1817: # Month
1818: my $i;
1.119 albertel 1819: $result .= "<select $onclick name='${var}month'>\n";
1.5 bowersj2 1820: for ($i = 0; $i < 12; $i++) {
1.166 raeburn 1821: if (($i + 1) == $date->mon) {
1.111 albertel 1822: $result .= "<option value='$i' selected='selected'>";
1.5 bowersj2 1823: } else {
1824: $result .= "<option value='$i'>";
1825: }
1.166 raeburn 1826: $result .= &mt($months[$i])."</option>\n";
1.5 bowersj2 1827: }
1828: $result .= "</select>\n";
1829:
1830: # Day
1.119 albertel 1831: $result .= "<select $onclick name='${var}day'>\n";
1.5 bowersj2 1832: for ($i = 1; $i < 32; $i++) {
1833: if ($i == $date->mday) {
1.111 albertel 1834: $result .= '<option selected="selected">';
1.5 bowersj2 1835: } else {
1836: $result .= '<option>';
1837: }
1838: $result .= "$i</option>\n";
1839: }
1840: $result .= "</select>,\n";
1841:
1842: # Year
1.119 albertel 1843: $result .= "<select $onclick name='${var}year'>\n";
1.5 bowersj2 1844: for ($i = 2000; $i < 2030; $i++) { # update this after 64-bit dates
1.166 raeburn 1845: if ($date->year == $i) {
1.111 albertel 1846: $result .= "<option selected='selected'>";
1.5 bowersj2 1847: } else {
1848: $result .= "<option>";
1849: }
1850: $result .= "$i</option>\n";
1851: }
1852: $result .= "</select>,\n";
1853:
1854: # Display Hours and Minutes if they are called for
1855: if ($self->{'hoursminutes'}) {
1.59 bowersj2 1856: # This needs parameterization for times.
1857: my $am = &mt('a.m.');
1858: my $pm = &mt('p.m.');
1.5 bowersj2 1859: # Build hour
1.119 albertel 1860: $result .= "<select $onclick name='${var}hour'>\n";
1.111 albertel 1861: $result .= "<option " . ($date->hour == 0 ? 'selected="selected" ':'') .
1.59 bowersj2 1862: " value='0'>" . &mt('midnight') . "</option>\n";
1.5 bowersj2 1863: for ($i = 1; $i < 12; $i++) {
1864: if ($date->hour == $i) {
1.111 albertel 1865: $result .= "<option selected='selected' value='$i'>$i $am</option>\n";
1.5 bowersj2 1866: } else {
1.59 bowersj2 1867: $result .= "<option value='$i'>$i $am</option>\n";
1.5 bowersj2 1868: }
1869: }
1.111 albertel 1870: $result .= "<option " . ($date->hour == 12 ? 'selected="selected" ':'') .
1.59 bowersj2 1871: " value='12'>" . &mt('noon') . "</option>\n";
1.5 bowersj2 1872: for ($i = 13; $i < 24; $i++) {
1873: my $printedHour = $i - 12;
1874: if ($date->hour == $i) {
1.111 albertel 1875: $result .= "<option selected='selected' value='$i'>$printedHour $pm</option>\n";
1.5 bowersj2 1876: } else {
1.59 bowersj2 1877: $result .= "<option value='$i'>$printedHour $pm</option>\n";
1.5 bowersj2 1878: }
1879: }
1880:
1881: $result .= "</select> :\n";
1882:
1.119 albertel 1883: $result .= "<select $onclick name='${var}minute'>\n";
1.120 albertel 1884: my $selected=0;
1885: for my $i ((0,15,30,45,59,undef,0..59)) {
1.5 bowersj2 1886: my $printedMinute = $i;
1.117 albertel 1887: if (defined($i) && $i < 10) {
1.5 bowersj2 1888: $printedMinute = "0" . $printedMinute;
1889: }
1.120 albertel 1890: if (!$selected && $date->min == $i) {
1.111 albertel 1891: $result .= "<option selected='selected'>";
1.120 albertel 1892: $selected=1;
1.5 bowersj2 1893: } else {
1894: $result .= "<option>";
1895: }
1896: $result .= "$printedMinute</option>\n";
1897: }
1898: $result .= "</select>\n";
1899: }
1.166 raeburn 1900: $result .= ' '.$date->time_zone_short_name().' ';
1.118 albertel 1901: if ($self->{'anytime'}) {
1.121 albertel 1902: $result.=(<<CHECK);
1.119 albertel 1903: <script type="text/javascript">
1904: // <!--
1905: function updateCheck(form,name,value) {
1906: var checkbox=form[name];
1907: checkbox.checked = value;
1908: }
1909: // -->
1910: </script>
1911: CHECK
1.118 albertel 1912: $result.=" or <label><input type='checkbox' ";
1913: if ($anytime) {
1914: $result.=' checked="checked" '
1915: }
1.138 albertel 1916: $result.="name='${var}anytime'/>".&mt('Any time').'</label>'
1.118 albertel 1917: }
1.5 bowersj2 1918: return $result;
1919:
1920: }
1921: # If a NEXTSTATE was given, switch to it
1922: sub postprocess {
1923: my $self = shift;
1924: my $var = $self->{'variable'};
1.118 albertel 1925: if ($env{'form.' . $var . 'anytime'}) {
1926: $helper->{VARS}->{$var} = undef;
1927: } else {
1.166 raeburn 1928: my $month = $env{'form.' . $var . 'month'};
1929: $month ++;
1.118 albertel 1930: my $day = $env{'form.' . $var . 'day'};
1931: my $year = $env{'form.' . $var . 'year'};
1932: my $min = 0;
1933: my $hour = 0;
1934: if ($self->{'hoursminutes'}) {
1935: $min = $env{'form.' . $var . 'minute'};
1936: $hour = $env{'form.' . $var . 'hour'};
1937: }
1938:
1.166 raeburn 1939: my ($chosenDate,$checkDate);
1940: my $timezone = &Apache::lonlocal::gettimezone();
1941: my $dt;
1942: eval {
1943: $dt = DateTime->new( year => $year,
1944: month => $month,
1945: day => $day,
1946: hour => $hour,
1947: minute => $min,
1948: second => 0,
1949: time_zone => $timezone,
1950: );
1951: };
1952:
1.118 albertel 1953: my $error = $@;
1.166 raeburn 1954: if (!$error) {
1955: $chosenDate = $dt->epoch;
1956: $checkDate = &get_date_object($chosenDate);
1957: }
1.118 albertel 1958:
1959: # Check to make sure that the date was not automatically co-erced into a
1960: # valid date, as we want to flag that as an error
1961: # This happens for "Feb. 31", for instance, which is coerced to March 2 or
1962: # 3, depending on if it's a leap year
1963:
1964: if ($error || $checkDate->mon != $month || $checkDate->mday != $day ||
1.166 raeburn 1965: $checkDate->year != $year) {
1.118 albertel 1966: unless (Apache::lonlocal::current_language()== ~/^en/) {
1967: $self->{ERROR_MSG} = &mt("Invalid date entry");
1968: return 0;
1969: }
1970: # LOCALIZATION FIXME: Needs to be parameterized
1.166 raeburn 1971: $self->{ERROR_MSG} = "Can't use ".$months[$env{'form.'.$var.'month'}]. " $day, $year as a ".
1972: "date because it doesn't exist. Please enter a valid date.";
1.5 bowersj2 1973:
1.57 albertel 1974: return 0;
1975: }
1.118 albertel 1976: $helper->{VARS}->{$var} = $chosenDate;
1.5 bowersj2 1977: }
1978:
1.137 albertel 1979: if (defined($self->{VALIDATOR})) {
1980: my $validator = eval($self->{VALIDATOR});
1.138 albertel 1981: die 'Died during evaluation of validator code; Perl said: ' . $@ if $@;
1.137 albertel 1982: my $invalid = &$validator($helper, $state, $self, $self->getValue());
1983: if ($invalid) {
1984: $self->{ERROR_MSG} = $invalid;
1985: return 0;
1986: }
1987: }
1988:
1.5 bowersj2 1989: if (defined($self->{NEXTSTATE})) {
1990: $helper->changeState($self->{NEXTSTATE});
1991: }
1.6 bowersj2 1992:
1993: return 1;
1.5 bowersj2 1994: }
1.166 raeburn 1995:
1996: sub get_date_object {
1997: my ($epoch) = @_;
1998: my $dt = DateTime->from_epoch(epoch => $epoch)
1999: ->set_time_zone(&Apache::lonlocal::gettimezone());
2000: my $lang = Apache::lonlocal::current_language();
2001: if ($lang ne '') {
2002: eval {
2003: $dt->set_locale($lang);
2004: };
2005: }
2006: return $dt;
2007: }
2008:
1.5 bowersj2 2009: 1;
2010:
2011: package Apache::lonhelper::resource;
2012:
2013: =pod
2014:
1.44 bowersj2 2015: =head2 Element: resourceX<resource, helper element>
1.5 bowersj2 2016:
2017: <resource> elements allow the user to select one or multiple resources
2018: from the current course. You can filter out which resources they can view,
2019: and filter out which resources they can select. The course will always
2020: be displayed fully expanded, because of the difficulty of maintaining
2021: selections across folder openings and closings. If this is fixed, then
2022: the user can manipulate the folders.
2023:
2024: <resource> takes the standard variable attribute to control what helper
1.44 bowersj2 2025: variable stores the results. It also takes a "multichoice"X<multichoice> attribute,
1.17 bowersj2 2026: which controls whether the user can select more then one resource. The
2027: "toponly" attribute controls whether the resource display shows just the
2028: resources in that sequence, or recurses into all sub-sequences, defaulting
1.29 bowersj2 2029: to false. The "suppressEmptySequences" attribute reflects the
2030: suppressEmptySequences argument to the render routine, which will cause
2031: folders that have all of their contained resources filtered out to also
1.46 bowersj2 2032: be filtered out. The 'addstatus' attribute, if true, will add the icon
1.95 albertel 2033: and long status display columns to the display. The 'addparts'
2034: attribute will add in a part selector beside problems that have more
1.163 albertel 2035: than 1 part. The 'includecourse' attribute if true, will include
2036: the toplevel default.sequence in the results.
1.5 bowersj2 2037:
1.44 bowersj2 2038: =head3 SUB-TAGS
1.5 bowersj2 2039:
2040: =over 4
2041:
1.44 bowersj2 2042: =item * <filterfunc>X<filterfunc>: If you want to filter what resources are displayed
1.5 bowersj2 2043: to the user, use a filter func. The <filterfunc> tag should contain
2044: Perl code that when wrapped with "sub { my $res = shift; " and "}" is
2045: a function that returns true if the resource should be displayed,
2046: and false if it should be skipped. $res is a resource object.
2047: (See Apache::lonnavmaps documentation for information about the
2048: resource object.)
2049:
1.44 bowersj2 2050: =item * <choicefunc>X<choicefunc>: Same as <filterfunc>, except that controls whether
1.5 bowersj2 2051: the given resource can be chosen. (It is almost always a good idea to
2052: show the user the folders, for instance, but you do not always want to
2053: let the user select them.)
2054:
2055: =item * <nextstate>: Standard nextstate behavior.
2056:
1.44 bowersj2 2057: =item * <valuefunc>X<valuefunc>: This function controls what is returned by the resource
1.5 bowersj2 2058: when the user selects it. Like filterfunc and choicefunc, it should be
2059: a function fragment that when wrapped by "sub { my $res = shift; " and
2060: "}" returns a string representing what you want to have as the value. By
2061: default, the value will be the resource ID of the object ($res->{ID}).
2062:
1.44 bowersj2 2063: =item * <mapurl>X<mapurl>: If the URL of a map is given here, only that map
1.48 bowersj2 2064: will be displayed, instead of the whole course. If the attribute
2065: "evaluate" is given and is true, the contents of the mapurl will be
2066: evaluated with "sub { my $helper = shift; my $state = shift;" and
2067: "}", with the return value used as the mapurl.
1.13 bowersj2 2068:
1.178 foxr 2069: =item * <option />: Allows you to add optional elements to the
2070: resource chooser currently these can be a checkbox, or a text entry
2071: or hidden (see the 'type' attribute below).
2072: the following attributes are supported by this tag:
2073:
2074: =over 4
2075:
2076: =item * type=control-type : determines the type of control displayed.
2077: This can be one of the following types: 'checkbox' provides a true/false
2078: checkbox. 'text' provides a text entry control. 'hidden' provides a
2079: hidden form element that returns the name of the resource for each
2080: element of the text box.
2081:
2082: =item * text=header-text : provides column header text for the option.
2083:
2084: =item * variable=helpervar : provides a helper variable to contain the
2085: value of the input control for each resource. In general, the result
2086: will be a set of values separated by ||| for the checkbox the value between
2087: the |||'s will either be empty, if the box is not checked, or the resource
2088: name if checked. For the text entry, the values will be the text in the
2089: text box. This could be empty. Hidden elements unconditionally provide
2090: the resource name for each row of the chooser and allow you to therefore
2091: correlate text entries to their resources.
2092: The helper variable can be initialized by the user code to pre-load values
2093: into the controls:
2094:
2095: =over 4
2096:
2097:
2098: =item * Preloading checkboxes : Set the helper variable to the value you
2099: would have gotten from the control if it had been manually set as desired.
2100:
2101: =item * Preloading text entries : Set the helper variable to triple pipe
2102: separated values where each value is of the form resource-name=value
2103:
2104: =item * Preloading hidden fields : These cannot be pre-loaded and will always
2105: be pipe separated resource names.
2106:
2107: =back
2108:
2109:
2110: =back
2111:
1.5 bowersj2 2112: =back
2113:
2114: =cut
2115:
2116: no strict;
2117: @ISA = ("Apache::lonhelper::element");
2118: use strict;
1.100 albertel 2119: use Apache::lonnet;
1.5 bowersj2 2120:
2121: BEGIN {
1.7 bowersj2 2122: &Apache::lonhelper::register('Apache::lonhelper::resource',
1.5 bowersj2 2123: ('resource', 'filterfunc',
1.13 bowersj2 2124: 'choicefunc', 'valuefunc',
1.90 foxr 2125: 'mapurl','option'));
1.5 bowersj2 2126: }
2127:
2128: sub new {
2129: my $ref = Apache::lonhelper::element->new();
2130: bless($ref);
2131: }
2132:
2133: # CONSTRUCTION: Construct the message element from the XML
2134: sub start_resource {
2135: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2136:
2137: if ($target ne 'helper') {
2138: return '';
2139: }
2140:
2141: $paramHash->{'variable'} = $token->[2]{'variable'};
2142: $helper->declareVar($paramHash->{'variable'});
1.14 bowersj2 2143: $paramHash->{'multichoice'} = $token->[2]{'multichoice'};
1.29 bowersj2 2144: $paramHash->{'suppressEmptySequences'} = $token->[2]{'suppressEmptySequences'};
1.17 bowersj2 2145: $paramHash->{'toponly'} = $token->[2]{'toponly'};
1.46 bowersj2 2146: $paramHash->{'addstatus'} = $token->[2]{'addstatus'};
1.95 albertel 2147: $paramHash->{'addparts'} = $token->[2]{'addparts'};
2148: if ($paramHash->{'addparts'}) {
2149: $helper->declareVar($paramHash->{'variable'}.'_part');
2150: }
1.66 albertel 2151: $paramHash->{'closeallpages'} = $token->[2]{'closeallpages'};
1.163 albertel 2152: $paramHash->{'include_top_level_map'} = $token->[2]{'includecourse'};
1.5 bowersj2 2153: return '';
2154: }
2155:
2156: sub end_resource {
2157: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2158:
2159: if ($target ne 'helper') {
2160: return '';
2161: }
2162: if (!defined($paramHash->{FILTER_FUNC})) {
2163: $paramHash->{FILTER_FUNC} = sub {return 1;};
2164: }
2165: if (!defined($paramHash->{CHOICE_FUNC})) {
2166: $paramHash->{CHOICE_FUNC} = sub {return 1;};
2167: }
2168: if (!defined($paramHash->{VALUE_FUNC})) {
2169: $paramHash->{VALUE_FUNC} = sub {my $res = shift; return $res->{ID}; };
2170: }
2171: Apache::lonhelper::resource->new();
1.4 bowersj2 2172: return '';
2173: }
2174:
1.5 bowersj2 2175: sub start_filterfunc {
2176: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2177:
2178: if ($target ne 'helper') {
2179: return '';
2180: }
2181:
2182: my $contents = Apache::lonxml::get_all_text('/filterfunc',
2183: $parser);
2184: $contents = 'sub { my $res = shift; ' . $contents . '}';
2185: $paramHash->{FILTER_FUNC} = eval $contents;
2186: }
2187:
2188: sub end_filterfunc { return ''; }
2189:
2190: sub start_choicefunc {
2191: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2192:
2193: if ($target ne 'helper') {
2194: return '';
2195: }
2196:
2197: my $contents = Apache::lonxml::get_all_text('/choicefunc',
2198: $parser);
2199: $contents = 'sub { my $res = shift; ' . $contents . '}';
2200: $paramHash->{CHOICE_FUNC} = eval $contents;
2201: }
2202:
2203: sub end_choicefunc { return ''; }
2204:
2205: sub start_valuefunc {
2206: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2207:
2208: if ($target ne 'helper') {
2209: return '';
2210: }
2211:
2212: my $contents = Apache::lonxml::get_all_text('/valuefunc',
2213: $parser);
2214: $contents = 'sub { my $res = shift; ' . $contents . '}';
2215: $paramHash->{VALUE_FUNC} = eval $contents;
2216: }
2217:
2218: sub end_valuefunc { return ''; }
2219:
1.13 bowersj2 2220: sub start_mapurl {
2221: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2222:
2223: if ($target ne 'helper') {
2224: return '';
2225: }
2226:
2227: my $contents = Apache::lonxml::get_all_text('/mapurl',
2228: $parser);
1.48 bowersj2 2229: $paramHash->{EVAL_MAP_URL} = $token->[2]{'evaluate'};
1.14 bowersj2 2230: $paramHash->{MAP_URL} = $contents;
1.13 bowersj2 2231: }
2232:
2233: sub end_mapurl { return ''; }
2234:
1.90 foxr 2235:
2236: sub start_option {
2237: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2238: if (!defined($paramHash->{OPTION_TEXTS})) {
2239: $paramHash->{OPTION_TEXTS} = [ ];
2240: $paramHash->{OPTION_VARS} = [ ];
1.177 foxr 2241: $paramHash->{OPTION_TYPES} = [ ];
1.91 foxr 2242:
1.90 foxr 2243: }
1.177 foxr 2244: # We can have an attribute: type which can have the
2245: # values: "checkbox" or "text" which defaults to
2246: # checkbox allowing us to change the type of input
2247: # for the option:
2248: #
2249: my $input_widget_type = 'checkbox';
2250: if(defined($token->[2]{'type'})) {
2251: my $widget_type = $token->[2]{'type'};
2252: if ($widget_type eq 'text') { # only accept legal alternatives
2253: $input_widget_type = $widget_type; # Illegals are checks.
2254: } elsif ($widget_type eq 'hidden') {
2255: $input_widget_type = $widget_type;
2256: }
2257: }
2258:
1.91 foxr 2259: # OPTION_TEXTS is a list of the text attribute
2260: # values used to create column headings.
2261: # OPTION_VARS is a list of the variable names, used to create the checkbox
2262: # inputs.
1.177 foxr 2263: # OPTION_TYPES is a list of the option types:
2264: #
1.90 foxr 2265: # We're ok with empty elements. as place holders
2266: # Although the 'variable' element should really exist.
1.91 foxr 2267: #
2268:
1.177 foxr 2269:
1.90 foxr 2270: my $option_texts = $paramHash->{OPTION_TEXTS};
2271: my $option_vars = $paramHash->{OPTION_VARS};
1.177 foxr 2272: my $option_types = $paramHash->{OPTION_TYPES};
1.90 foxr 2273: push(@$option_texts, $token->[2]{'text'});
2274: push(@$option_vars, $token->[2]{'variable'});
1.177 foxr 2275: push(@$option_types, $input_widget_type);
2276:
1.90 foxr 2277:
1.91 foxr 2278: # Need to create and declare the option variables as well to make them
2279: # persistent.
2280: #
2281: my $varname = $token->[2]{'variable'};
2282: $helper->declareVar($varname);
2283:
2284:
1.90 foxr 2285: return '';
2286: }
2287:
2288: sub end_option {
2289: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2290: return '';
2291: }
2292:
1.5 bowersj2 2293: # A note, in case I don't get to this before I leave.
2294: # If someone complains about the "Back" button returning them
2295: # to the previous folder state, instead of returning them to
2296: # the previous helper state, the *correct* answer is for the helper
2297: # to keep track of how many times the user has manipulated the folders,
2298: # and feed that to the history.go() call in the helper rendering routines.
2299: # If done correctly, the helper itself can keep track of how many times
2300: # it renders the same states, so it doesn't go in just this state, and
2301: # you can lean on the browser back button to make sure it all chains
2302: # correctly.
2303: # Right now, though, I'm just forcing all folders open.
2304:
2305: sub render {
2306: my $self = shift;
2307: my $result = "";
2308: my $var = $self->{'variable'};
2309: my $curVal = $helper->{VARS}->{$var};
2310:
1.15 bowersj2 2311: my $buttons = '';
2312:
2313: if ($self->{'multichoice'}) {
2314: $result = <<SCRIPT;
1.112 albertel 2315: <script type="text/javascript">
2316: // <!--
1.18 bowersj2 2317: function checkall(value, checkName) {
1.15 bowersj2 2318: for (i=0; i<document.forms.helpform.elements.length; i++) {
2319: ele = document.forms.helpform.elements[i];
1.157 raeburn 2320: if (ele.name == checkName + '_forminput') {
1.15 bowersj2 2321: document.forms.helpform.elements[i].checked=value;
2322: }
2323: }
2324: }
1.112 albertel 2325: // -->
1.15 bowersj2 2326: </script>
2327: SCRIPT
1.68 sakharuk 2328: my %lt=&Apache::lonlocal::texthash(
2329: 'sar' => "Select All Resources",
2330: 'uar' => "Unselect All Resources");
2331:
1.15 bowersj2 2332: $buttons = <<BUTTONS;
2333: <br />
1.68 sakharuk 2334: <input type="button" onclick="checkall(true, '$var')" value="$lt{'sar'}" />
2335: <input type="button" onclick="checkall(false, '$var')" value="$lt{'uar'}" />
1.15 bowersj2 2336: <br />
2337: BUTTONS
2338: }
2339:
1.5 bowersj2 2340: if (defined $self->{ERROR_MSG}) {
1.14 bowersj2 2341: $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br /><br />';
1.5 bowersj2 2342: }
2343:
1.15 bowersj2 2344: $result .= $buttons;
2345:
1.90 foxr 2346: my $filterFunc = $self->{FILTER_FUNC};
2347: my $choiceFunc = $self->{CHOICE_FUNC};
2348: my $valueFunc = $self->{VALUE_FUNC};
1.95 albertel 2349: my $multichoice = $self->{'multichoice'};
1.90 foxr 2350: my $option_vars = $self->{OPTION_VARS};
2351: my $option_texts = $self->{OPTION_TEXTS};
1.177 foxr 2352: my $option_types = $self->{OPTION_TYPES};
1.95 albertel 2353: my $addparts = $self->{'addparts'};
1.90 foxr 2354: my $headings_done = 0;
1.5 bowersj2 2355:
1.48 bowersj2 2356: # Evaluate the map url as needed
2357: my $mapUrl;
1.49 bowersj2 2358: if ($self->{EVAL_MAP_URL}) {
1.48 bowersj2 2359: my $mapUrlFunc = eval('sub { my $helper = shift; my $state = shift; ' .
2360: $self->{MAP_URL} . '}');
2361: $mapUrl = &$mapUrlFunc($helper, $self);
2362: } else {
2363: $mapUrl = $self->{MAP_URL};
2364: }
2365:
1.125 albertel 2366: my %defaultSymbs;
1.124 albertel 2367: if (defined($self->{DEFAULT_VALUE})) {
2368: my $valueFunc = eval($self->{DEFAULT_VALUE});
2369: die 'Error in default value code for variable ' .
2370: $self->{'variable'} . ', Perl said: ' . $@ if $@;
1.125 albertel 2371: my @defaultSymbs = &$valueFunc($helper, $self);
2372: if (!$multichoice && @defaultSymbs) { # only allowed 1
1.124 albertel 2373: @defaultSymbs = ($defaultSymbs[0]);
2374: }
1.125 albertel 2375: %defaultSymbs = map { if ($_) {($_,1) } } @defaultSymbs;
2376: delete($defaultSymbs{''});
1.124 albertel 2377: }
2378:
1.5 bowersj2 2379: # Create the composite function that renders the column on the nav map
2380: # have to admit any language that lets me do this can't be all bad
2381: # - Jeremy (Pythonista) ;-)
2382: my $checked = 0;
2383: my $renderColFunc = sub {
2384: my ($resource, $part, $params) = @_;
1.90 foxr 2385: my $result = "";
2386:
2387: if(!$headings_done) {
2388: if ($option_texts) {
2389: foreach my $text (@$option_texts) {
2390: $result .= "<th>$text</th>";
2391: }
2392: }
2393: $result .= "<th>Select</th>";
2394: $result .= "</tr><tr>"; # Close off the extra row and start a new one.
2395: $headings_done = 1;
2396: }
1.14 bowersj2 2397:
2398: my $inputType;
2399: if ($multichoice) { $inputType = 'checkbox'; }
2400: else {$inputType = 'radio'; }
2401:
1.5 bowersj2 2402: if (!&$choiceFunc($resource)) {
1.90 foxr 2403: $result .= '<td> </td>';
2404: return $result;
1.5 bowersj2 2405: } else {
1.90 foxr 2406: my $col = "";
1.98 foxr 2407: my $raw_name = &$valueFunc($resource);
1.90 foxr 2408: my $resource_name =
1.98 foxr 2409: HTML::Entities::encode($raw_name,"<>&\"'");
1.90 foxr 2410: if($option_vars) {
1.177 foxr 2411: my $option_num = 0;
1.91 foxr 2412: foreach my $option_var (@$option_vars) {
1.177 foxr 2413: my $option_type = $option_types->[$option_num];
2414: $option_num++;
1.99 foxr 2415: my $var_value = "\|\|\|" . $helper->{VARS}->{$option_var} .
2416: "\|\|\|";
1.98 foxr 2417: my $checked ="";
1.99 foxr 2418: if($var_value =~ /\Q|||$raw_name|||\E/) {
1.111 albertel 2419: $checked = "checked='checked'";
1.98 foxr 2420: }
1.177 foxr 2421: if ($option_type eq 'text') {
2422: #
2423: # For text's the variable value is a ||| separated set of
2424: # resource_name=value
2425: #
2426: my @values = split(/\|\|\|/, $helper->{VARS}->{$option_var});
2427:
2428: # Normal practice would be to toss this in a hash but
2429: # the only thing that saves is the compare in the loop
2430: # below and for all but one case we'll break out of the loop
2431: # before it completes.
2432:
2433: my $text_value = ''; # In case there's no match.
2434: foreach my $value (@values) {
2435: my ($res, $skip) = split(/=/, $value);
2436: if($res eq $resource_name) {
2437: $text_value = $skip;
2438: last;
2439: }
2440: }
1.178 foxr 2441: # TODO: add an attribute to <option> that allows the
2442: # programmer to set the width of the tex entry box.
1.177 foxr 2443:
2444: $col .=
2445: "<td align='center'><input type='text' name ='$option_var".
2446: "_forminput' value='".$text_value."' size='5' /> </td>";
2447: } elsif ($option_type eq 'hidden') {
2448: $col .= "<td align='center'><input type='hidden' name ='$option_var".
2449: "_forminput' value='".
2450: $resource_name . "'/> </td>";
2451: } else {
2452: $col .=
2453: "<td align='center'><input type=$option_type name ='$option_var".
2454: "_forminput' value='".
2455: $resource_name . "' $checked /> </td>";
2456: }
1.90 foxr 2457: }
2458: }
2459:
1.157 raeburn 2460: $col .= "<td align='center'><input type='$inputType' name='${var}_forminput' ";
1.125 albertel 2461: if (%defaultSymbs) {
1.124 albertel 2462: my $symb=$resource->symb();
1.125 albertel 2463: if (exists($defaultSymbs{$symb})) {
1.124 albertel 2464: $col .= "checked='checked' ";
2465: $checked = 1;
2466: }
2467: } else {
2468: if (!$checked && !$multichoice) {
2469: $col .= "checked='checked' ";
2470: $checked = 1;
2471: }
2472: if ($multichoice) { # all resources start checked; see bug 1174
2473: $col .= "checked='checked' ";
2474: $checked = 1;
2475: }
1.37 bowersj2 2476: }
1.90 foxr 2477: $col .= "value='" . $resource_name . "' /></td>";
1.95 albertel 2478:
1.90 foxr 2479: return $result.$col;
1.5 bowersj2 2480: }
2481: };
1.95 albertel 2482: my $renderPartsFunc = sub {
2483: my ($resource, $part, $params) = @_;
2484: my $col= "<td>";
2485: my $id=$resource->{ID};
2486: my $resource_name =
2487: &HTML::Entities::encode(&$valueFunc($resource),"<>&\"'");
2488: if ($addparts && (scalar(@{$resource->parts}) > 1)) {
1.157 raeburn 2489: $col .= "<select onclick=\"javascript:updateRadio(this.form,'${var}_forminput','$resource_name');updateHidden(this.form,'$id','${var}');\" name='part_${id}_forminput'>\n";
1.95 albertel 2490: $col .= "<option value=\"$part\">All Parts</option>\n";
2491: foreach my $part (@{$resource->parts}) {
2492: $col .= "<option value=\"$part\">Part: $part</option>\n";
2493: }
2494: $col .= "</select>";
2495: }
2496: $col .= "</td>";
2497: };
2498: $result.=(<<RADIO);
2499: <script type="text/javascript">
1.112 albertel 2500: // <!--
1.95 albertel 2501: function updateRadio(form,name,value) {
2502: var radiobutton=form[name];
2503: for (var i=0; i<radiobutton.length; i++) {
2504: if (radiobutton[i].value == value) {
2505: radiobutton[i].checked = true;
2506: break;
2507: }
2508: }
2509: }
2510: function updateHidden(form,id,name) {
1.157 raeburn 2511: var select=form['part_'+id+'_forminput'];
2512: var hidden=form[name+'_part_forminput'];
1.95 albertel 2513: var which=select.selectedIndex;
2514: hidden.value=select.options[which].value;
2515: }
1.112 albertel 2516: // -->
1.95 albertel 2517: </script>
1.157 raeburn 2518: <input type="hidden" name="${var}_part_forminput" />
1.5 bowersj2 2519:
1.95 albertel 2520: RADIO
1.100 albertel 2521: $env{'form.condition'} = !$self->{'toponly'};
1.95 albertel 2522: my $cols = [$renderColFunc];
2523: if ($self->{'addparts'}) { push(@$cols, $renderPartsFunc); }
2524: push(@$cols, Apache::lonnavmaps::resource());
1.46 bowersj2 2525: if ($self->{'addstatus'}) {
2526: push @$cols, (Apache::lonnavmaps::part_status_summary());
2527:
2528: }
1.5 bowersj2 2529: $result .=
1.46 bowersj2 2530: &Apache::lonnavmaps::render( { 'cols' => $cols,
1.5 bowersj2 2531: 'showParts' => 0,
2532: 'filterFunc' => $filterFunc,
1.13 bowersj2 2533: 'resource_no_folder_link' => 1,
1.66 albertel 2534: 'closeAllPages' => $self->{'closeallpages'},
1.29 bowersj2 2535: 'suppressEmptySequences' => $self->{'suppressEmptySequences'},
1.163 albertel 2536: 'include_top_level_map' => $self->{'include_top_level_map'},
1.13 bowersj2 2537: 'iterator_map' => $mapUrl }
1.5 bowersj2 2538: );
1.15 bowersj2 2539:
2540: $result .= $buttons;
1.5 bowersj2 2541:
2542: return $result;
2543: }
2544:
2545: sub postprocess {
2546: my $self = shift;
1.14 bowersj2 2547:
2548: if ($self->{'multichoice'} && !$helper->{VARS}->{$self->{'variable'}}) {
2549: $self->{ERROR_MSG} = 'You must choose at least one resource to continue.';
2550: return 0;
2551: }
1.171 foxr 2552: # For each of the attached options. If it's env var is undefined, set it to
2553: # an empty string instead.. an undef'd env var means no choices selected.
2554: #
2555:
2556: my $option_vars = $self->{OPTION_VARS};
2557: if ($option_vars) {
2558: foreach my $var (@$option_vars) {
2559: my $env_name = "form.".$var."_forminput";
2560: if (!defined($env{$env_name})) {
2561: $env{$env_name} = '';
2562: $helper->{VARS}->{$var} = '';
2563: }
2564: }
2565: }
2566:
1.14 bowersj2 2567:
1.5 bowersj2 2568: if (defined($self->{NEXTSTATE})) {
2569: $helper->changeState($self->{NEXTSTATE});
2570: }
1.6 bowersj2 2571:
2572: return 1;
1.5 bowersj2 2573: }
2574:
2575: 1;
2576:
2577: package Apache::lonhelper::student;
2578:
2579: =pod
2580:
1.44 bowersj2 2581: =head2 Element: studentX<student, helper element>
1.5 bowersj2 2582:
2583: Student elements display a choice of students enrolled in the current
2584: course. Currently it is primitive; this is expected to evolve later.
2585:
1.48 bowersj2 2586: Student elements take the following attributes:
2587:
2588: =over 4
2589:
2590: =item * B<variable>:
2591:
2592: Does what it usually does: declare which helper variable to put the
2593: result in.
2594:
2595: =item * B<multichoice>:
2596:
2597: If true allows the user to select multiple students. Defaults to false.
2598:
2599: =item * B<coursepersonnel>:
2600:
2601: If true adds the course personnel to the top of the student
2602: selection. Defaults to false.
2603:
2604: =item * B<activeonly>:
2605:
2606: If true, only active students and course personnel will be
2607: shown. Defaults to false.
2608:
1.123 albertel 2609: =item * B<emptyallowed>:
2610:
2611: If true, the selection of no users is allowed. Defaults to false.
2612:
1.48 bowersj2 2613: =back
1.5 bowersj2 2614:
2615: =cut
2616:
2617: no strict;
2618: @ISA = ("Apache::lonhelper::element");
2619: use strict;
1.59 bowersj2 2620: use Apache::lonlocal;
1.100 albertel 2621: use Apache::lonnet;
1.139 foxr 2622:
1.5 bowersj2 2623: BEGIN {
1.7 bowersj2 2624: &Apache::lonhelper::register('Apache::lonhelper::student',
1.5 bowersj2 2625: ('student'));
2626: }
2627:
2628: sub new {
2629: my $ref = Apache::lonhelper::element->new();
2630: bless($ref);
2631: }
1.4 bowersj2 2632:
1.5 bowersj2 2633: sub start_student {
1.4 bowersj2 2634: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2635:
2636: if ($target ne 'helper') {
2637: return '';
2638: }
2639:
1.5 bowersj2 2640: $paramHash->{'variable'} = $token->[2]{'variable'};
2641: $helper->declareVar($paramHash->{'variable'});
2642: $paramHash->{'multichoice'} = $token->[2]{'multichoice'};
1.39 bowersj2 2643: $paramHash->{'coursepersonnel'} = $token->[2]{'coursepersonnel'};
1.93 albertel 2644: $paramHash->{'activeonly'} = $token->[2]{'activeonly'};
1.12 bowersj2 2645: if (defined($token->[2]{'nextstate'})) {
2646: $paramHash->{NEXTSTATE} = $token->[2]{'nextstate'};
2647: }
1.123 albertel 2648: $paramHash->{'emptyallowed'} = $token->[2]{'emptyallowed'};
1.12 bowersj2 2649:
1.5 bowersj2 2650: }
2651:
2652: sub end_student {
2653: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2654:
2655: if ($target ne 'helper') {
2656: return '';
2657: }
2658: Apache::lonhelper::student->new();
1.3 bowersj2 2659: }
1.5 bowersj2 2660:
2661: sub render {
2662: my $self = shift;
2663: my $result = '';
2664: my $buttons = '';
1.18 bowersj2 2665: my $var = $self->{'variable'};
1.5 bowersj2 2666:
2667:
2668: if (defined $self->{ERROR_MSG}) {
2669: $result .= '<font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br /><br />';
2670: }
2671:
1.126 albertel 2672: my %defaultUsers;
2673: if (defined($self->{DEFAULT_VALUE})) {
2674: my $valueFunc = eval($self->{DEFAULT_VALUE});
2675: die 'Error in default value code for variable ' .
2676: $self->{'variable'} . ', Perl said: ' . $@ if $@;
2677: my @defaultUsers = &$valueFunc($helper, $self);
2678: if (!$self->{'multichoice'} && @defaultUsers) { # only allowed 1
2679: @defaultUsers = ($defaultUsers[0]);
2680: }
2681: %defaultUsers = map { if ($_) {($_,1) } } @defaultUsers;
2682: delete($defaultUsers{''});
2683: }
1.139 foxr 2684:
2685:
1.147 foxr 2686: my ($course_personnel,
2687: $current_members,
2688: $expired_members,
1.153 foxr 2689: $future_members) =
2690: &Apache::lonselstudent::get_people_in_class($env{'request.course.sec'});
1.139 foxr 2691:
2692:
1.39 bowersj2 2693:
2694: # Load up the non-students, if necessary
1.147 foxr 2695:
1.39 bowersj2 2696: if ($self->{'coursepersonnel'}) {
1.147 foxr 2697: unshift @$current_members, (@$course_personnel);
1.39 bowersj2 2698: }
1.5 bowersj2 2699:
2700:
1.139 foxr 2701: # Current personel
2702:
1.158 albertel 2703: $result .= '<h4>'.&mt('Select Currently Enrolled Students and Active Course Personnel').'</h4>';
1.148 foxr 2704: $result .= &Apache::lonselstudent::render_student_list( $current_members,
1.149 foxr 2705: "helpform",
2706: "current",
2707: \%defaultUsers,
2708: $self->{'multichoice'},
2709: $self->{'variable'},
2710: 1);
1.139 foxr 2711:
1.132 foxr 2712:
1.139 foxr 2713: # If activeonly is not set then we can also give the expired students:
2714: #
1.158 albertel 2715: if (!$self->{'activeonly'} && ((scalar(@$future_members)) > 0)) {
1.132 foxr 2716:
1.140 albertel 2717: # And future.
2718:
1.158 albertel 2719: $result .= '<h4>'.&mt('Select Future Enrolled Students and Future Course Personnel').'</h4>';
1.156 foxr 2720:
1.148 foxr 2721: $result .= &Apache::lonselstudent::render_student_list( $future_members,
1.149 foxr 2722: "helpform",
2723: "future",
2724: \%defaultUsers,
2725: $self->{'multichoice'},
2726: $self->{'variable'},
2727: 0);
1.158 albertel 2728: }
2729: if (!$self->{'activeonly'} && ((scalar(@$expired_members)) > 0)) {
1.139 foxr 2730: # Past
1.39 bowersj2 2731:
1.158 albertel 2732: $result .= '<h4>'.&mt('Select Previously Enrolled Students and Inactive Course Personnel').'</h4>';
1.148 foxr 2733: $result .= &Apache::lonselstudent::render_student_list($expired_members,
1.149 foxr 2734: "helpform",
2735: "past",
2736: \%defaultUsers,
2737: $self->{'multichoice'},
2738: $self->{'variable'},
2739: 0);
1.132 foxr 2740: }
1.5 bowersj2 2741:
1.113 foxr 2742:
2743:
1.5 bowersj2 2744: return $result;
2745: }
2746:
1.6 bowersj2 2747: sub postprocess {
2748: my $self = shift;
2749:
1.157 raeburn 2750: my $result = $env{'form.' . $self->{'variable'} . '_forminput'};
1.123 albertel 2751: if (!$result && !$self->{'emptyallowed'}) {
2752: if ($self->{'coursepersonnel'}) {
2753: $self->{ERROR_MSG} =
2754: &mt('You must choose at least one user to continue.');
2755: } else {
2756: $self->{ERROR_MSG} =
2757: &mt('You must choose at least one student to continue.');
2758: }
1.6 bowersj2 2759: return 0;
2760: }
2761:
2762: if (defined($self->{NEXTSTATE})) {
2763: $helper->changeState($self->{NEXTSTATE});
2764: }
2765:
2766: return 1;
2767: }
2768:
1.5 bowersj2 2769: 1;
2770:
2771: package Apache::lonhelper::files;
2772:
2773: =pod
2774:
1.44 bowersj2 2775: =head2 Element: filesX<files, helper element>
1.5 bowersj2 2776:
2777: files allows the users to choose files from a given directory on the
2778: server. It is always multichoice and stores the result as a triple-pipe
2779: delimited entry in the helper variables.
2780:
2781: Since it is extremely unlikely that you can actually code a constant
2782: representing the directory you wish to allow the user to search, <files>
2783: takes a subroutine that returns the name of the directory you wish to
2784: have the user browse.
2785:
2786: files accepts the attribute "variable" to control where the files chosen
2787: are put. It accepts the attribute "multichoice" as the other attribute,
2788: defaulting to false, which if true will allow the user to select more
2789: then one choice.
2790:
1.44 bowersj2 2791: <files> accepts three subtags:
2792:
2793: =over 4
2794:
2795: =item * B<nextstate>: works as it does with the other tags.
2796:
2797: =item * B<filechoice>: When the contents of this tag are surrounded by
2798: "sub {" and "}", will return a string representing what directory
2799: on the server to allow the user to choose files from.
2800:
2801: =item * B<filefilter>: Should contain Perl code that when surrounded
2802: by "sub { my $filename = shift; " and "}", returns a true value if
2803: the user can pick that file, or false otherwise. The filename
2804: passed to the function will be just the name of the file, with no
2805: path info. By default, a filter function will be used that will
2806: mask out old versions of files. This function is available as
2807: Apache::lonhelper::files::not_old_version if you want to use it to
2808: composite your own filters.
2809:
2810: =back
2811:
2812: B<General security note>: You should ensure the user can not somehow
2813: pass something into your code that would allow them to look places
2814: they should not be able to see, like the C</etc/> directory. However,
2815: the security impact would be minimal, since it would only expose
2816: the existence of files, there should be no way to parlay that into
2817: viewing the files.
1.5 bowersj2 2818:
2819: =cut
2820:
2821: no strict;
2822: @ISA = ("Apache::lonhelper::element");
2823: use strict;
1.59 bowersj2 2824: use Apache::lonlocal;
1.100 albertel 2825: use Apache::lonnet;
1.32 bowersj2 2826: use Apache::lonpubdir; # for getTitleString
2827:
1.5 bowersj2 2828: BEGIN {
1.7 bowersj2 2829: &Apache::lonhelper::register('Apache::lonhelper::files',
2830: ('files', 'filechoice', 'filefilter'));
1.5 bowersj2 2831: }
2832:
1.44 bowersj2 2833: sub not_old_version {
2834: my $file = shift;
2835:
2836: # Given a file name, return false if it is an "old version" of a
2837: # file, or true if it is not.
2838:
2839: if ($file =~ /^.*\.[0-9]+\.[A-Za-z]+(\.meta)?$/) {
2840: return 0;
2841: }
2842: return 1;
2843: }
2844:
1.5 bowersj2 2845: sub new {
2846: my $ref = Apache::lonhelper::element->new();
2847: bless($ref);
2848: }
2849:
2850: sub start_files {
2851: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2852:
2853: if ($target ne 'helper') {
2854: return '';
2855: }
2856: $paramHash->{'variable'} = $token->[2]{'variable'};
2857: $helper->declareVar($paramHash->{'variable'});
2858: $paramHash->{'multichoice'} = $token->[2]{'multichoice'};
2859: }
2860:
2861: sub end_files {
2862: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2863:
2864: if ($target ne 'helper') {
2865: return '';
2866: }
2867: if (!defined($paramHash->{FILTER_FUNC})) {
2868: $paramHash->{FILTER_FUNC} = sub { return 1; };
2869: }
2870: Apache::lonhelper::files->new();
2871: }
2872:
2873: sub start_filechoice {
2874: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2875:
2876: if ($target ne 'helper') {
2877: return '';
2878: }
2879: $paramHash->{'filechoice'} = Apache::lonxml::get_all_text('/filechoice',
2880: $parser);
2881: }
2882:
2883: sub end_filechoice { return ''; }
2884:
2885: sub start_filefilter {
2886: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
2887:
2888: if ($target ne 'helper') {
2889: return '';
2890: }
2891:
2892: my $contents = Apache::lonxml::get_all_text('/filefilter',
2893: $parser);
2894: $contents = 'sub { my $filename = shift; ' . $contents . '}';
2895: $paramHash->{FILTER_FUNC} = eval $contents;
2896: }
2897:
2898: sub end_filefilter { return ''; }
1.3 bowersj2 2899:
1.87 matthew 2900: {
2901: # used to generate unique id attributes for <input> tags.
2902: # internal use only.
2903: my $id=0;
2904: sub new_id { return $id++;}
2905: }
2906:
1.3 bowersj2 2907: sub render {
2908: my $self = shift;
1.5 bowersj2 2909: my $result = '';
2910: my $var = $self->{'variable'};
2911:
2912: my $subdirFunc = eval('sub {' . $self->{'filechoice'} . '}');
1.11 bowersj2 2913: die 'Error in resource filter code for variable ' .
2914: {'variable'} . ', Perl said:' . $@ if $@;
2915:
1.5 bowersj2 2916: my $subdir = &$subdirFunc();
2917:
2918: my $filterFunc = $self->{FILTER_FUNC};
1.44 bowersj2 2919: if (!defined($filterFunc)) {
2920: $filterFunc = ¬_old_version;
2921: }
1.5 bowersj2 2922: my $buttons = '';
1.22 bowersj2 2923: my $type = 'radio';
2924: if ($self->{'multichoice'}) {
2925: $type = 'checkbox';
2926: }
1.5 bowersj2 2927:
2928: if ($self->{'multichoice'}) {
2929: $result = <<SCRIPT;
1.112 albertel 2930: <script type="text/javascript">
2931: // <!--
1.18 bowersj2 2932: function checkall(value, checkName) {
1.15 bowersj2 2933: for (i=0; i<document.forms.helpform.elements.length; i++) {
2934: ele = document.forms.helpform.elements[i];
1.157 raeburn 2935: if (ele.name == checkName + '_forminput') {
1.15 bowersj2 2936: document.forms.helpform.elements[i].checked=value;
1.5 bowersj2 2937: }
2938: }
2939: }
1.21 bowersj2 2940:
1.22 bowersj2 2941: function checkallclass(value, className) {
1.21 bowersj2 2942: for (i=0; i<document.forms.helpform.elements.length; i++) {
2943: ele = document.forms.helpform.elements[i];
1.22 bowersj2 2944: if (ele.type == "$type" && ele.onclick) {
1.21 bowersj2 2945: document.forms.helpform.elements[i].checked=value;
2946: }
2947: }
2948: }
1.112 albertel 2949: // -->
1.5 bowersj2 2950: </script>
2951: SCRIPT
1.68 sakharuk 2952: my %lt=&Apache::lonlocal::texthash(
2953: 'saf' => "Select All Files",
2954: 'uaf' => "Unselect All Files");
2955: $buttons = <<BUTTONS;
1.5 bowersj2 2956: <br />
1.68 sakharuk 2957: <input type="button" onclick="checkall(true, '$var')" value="$lt{'saf'}" />
2958: <input type="button" onclick="checkall(false, '$var')" value="$lt{'uaf'}" />
1.23 bowersj2 2959: BUTTONS
2960:
1.69 sakharuk 2961: %lt=&Apache::lonlocal::texthash(
1.68 sakharuk 2962: 'sap' => "Select All Published",
2963: 'uap' => "Unselect All Published");
1.23 bowersj2 2964: if ($helper->{VARS}->{'construction'}) {
1.68 sakharuk 2965: $buttons .= <<BUTTONS;
2966: <input type="button" onclick="checkallclass(true, 'Published')" value="$lt{'sap'}" />
2967: <input type="button" onclick="checkallclass(false, 'Published')" value="$lt{'uap'}" />
1.5 bowersj2 2968: <br />
2969: BUTTONS
1.23 bowersj2 2970: }
1.5 bowersj2 2971: }
2972:
2973: # Get the list of files in this directory.
1.183 raeburn 2974: my (@fileList,$listref,$listerror);
1.5 bowersj2 2975:
2976: # If the subdirectory is in local CSTR space
1.47 albertel 2977: my $metadir;
1.185 raeburn 2978: my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
1.186 ! www 2979: if ($subdir =~ m{^(?:\Q$londocroot\E)*/priv/[^/]+/[^/]+/(.*)$}) {
1.184 www 2980: my $innerpath=$1;
1.186 ! www 2981: unless ($subdir=~m{^\Q$londocroot\E}) {
! 2982: $subdir=$londocroot.$subdir;
! 2983: }
1.110 albertel 2984: my ($user,$domain)=
1.184 www 2985: &Apache::loncacc::constructaccess($subdir);
2986: $metadir='/res/'.$domain.'/'.$user.'/'.$innerpath;
1.183 raeburn 2987: ($listref,$listerror) =
2988: &Apache::lonnet::dirlist($subdir,$domain,$user,undef,undef,'/');
1.5 bowersj2 2989: } else {
2990: # local library server resource space
1.183 raeburn 2991: ($listref,$listerror) =
2992: &Apache::lonnet::dirlist($subdir,$env{'user.domain'},$env{'user.name'},undef,undef,'/');
1.5 bowersj2 2993: }
1.3 bowersj2 2994:
1.44 bowersj2 2995: # Sort the fileList into order
1.183 raeburn 2996: if (ref($listref) eq 'ARRAY') {
2997: @fileList = sort {lc($a) cmp lc($b)} @{$listref};
2998: }
1.44 bowersj2 2999:
1.5 bowersj2 3000: $result .= $buttons;
3001:
1.6 bowersj2 3002: if (defined $self->{ERROR_MSG}) {
3003: $result .= '<br /><font color="#FF0000">' . $self->{ERROR_MSG} . '</font><br /><br />';
3004: }
3005:
1.20 bowersj2 3006: $result .= '<table border="0" cellpadding="2" cellspacing="0">';
1.5 bowersj2 3007:
3008: # Keeps track if there are no choices, prints appropriate error
3009: # if there are none.
3010: my $choices = 0;
3011: # Print each legitimate file choice.
3012: for my $file (@fileList) {
3013: $file = (split(/&/, $file))[0];
3014: if ($file eq '.' || $file eq '..') {
3015: next;
3016: }
3017: my $fileName = $subdir .'/'. $file;
3018: if (&$filterFunc($file)) {
1.24 sakharuk 3019: my $status;
3020: my $color;
3021: if ($helper->{VARS}->{'construction'}) {
3022: ($status, $color) = @{fileState($subdir, $file)};
3023: } else {
3024: $status = '';
3025: $color = '';
3026: }
1.22 bowersj2 3027:
1.32 bowersj2 3028: # Get the title
1.47 albertel 3029: my $title = Apache::lonpubdir::getTitleString(($metadir?$metadir:$subdir) .'/'. $file);
1.32 bowersj2 3030:
1.22 bowersj2 3031: # Netscape 4 is stupid and there's nowhere to put the
3032: # information on the input tag that the file is Published,
3033: # Unpublished, etc. In *real* browsers we can just say
3034: # "class='Published'" and check the className attribute of
3035: # the input tag, but Netscape 4 is too stupid to understand
3036: # that attribute, and un-comprehended attributes are not
3037: # reflected into the object model. So instead, what I do
3038: # is either have or don't have an "onclick" handler that
3039: # does nothing, give Published files the onclick handler, and
3040: # have the checker scripts check for that. Stupid and clumsy,
3041: # and only gives us binary "yes/no" information (at least I
3042: # couldn't figure out how to reach into the event handler's
3043: # actual code to retreive a value), but it works well enough
3044: # here.
1.23 bowersj2 3045:
1.22 bowersj2 3046: my $onclick = '';
1.23 bowersj2 3047: if ($status eq 'Published' && $helper->{VARS}->{'construction'}) {
1.22 bowersj2 3048: $onclick = 'onclick="a=1" ';
3049: }
1.87 matthew 3050: my $id = &new_id();
1.20 bowersj2 3051: $result .= '<tr><td align="right"' . " bgcolor='$color'>" .
1.22 bowersj2 3052: "<input $onclick type='$type' name='" . $var
1.157 raeburn 3053: . "_forminput' ".qq{id="$id"}." value='" . HTML::Entities::encode($fileName,"<>&\"'").
1.5 bowersj2 3054: "'";
3055: if (!$self->{'multichoice'} && $choices == 0) {
1.111 albertel 3056: $result .= ' checked="checked"';
1.5 bowersj2 3057: }
1.87 matthew 3058: $result .= "/></td><td bgcolor='$color'>".
3059: qq{<label for="$id">}. $file . "</label></td>" .
1.32 bowersj2 3060: "<td bgcolor='$color'>$title</td>" .
3061: "<td bgcolor='$color'>$status</td>" . "</tr>\n";
1.5 bowersj2 3062: $choices++;
3063: }
3064: }
3065:
3066: $result .= "</table>\n";
3067:
3068: if (!$choices) {
1.47 albertel 3069: $result .= '<font color="#FF0000">There are no files available to select in this directory ('.$subdir.'). Please go back and select another option.</font><br /><br />';
1.5 bowersj2 3070: }
3071:
3072: $result .= $buttons;
3073:
3074: return $result;
1.20 bowersj2 3075: }
3076:
3077: # Determine the state of the file: Published, unpublished, modified.
3078: # Return the color it should be in and a label as a two-element array
3079: # reference.
3080: # Logic lifted from lonpubdir.pm, even though I don't know that it's still
3081: # the most right thing to do.
3082:
3083: sub fileState {
3084: my $constructionSpaceDir = shift;
3085: my $file = shift;
3086:
1.100 albertel 3087: my ($uname,$udom)=($env{'user.name'},$env{'user.domain'});
3088: if ($env{'request.role'}=~/^ca\./) {
3089: (undef,$udom,$uname)=split(/\//,$env{'request.role'});
1.86 albertel 3090: }
1.20 bowersj2 3091: my $docroot = $Apache::lonnet::perlvar{'lonDocRoot'};
3092: my $subdirpart = $constructionSpaceDir;
1.185 raeburn 3093: $subdirpart =~ s{^\Q$docroot/priv/$udom/$uname\E}{};
1.86 albertel 3094: my $resdir = $docroot . '/res/' . $udom . '/' . $uname .
1.20 bowersj2 3095: $subdirpart;
3096:
3097: my @constructionSpaceFileStat = stat($constructionSpaceDir . '/' . $file);
3098: my @resourceSpaceFileStat = stat($resdir . '/' . $file);
3099: if (!@resourceSpaceFileStat) {
3100: return ['Unpublished', '#FFCCCC'];
3101: }
3102:
3103: my $constructionSpaceFileModified = $constructionSpaceFileStat[9];
3104: my $resourceSpaceFileModified = $resourceSpaceFileStat[9];
3105:
3106: if ($constructionSpaceFileModified > $resourceSpaceFileModified) {
3107: return ['Modified', '#FFFFCC'];
3108: }
3109: return ['Published', '#CCFFCC'];
1.4 bowersj2 3110: }
1.5 bowersj2 3111:
1.4 bowersj2 3112: sub postprocess {
3113: my $self = shift;
1.157 raeburn 3114: my $result = $env{'form.' . $self->{'variable'} . '_forminput'};
1.6 bowersj2 3115: if (!$result) {
3116: $self->{ERROR_MSG} = 'You must choose at least one file '.
3117: 'to continue.';
3118: return 0;
3119: }
3120:
1.5 bowersj2 3121: if (defined($self->{NEXTSTATE})) {
3122: $helper->changeState($self->{NEXTSTATE});
1.3 bowersj2 3123: }
1.6 bowersj2 3124:
3125: return 1;
1.3 bowersj2 3126: }
1.8 bowersj2 3127:
3128: 1;
3129:
1.11 bowersj2 3130: package Apache::lonhelper::section;
3131:
3132: =pod
3133:
1.44 bowersj2 3134: =head2 Element: sectionX<section, helper element>
1.11 bowersj2 3135:
3136: <section> allows the user to choose one or more sections from the current
3137: course.
3138:
1.134 albertel 3139: It takes the standard attributes "variable", "multichoice",
3140: "allowempty" and "nextstate", meaning what they do for most other
3141: elements.
3142:
3143: also takes a boolean 'onlysections' whcih will restrict this to only
3144: have sections and not include groups
1.11 bowersj2 3145:
3146: =cut
3147:
3148: no strict;
3149: @ISA = ("Apache::lonhelper::choices");
3150: use strict;
3151:
3152: BEGIN {
3153: &Apache::lonhelper::register('Apache::lonhelper::section',
3154: ('section'));
3155: }
3156:
3157: sub new {
3158: my $ref = Apache::lonhelper::choices->new();
3159: bless($ref);
3160: }
3161:
3162: sub start_section {
3163: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3164:
3165: if ($target ne 'helper') {
3166: return '';
3167: }
1.12 bowersj2 3168:
3169: $paramHash->{CHOICES} = [];
3170:
1.11 bowersj2 3171: $paramHash->{'variable'} = $token->[2]{'variable'};
3172: $helper->declareVar($paramHash->{'variable'});
3173: $paramHash->{'multichoice'} = $token->[2]{'multichoice'};
1.133 albertel 3174: $paramHash->{'allowempty'} = $token->[2]{'allowempty'};
1.11 bowersj2 3175: if (defined($token->[2]{'nextstate'})) {
1.12 bowersj2 3176: $paramHash->{NEXTSTATE} = $token->[2]{'nextstate'};
1.11 bowersj2 3177: }
3178:
3179: # Populate the CHOICES element
3180: my %choices;
3181:
3182: my $section = Apache::loncoursedata::CL_SECTION();
3183: my $classlist = Apache::loncoursedata::get_classlist();
1.143 albertel 3184: foreach my $user (keys(%$classlist)) {
3185: my $section_name = $classlist->{$user}[$section];
3186: if (!$section_name) {
1.11 bowersj2 3187: $choices{"No section assigned"} = "";
3188: } else {
1.143 albertel 3189: $choices{$section_name} = $section_name;
1.11 bowersj2 3190: }
1.12 bowersj2 3191: }
3192:
1.143 albertel 3193: if (exists($choices{"No section assigned"})) {
3194: push(@{$paramHash->{CHOICES}},
3195: ['No section assigned','No section assigned']);
3196: delete($choices{"No section assigned"});
3197: }
3198: for my $section_name (sort {lc($a) cmp lc($b) } (keys(%choices))) {
3199: push @{$paramHash->{CHOICES}}, [$section_name, $section_name];
1.134 albertel 3200: }
3201: return if ($token->[2]{'onlysections'});
3202:
3203: # add in groups to the end of the list
1.151 raeburn 3204: my %curr_groups = &Apache::longroup::coursegroups();
1.142 albertel 3205: foreach my $group_name (sort(keys(%curr_groups))) {
3206: push(@{$paramHash->{CHOICES}}, [$group_name, $group_name]);
1.11 bowersj2 3207: }
3208: }
3209:
1.12 bowersj2 3210: sub end_section {
3211: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
1.11 bowersj2 3212:
1.12 bowersj2 3213: if ($target ne 'helper') {
3214: return '';
3215: }
3216: Apache::lonhelper::section->new();
3217: }
1.11 bowersj2 3218: 1;
3219:
1.128 raeburn 3220: package Apache::lonhelper::group;
3221:
3222: =pod
3223:
3224: =head2 Element: groupX<group, helper element>
3225:
1.134 albertel 3226: <group> allows the user to choose one or more groups from the current course.
3227:
3228: It takes the standard attributes "variable", "multichoice",
3229: "allowempty" and "nextstate", meaning what they do for most other
3230: elements.
1.128 raeburn 3231:
3232: =cut
3233:
3234: no strict;
3235: @ISA = ("Apache::lonhelper::choices");
3236: use strict;
3237:
3238: BEGIN {
3239: &Apache::lonhelper::register('Apache::lonhelper::group',
3240: ('group'));
3241: }
3242:
3243: sub new {
3244: my $ref = Apache::lonhelper::choices->new();
3245: bless($ref);
3246: }
3247:
3248: sub start_group {
3249: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3250:
3251: if ($target ne 'helper') {
3252: return '';
3253: }
3254:
3255: $paramHash->{CHOICES} = [];
3256:
3257: $paramHash->{'variable'} = $token->[2]{'variable'};
3258: $helper->declareVar($paramHash->{'variable'});
3259: $paramHash->{'multichoice'} = $token->[2]{'multichoice'};
1.133 albertel 3260: $paramHash->{'allowempty'} = $token->[2]{'allowempty'};
1.128 raeburn 3261: if (defined($token->[2]{'nextstate'})) {
3262: $paramHash->{NEXTSTATE} = $token->[2]{'nextstate'};
3263: }
3264:
3265: # Populate the CHOICES element
3266: my %choices;
3267:
1.151 raeburn 3268: my %curr_groups = &Apache::longroup::coursegroups();
1.143 albertel 3269: foreach my $group_name (sort {lc($a) cmp lc($b)} (keys(%curr_groups))) {
1.142 albertel 3270: push(@{$paramHash->{CHOICES}}, [$group_name, $group_name]);
1.128 raeburn 3271: }
3272: }
1.134 albertel 3273:
1.128 raeburn 3274: sub end_group {
3275: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3276:
3277: if ($target ne 'helper') {
3278: return '';
3279: }
3280: Apache::lonhelper::group->new();
3281: }
3282: 1;
3283:
1.34 bowersj2 3284: package Apache::lonhelper::string;
3285:
3286: =pod
3287:
1.44 bowersj2 3288: =head2 Element: stringX<string, helper element>
1.34 bowersj2 3289:
3290: string elements provide a string entry field for the user. string elements
3291: take the usual 'variable' and 'nextstate' parameters. string elements
3292: also pass through 'maxlength' and 'size' attributes to the input tag.
1.180 foxr 3293: Since you could have multiple strings in a helper state, each with its own
3294: validator, all but the last string should have
3295: noproceed='1' so that _all_ validators are evaluated before the next
3296: state can be reached.
1.34 bowersj2 3297:
3298: string honors the defaultvalue tag, if given.
3299:
1.38 bowersj2 3300: string honors the validation function, if given.
3301:
1.34 bowersj2 3302: =cut
3303:
3304: no strict;
3305: @ISA = ("Apache::lonhelper::element");
3306: use strict;
1.76 sakharuk 3307: use Apache::lonlocal;
1.34 bowersj2 3308:
3309: BEGIN {
3310: &Apache::lonhelper::register('Apache::lonhelper::string',
3311: ('string'));
3312: }
3313:
3314: sub new {
3315: my $ref = Apache::lonhelper::element->new();
1.180 foxr 3316: $ref->{'PROCEED'} = 1; # By default postprocess goes to next state.
1.34 bowersj2 3317: bless($ref);
3318: }
3319:
3320: # CONSTRUCTION: Construct the message element from the XML
3321: sub start_string {
3322: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3323:
3324: if ($target ne 'helper') {
3325: return '';
3326: }
3327:
3328: $paramHash->{'variable'} = $token->[2]{'variable'};
3329: $helper->declareVar($paramHash->{'variable'});
3330: $paramHash->{'nextstate'} = $token->[2]{'nextstate'};
3331: $paramHash->{'maxlength'} = $token->[2]{'maxlength'};
3332: $paramHash->{'size'} = $token->[2]{'size'};
3333: return '';
3334: }
3335:
3336: sub end_string {
3337: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3338:
1.180 foxr 3339:
1.34 bowersj2 3340: if ($target ne 'helper') {
3341: return '';
3342: }
1.180 foxr 3343: my $state = Apache::lonhelper::string->new();
3344:
3345:
3346: if(&Apache::lonxml::get_param('noproceed', $parstack, $safeeval, undef, 1)) {
3347: $state->noproceed();
3348: }
3349:
3350:
3351:
1.34 bowersj2 3352: return '';
3353: }
3354:
1.180 foxr 3355: sub noproceed() {
3356: my $self = shift;
3357: $self->{PROCEED} = 0;
3358: }
3359:
1.34 bowersj2 3360: sub render {
3361: my $self = shift;
1.38 bowersj2 3362: my $result = '';
3363:
3364: if (defined $self->{ERROR_MSG}) {
1.97 albertel 3365: $result .= '<p><font color="#FF0000">' . $self->{ERROR_MSG} . '</font></p>';
1.38 bowersj2 3366: }
3367:
1.182 raeburn 3368: $result .= '<input type="text" name="' . $self->{'variable'} . '_forminput"';
1.34 bowersj2 3369:
3370: if (defined($self->{'size'})) {
3371: $result .= ' size="' . $self->{'size'} . '"';
3372: }
3373: if (defined($self->{'maxlength'})) {
3374: $result .= ' maxlength="' . $self->{'maxlength'} . '"';
3375: }
3376:
3377: if (defined($self->{DEFAULT_VALUE})) {
3378: my $valueFunc = eval($self->{DEFAULT_VALUE});
3379: die 'Error in default value code for variable ' .
3380: $self->{'variable'} . ', Perl said: ' . $@ if $@;
3381: $result .= ' value="' . &$valueFunc($helper, $self) . '"';
3382: }
3383:
3384: $result .= ' />';
3385:
3386: return $result;
3387: }
3388:
3389: # If a NEXTSTATE was given, switch to it
3390: sub postprocess {
3391: my $self = shift;
1.38 bowersj2 3392:
3393: if (defined($self->{VALIDATOR})) {
3394: my $validator = eval($self->{VALIDATOR});
1.138 albertel 3395: die 'Died during evaluation of validator code; Perl said: ' . $@ if $@;
1.38 bowersj2 3396: my $invalid = &$validator($helper, $state, $self, $self->getValue());
3397: if ($invalid) {
3398: $self->{ERROR_MSG} = $invalid;
3399: return 0;
3400: }
3401: }
3402:
1.180 foxr 3403: if (defined($self->{'nextstate'}) && $self->{PROCEED}) {
1.38 bowersj2 3404: $helper->changeState($self->{'nextstate'});
1.34 bowersj2 3405: }
3406:
3407: return 1;
3408: }
3409:
3410: 1;
3411:
1.8 bowersj2 3412: package Apache::lonhelper::general;
3413:
3414: =pod
3415:
1.44 bowersj2 3416: =head2 General-purpose tag: <exec>X<exec, helper tag>
1.8 bowersj2 3417:
1.44 bowersj2 3418: The contents of the exec tag are executed as Perl code, B<not> inside a
1.100 albertel 3419: safe space, so the full range of $env and such is available. The code
1.8 bowersj2 3420: will be executed as a subroutine wrapped with the following code:
3421:
3422: "sub { my $helper = shift; my $state = shift;" and
3423:
3424: "}"
3425:
3426: The return value is ignored.
3427:
3428: $helper is the helper object. Feel free to add methods to the helper
3429: object to support whatever manipulation you may need to do (for instance,
3430: overriding the form location if the state is the final state; see
1.44 bowersj2 3431: parameter.helper for an example).
1.8 bowersj2 3432:
3433: $state is the $paramHash that has currently been generated and may
3434: be manipulated by the code in exec. Note that the $state is not yet
3435: an actual state B<object>, it is just a hash, so do not expect to
3436: be able to call methods on it.
3437:
3438: =cut
3439:
1.83 sakharuk 3440: use Apache::lonlocal;
1.102 albertel 3441: use Apache::lonnet;
1.83 sakharuk 3442:
1.8 bowersj2 3443: BEGIN {
3444: &Apache::lonhelper::register('Apache::lonhelper::general',
1.11 bowersj2 3445: 'exec', 'condition', 'clause',
3446: 'eval');
1.8 bowersj2 3447: }
3448:
3449: sub start_exec {
3450: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3451:
3452: if ($target ne 'helper') {
3453: return '';
3454: }
3455:
3456: my $code = &Apache::lonxml::get_all_text('/exec', $parser);
3457:
3458: $code = eval ('sub { my $helper = shift; my $state = shift; ' .
3459: $code . "}");
1.11 bowersj2 3460: die 'Error in <exec>, Perl said: '. $@ if $@;
1.8 bowersj2 3461: &$code($helper, $paramHash);
3462: }
3463:
3464: sub end_exec { return ''; }
3465:
3466: =pod
3467:
3468: =head2 General-purpose tag: <condition>
3469:
3470: The <condition> tag allows you to mask out parts of the helper code
3471: depending on some programatically determined condition. The condition
3472: tag contains a tag <clause> which contains perl code that when wrapped
3473: with "sub { my $helper = shift; my $state = shift; " and "}", returns
3474: a true value if the XML in the condition should be evaluated as a normal
3475: part of the helper, or false if it should be completely discarded.
3476:
3477: The <clause> tag must be the first sub-tag of the <condition> tag or
3478: it will not work as expected.
3479:
3480: =cut
3481:
3482: # The condition tag just functions as a marker, it doesn't have
3483: # to "do" anything. Technically it doesn't even have to be registered
3484: # with the lonxml code, but I leave this here to be explicit about it.
3485: sub start_condition { return ''; }
3486: sub end_condition { return ''; }
3487:
3488: sub start_clause {
3489: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3490:
3491: if ($target ne 'helper') {
3492: return '';
3493: }
3494:
3495: my $clause = Apache::lonxml::get_all_text('/clause', $parser);
3496: $clause = eval('sub { my $helper = shift; my $state = shift; '
3497: . $clause . '}');
1.11 bowersj2 3498: die 'Error in clause of condition, Perl said: ' . $@ if $@;
1.8 bowersj2 3499: if (!&$clause($helper, $paramHash)) {
3500: # Discard all text until the /condition.
1.155 albertel 3501: my $end_tag = $paramHash->{SKIPTAG} || '/condition';
3502: &Apache::lonxml::get_all_text($end_tag, $parser);
1.8 bowersj2 3503: }
3504: }
3505:
3506: sub end_clause { return ''; }
1.11 bowersj2 3507:
3508: =pod
3509:
1.44 bowersj2 3510: =head2 General-purpose tag: <eval>X<eval, helper tag>
1.11 bowersj2 3511:
3512: The <eval> tag will be evaluated as a subroutine call passed in the
3513: current helper object and state hash as described in <condition> above,
3514: but is expected to return a string to be printed directly to the
3515: screen. This is useful for dynamically generating messages.
3516:
3517: =cut
3518:
3519: # This is basically a type of message.
3520: # Programmatically setting $paramHash->{NEXTSTATE} would work, though
3521: # it's probably bad form.
3522:
3523: sub start_eval {
3524: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3525:
3526: if ($target ne 'helper') {
3527: return '';
3528: }
3529:
3530: my $program = Apache::lonxml::get_all_text('/eval', $parser);
3531: $program = eval('sub { my $helper = shift; my $state = shift; '
3532: . $program . '}');
3533: die 'Error in eval code, Perl said: ' . $@ if $@;
3534: $paramHash->{MESSAGE_TEXT} = &$program($helper, $paramHash);
3535: }
3536:
3537: sub end_eval {
3538: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3539:
3540: if ($target ne 'helper') {
3541: return '';
3542: }
3543:
3544: Apache::lonhelper::message->new();
3545: }
3546:
1.13 bowersj2 3547: 1;
3548:
1.27 bowersj2 3549: package Apache::lonhelper::final;
3550:
3551: =pod
3552:
1.44 bowersj2 3553: =head2 Element: finalX<final, helper tag>
1.27 bowersj2 3554:
3555: <final> is a special element that works with helpers that use the <finalcode>
1.44 bowersj2 3556: tagX<finalcode, helper tag>. It goes through all the states and elements, executing the <finalcode>
1.27 bowersj2 3557: snippets and collecting the results. Finally, it takes the user out of the
3558: helper, going to a provided page.
3559:
1.34 bowersj2 3560: If the parameter "restartCourse" is true, this will override the buttons and
1.176 bisitz 3561: will make a Save button (Finish Helper) that will re-initialize the course for them,
1.34 bowersj2 3562: which is useful for the Course Initialization helper so the users never see
3563: the old values taking effect.
3564:
1.93 albertel 3565: If the parameter "restartCourse" is not true a 'Finish' Button will be
3566: presented that takes the user back to whatever was defined as <exitpage>
3567:
1.27 bowersj2 3568: =cut
3569:
3570: no strict;
3571: @ISA = ("Apache::lonhelper::element");
3572: use strict;
1.62 matthew 3573: use Apache::lonlocal;
1.100 albertel 3574: use Apache::lonnet;
1.27 bowersj2 3575: BEGIN {
3576: &Apache::lonhelper::register('Apache::lonhelper::final',
3577: ('final', 'exitpage'));
3578: }
3579:
3580: sub new {
3581: my $ref = Apache::lonhelper::element->new();
3582: bless($ref);
3583: }
3584:
1.34 bowersj2 3585: sub start_final {
3586: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3587:
3588: if ($target ne 'helper') {
3589: return '';
3590: }
3591:
3592: $paramHash->{'restartCourse'} = $token->[2]{'restartCourse'};
3593:
3594: return '';
3595: }
1.27 bowersj2 3596:
3597: sub end_final {
3598: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3599:
3600: if ($target ne 'helper') {
3601: return '';
3602: }
3603:
3604: Apache::lonhelper::final->new();
3605:
3606: return '';
3607: }
3608:
3609: sub start_exitpage {
3610: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3611:
3612: if ($target ne 'helper') {
3613: return '';
3614: }
3615:
3616: $paramHash->{EXIT_PAGE} = &Apache::lonxml::get_all_text('/exitpage',
3617: $parser);
3618:
3619: return '';
3620: }
3621:
3622: sub end_exitpage { return ''; }
3623:
3624: sub render {
3625: my $self = shift;
3626:
3627: my @results;
3628:
3629: # Collect all the results
3630: for my $stateName (keys %{$helper->{STATES}}) {
3631: my $state = $helper->{STATES}->{$stateName};
3632:
3633: for my $element (@{$state->{ELEMENTS}}) {
3634: if (defined($element->{FINAL_CODE})) {
3635: # Compile the code.
1.31 bowersj2 3636: my $code = 'sub { my $helper = shift; my $element = shift; '
3637: . $element->{FINAL_CODE} . '}';
1.27 bowersj2 3638: $code = eval($code);
3639: die 'Error while executing final code for element with var ' .
3640: $element->{'variable'} . ', Perl said: ' . $@ if $@;
3641:
1.31 bowersj2 3642: my $result = &$code($helper, $element);
1.27 bowersj2 3643: if ($result) {
3644: push @results, $result;
3645: }
3646: }
3647: }
3648: }
3649:
1.40 bowersj2 3650: my $result;
1.27 bowersj2 3651:
1.40 bowersj2 3652: if (scalar(@results) != 0) {
3653: $result .= "<ul>\n";
3654: for my $re (@results) {
3655: $result .= ' <li>' . $re . "</li>\n";
3656: }
3657:
3658: if (!@results) {
1.59 bowersj2 3659: $result .= ' <li>' .
3660: &mt('No changes were made to current settings.') . '</li>';
1.40 bowersj2 3661: }
3662:
3663: $result .= '</ul>';
1.34 bowersj2 3664: }
3665:
1.93 albertel 3666: my $actionURL = $self->{EXIT_PAGE};
3667: my $targetURL = '';
1.176 bisitz 3668: my $finish=&mt('Save');
1.34 bowersj2 3669: if ($self->{'restartCourse'}) {
1.103 albertel 3670: $actionURL = '/adm/roles';
1.93 albertel 3671: $targetURL = '/adm/menu';
1.100 albertel 3672: if ($env{'course.'.$env{'request.course.id'}.'.url'}=~/^uploaded/) {
1.64 albertel 3673: $targetURL = '/adm/coursedocs';
3674: } else {
3675: $targetURL = '/adm/navmaps';
3676: }
1.100 albertel 3677: if ($env{'course.'.$env{'request.course.id'}.'.clonedfrom'}) {
1.45 bowersj2 3678: $targetURL = '/adm/parmset?overview=1';
3679: }
1.34 bowersj2 3680: }
1.170 schafran 3681: my $previous = HTML::Entities::encode(&mt("Back"), '<>&"');
3682: my $next = HTML::Entities::encode(&mt("Next"), '<>&"');
1.176 bisitz 3683: $result .= "<p>\n" .
1.179 droeschl 3684: "<form action='".$actionURL."' method='post' >\n" .
1.93 albertel 3685: "<input type='button' onclick='history.go(-1)' value='$previous' />" .
3686: "<input type='hidden' name='orgurl' value='$targetURL' />" .
3687: "<input type='hidden' name='selectrole' value='1' />\n" .
1.100 albertel 3688: "<input type='hidden' name='" . $env{'request.role'} .
1.93 albertel 3689: "' value='1' />\n<input type='submit' value='" . $finish . "' />\n" .
1.176 bisitz 3690: "</form></p>\n";
1.34 bowersj2 3691:
1.40 bowersj2 3692: return $result;
1.34 bowersj2 3693: }
3694:
3695: sub overrideForm {
1.93 albertel 3696: return 1;
1.27 bowersj2 3697: }
3698:
3699: 1;
3700:
1.13 bowersj2 3701: package Apache::lonhelper::parmwizfinal;
3702:
1.160 albertel 3703: # This is the final state for the parm helper. It is not generally useful,
1.13 bowersj2 3704: # so it is not perldoc'ed. It does its own processing.
3705: # It is represented with <parmwizfinal />, and
3706: # should later be moved to lonparmset.pm .
3707:
3708: no strict;
3709: @ISA = ('Apache::lonhelper::element');
3710: use strict;
1.69 sakharuk 3711: use Apache::lonlocal;
1.102 albertel 3712: use Apache::lonnet;
1.11 bowersj2 3713:
1.13 bowersj2 3714: BEGIN {
3715: &Apache::lonhelper::register('Apache::lonhelper::parmwizfinal',
3716: ('parmwizfinal'));
3717: }
3718:
3719: use Time::localtime;
3720:
3721: sub new {
3722: my $ref = Apache::lonhelper::choices->new();
3723: bless ($ref);
3724: }
3725:
3726: sub start_parmwizfinal { return ''; }
3727:
3728: sub end_parmwizfinal {
3729: my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
3730:
3731: if ($target ne 'helper') {
3732: return '';
3733: }
3734: Apache::lonhelper::parmwizfinal->new();
3735: }
3736:
3737: # Renders a form that, when submitted, will form the input to lonparmset.pm
3738: sub render {
3739: my $self = shift;
3740: my $vars = $helper->{VARS};
3741:
3742: # FIXME: Unify my designators with the standard ones
1.48 bowersj2 3743: my %dateTypeHash = ('open_date' => "opening date",
3744: 'due_date' => "due date",
3745: 'answer_date' => "answer date",
3746: 'tries' => 'number of tries',
3747: 'weight' => 'problem weight'
1.38 bowersj2 3748: );
1.13 bowersj2 3749: my %parmTypeHash = ('open_date' => "0_opendate",
3750: 'due_date' => "0_duedate",
1.38 bowersj2 3751: 'answer_date' => "0_answerdate",
1.48 bowersj2 3752: 'tries' => '0_maxtries',
3753: 'weight' => '0_weight' );
1.107 albertel 3754: my %realParmName = ('open_date' => "opendate",
3755: 'due_date' => "duedate",
3756: 'answer_date' => "answerdate",
3757: 'tries' => 'maxtries',
3758: 'weight' => 'weight' );
1.13 bowersj2 3759:
3760: my $affectedResourceId = "";
3761: my $parm_name = $parmTypeHash{$vars->{ACTION_TYPE}};
3762: my $level = "";
1.27 bowersj2 3763: my $resourceString;
3764: my $symb;
3765: my $paramlevel;
1.95 albertel 3766:
1.13 bowersj2 3767: # Print the granularity, depending on the action
3768: if ($vars->{GRANULARITY} eq 'whole_course') {
1.167 bisitz 3769: $resourceString .= '<li>'.&mt('for [_1]all resources in the course[_2]','<b>','</b>').'</li>';
1.104 albertel 3770: if ($vars->{TARGETS} eq 'course') {
1.150 albertel 3771: $level = 14; # general course, see lonparmset.pm perldoc
1.104 albertel 3772: } elsif ($vars->{TARGETS} eq 'section') {
1.150 albertel 3773: $level = 9;
3774: } elsif ($vars->{TARGETS} eq 'group') {
1.104 albertel 3775: $level = 6;
3776: } else {
3777: $level = 3;
3778: }
1.13 bowersj2 3779: $affectedResourceId = "0.0";
1.27 bowersj2 3780: $symb = 'a';
3781: $paramlevel = 'general';
1.13 bowersj2 3782: } elsif ($vars->{GRANULARITY} eq 'map') {
1.41 bowersj2 3783: my $navmap = Apache::lonnavmaps::navmap->new();
1.169 raeburn 3784: if (defined($navmap)) {
3785: my $res = $navmap->getByMapPc($vars->{RESOURCE_ID});
3786: my $title = $res->compTitle();
3787: $symb = $res->symb();
3788: $resourceString .= '<li>'.&mt('for the map named [_1]',"<b>$title</b>").'</li>';
3789: } else {
3790: $resourceString .= '<li>'.&mt('for the map ID [_1] (name unavailable)','<b>'.$vars->{RESOURCE_ID}.'</b>').'</li>';
3791: &Apache::lonnet::logthis('Retrieval of map title failed in lonhelper.pm - could not create navmap object for course.');
3792:
3793: }
1.104 albertel 3794: if ($vars->{TARGETS} eq 'course') {
1.150 albertel 3795: $level = 13; # general course, see lonparmset.pm perldoc
1.104 albertel 3796: } elsif ($vars->{TARGETS} eq 'section') {
1.150 albertel 3797: $level = 8;
3798: } elsif ($vars->{TARGETS} eq 'group') {
1.104 albertel 3799: $level = 5;
3800: } else {
3801: $level = 2;
3802: }
1.13 bowersj2 3803: $affectedResourceId = $vars->{RESOURCE_ID};
1.27 bowersj2 3804: $paramlevel = 'map';
1.13 bowersj2 3805: } else {
1.95 albertel 3806: my $part = $vars->{RESOURCE_ID_part};
3807: if ($part ne 'All Parts' && $part) { $parm_name=~s/^0/$part/; } else { $part=&mt('All Parts'); }
1.169 raeburn 3808: my $navmap = Apache::lonnavmaps::navmap->new();
3809: if (defined($navmap)) {
3810: my $res = $navmap->getById($vars->{RESOURCE_ID});
3811: $symb = $res->symb();
3812: my $title = $res->compTitle();
1.176 bisitz 3813: $resourceString .= '<li>'.&mt('for the resource named [_1], part [_2]',"<b>$title</b>","<b>$part</b>").'</li>';
1.169 raeburn 3814: } else {
1.176 bisitz 3815: $resourceString .= '<li>'.&mt('for the resource ID [_1] (name unavailable), part [_2]','<b>'.$vars->{RESOURCE_ID}.'</b>',"<b>$part</b>").'</li>';
1.169 raeburn 3816: &Apache::lonnet::logthis('Retrieval of resource title failed in lonhelper.pm - could not create navmap object for course.');
3817: }
1.104 albertel 3818: if ($vars->{TARGETS} eq 'course') {
1.150 albertel 3819: $level = 10; # general course, see lonparmset.pm perldoc
1.104 albertel 3820: } elsif ($vars->{TARGETS} eq 'section') {
1.150 albertel 3821: $level = 7;
3822: } elsif ($vars->{TARGETS} eq 'group') {
1.104 albertel 3823: $level = 4;
3824: } else {
3825: $level = 1;
3826: }
1.13 bowersj2 3827: $affectedResourceId = $vars->{RESOURCE_ID};
1.27 bowersj2 3828: $paramlevel = 'full';
1.13 bowersj2 3829: }
3830:
1.172 bisitz 3831: my $result = "<form name='helpform' method='post' action='/adm/parmset#$affectedResourceId&$parm_name&$level'>\n";
1.104 albertel 3832: $result .= "<input type='hidden' name='action' value='settable' />\n";
3833: $result .= "<input type='hidden' name='dis' value='helper' />\n";
1.107 albertel 3834: $result .= "<input type='hidden' name='pscat' value='".
3835: $realParmName{$vars->{ACTION_TYPE}}."' />\n";
1.95 albertel 3836: if ($vars->{GRANULARITY} eq 'resource') {
3837: $result .= "<input type='hidden' name='symb' value='".
3838: HTML::Entities::encode($symb,"'<>&\"") . "' />\n";
1.108 albertel 3839: } elsif ($vars->{GRANULARITY} eq 'map') {
3840: $result .= "<input type='hidden' name='pschp' value='".
3841: $affectedResourceId."' />\n";
1.95 albertel 3842: }
1.104 albertel 3843: my $part = $vars->{RESOURCE_ID_part};
3844: if ($part eq 'All Parts' || !$part) { $part=0; }
3845: $result .= "<input type='hidden' name='psprt' value='".
3846: HTML::Entities::encode($part,"'<>&\"") . "' />\n";
3847:
1.176 bisitz 3848: $result .= '<p class="LC_info">'
3849: .&mt('Confirm that this information is correct, then click "Save" to complete setting the parameter.')
3850: .'</p>'
3851: .'<ul>';
1.27 bowersj2 3852:
3853: # Print the type of manipulation:
1.73 albertel 3854: my $extra;
1.38 bowersj2 3855: if ($vars->{ACTION_TYPE} eq 'tries') {
1.73 albertel 3856: $extra = $vars->{TRIES};
1.38 bowersj2 3857: }
1.48 bowersj2 3858: if ($vars->{ACTION_TYPE} eq 'weight') {
1.73 albertel 3859: $extra = $vars->{WEIGHT};
3860: }
3861: $result .= "<li>";
1.74 matthew 3862: my $what = &mt($dateTypeHash{$vars->{ACTION_TYPE}});
1.73 albertel 3863: if ($extra) {
3864: $result .= &mt('Setting the [_1] to [_2]',"<b>$what</b>",$extra);
3865: } else {
3866: $result .= &mt('Setting the [_1]',"<b>$what</b>");
1.48 bowersj2 3867: }
1.38 bowersj2 3868: $result .= "</li>\n";
1.27 bowersj2 3869: if ($vars->{ACTION_TYPE} eq 'due_date' ||
3870: $vars->{ACTION_TYPE} eq 'answer_date') {
3871: # for due dates, we default to "date end" type entries
3872: $result .= "<input type='hidden' name='recent_date_end' " .
3873: "value='" . $vars->{PARM_DATE} . "' />\n";
3874: $result .= "<input type='hidden' name='pres_value' " .
3875: "value='" . $vars->{PARM_DATE} . "' />\n";
3876: $result .= "<input type='hidden' name='pres_type' " .
3877: "value='date_end' />\n";
3878: } elsif ($vars->{ACTION_TYPE} eq 'open_date') {
3879: $result .= "<input type='hidden' name='recent_date_start' ".
3880: "value='" . $vars->{PARM_DATE} . "' />\n";
3881: $result .= "<input type='hidden' name='pres_value' " .
3882: "value='" . $vars->{PARM_DATE} . "' />\n";
3883: $result .= "<input type='hidden' name='pres_type' " .
3884: "value='date_start' />\n";
1.38 bowersj2 3885: } elsif ($vars->{ACTION_TYPE} eq 'tries') {
3886: $result .= "<input type='hidden' name='pres_value' " .
3887: "value='" . $vars->{TRIES} . "' />\n";
1.104 albertel 3888: $result .= "<input type='hidden' name='pres_type' " .
3889: "value='int_pos' />\n";
1.48 bowersj2 3890: } elsif ($vars->{ACTION_TYPE} eq 'weight') {
3891: $result .= "<input type='hidden' name='pres_value' " .
3892: "value='" . $vars->{WEIGHT} . "' />\n";
1.38 bowersj2 3893: }
1.27 bowersj2 3894:
3895: $result .= $resourceString;
3896:
1.13 bowersj2 3897: # Print targets
3898: if ($vars->{TARGETS} eq 'course') {
1.167 bisitz 3899: $result .= '<li>'.&mt('for [_1]all students in course[_2]','<b>','</b>').'</li>';
1.13 bowersj2 3900: } elsif ($vars->{TARGETS} eq 'section') {
3901: my $section = $vars->{SECTION_NAME};
1.79 sakharuk 3902: $result .= '<li>'.&mt('for section [_1]',"<b>$section</b>").'</li>';
1.104 albertel 3903: $result .= "<input type='hidden' name='csec' value='" .
1.89 foxr 3904: HTML::Entities::encode($section,"'<>&\"") . "' />\n";
1.128 raeburn 3905: } elsif ($vars->{TARGETS} eq 'group') {
3906: my $group = $vars->{GROUP_NAME};
3907: $result .= '<li>'.&mt('for group [_1]',"<b>$group</b>").'</li>';
3908: $result .= "<input type='hidden' name='cgroup' value='" .
3909: HTML::Entities::encode($group,"'<>&\"") . "' />\n";
1.13 bowersj2 3910: } else {
3911: # FIXME: This is probably wasteful! Store the name!
3912: my $classlist = Apache::loncoursedata::get_classlist();
1.109 albertel 3913: my ($uname,$udom)=split(':',$vars->{USER_NAME});
1.106 albertel 3914: my $name = $classlist->{$uname.':'.$udom}->[6];
1.79 sakharuk 3915: $result .= '<li>'.&mt('for [_1]',"<b>$name</b>").'</li>';
1.13 bowersj2 3916: $result .= "<input type='hidden' name='uname' value='".
1.89 foxr 3917: HTML::Entities::encode($uname,"'<>&\"") . "' />\n";
1.13 bowersj2 3918: $result .= "<input type='hidden' name='udom' value='".
1.89 foxr 3919: HTML::Entities::encode($udom,"'<>&\"") . "' />\n";
1.13 bowersj2 3920: }
3921:
3922: # Print value
1.48 bowersj2 3923: if ($vars->{ACTION_TYPE} ne 'tries' && $vars->{ACTION_TYPE} ne 'weight') {
1.166 raeburn 3924: my $showdate = &Apache::lonlocal::locallocaltime($vars->{PARM_DATE});
3925: $result .= '<li>'.&mt('to [_1] ([_2])',"<b>".$showdate."</b>",Apache::lonnavmaps::timeToHumanString($vars->{PARM_DATE}))."</li>\n";
1.38 bowersj2 3926: }
1.176 bisitz 3927:
3928: $result .= '</ul>';
1.38 bowersj2 3929:
1.176 bisitz 3930: # FIXME: Make previous button working
3931: # Found to be dysfunctional when used to change the selected student
3932: # my $previous = HTML::Entities::encode(&mt("Back"), '<>&"');
3933: my $buttons .= '<p><span class="LC_nobreak">'
3934: # .'<input name="back" type="button"'
3935: # .' value="'.$previous.'" onclick="history.go(-1)" />'
3936: .' <input type="submit" value="'.&mt('Save').'" />' # Finish Helper
3937: .'</span></p>'."\n";
3938:
1.13 bowersj2 3939: # print pres_marker
3940: $result .= "\n<input type='hidden' name='pres_marker'" .
3941: " value='$affectedResourceId&$parm_name&$level' />\n";
1.27 bowersj2 3942:
3943: # Make the table appear
3944: $result .= "\n<input type='hidden' value='true' name='prevvisit' />";
3945: $result .= "\n<input type='hidden' value='$symb' name='pssymb' />";
3946: $result .= "\n<input type='hidden' value='$paramlevel' name='parmlev' />";
1.13 bowersj2 3947:
1.176 bisitz 3948: $result .= $buttons;
1.13 bowersj2 3949:
3950: return $result;
3951: }
3952:
3953: sub overrideForm {
3954: return 1;
3955: }
1.5 bowersj2 3956:
1.4 bowersj2 3957: 1;
1.3 bowersj2 3958:
1.1 bowersj2 3959: __END__
1.3 bowersj2 3960:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>