--- loncom/html/adm/helper/course.initialization.helper 2003/05/16 17:21:33 1.2 +++ loncom/html/adm/helper/course.initialization.helper 2003/05/30 14:00:21 1.4 @@ -24,7 +24,7 @@ - + This Helper will help you set up your new LON-CAPA course and choose which LON-CAPA features will be active in your course. You can re-visit it later to change settings in your course. @@ -34,7 +34,7 @@

If you have previous experience with coordinating LON-CAPA courses and prefer not to use the Helper, - click here to leave this Helper.

+ click here to leave this Helper.

All settings which you can change with this Helper can also be changed while the course is running by going to the PARM screen and clicking on the "Set @@ -45,6 +45,26 @@ + + + The "Course Description" is the name of the course that will be + seen by the students. This should have been set up correctly when the + course was created, but please confirm that it is correct, or change it + if neccessary. Hit a "Next ->;" to continue. + + + + return &{$helper->{DATA}->{GETVAL}}('description'); + + + if (&{$helper->{DATA}->{SETVAL}}('description', $element->getValue())) { + return 'Course description changed to ' . $element->getValue() . + '.'; + } + + + + LON-CAPA hosts discussions on all resources in a course. By default, @@ -101,20 +121,83 @@ - +

If you like, limited HTML can be allowed in the course discussions.

HTML banned: HTML will not be allowed in discussion postings. HTML allowed: Discussion participants can use limited HTML in their postings. - return 'Choices finalcode.'; + + return &{$helper->{DATA}->{GETVAL}}('allow_limited_html_in_feedback'); + + + if (&{$helper->{DATA}->{SETVAL}}('allow_limited_html_in_feedback', $element->getValue())) { + if ($element->getValue() eq 'yes') { + return 'Limited HTML allowed in feedback.'; + } else { + return 'HTML not allowed in feedback.'; + } + } +
- + + + People in the course can provide feedback about the resources used in + the course by using the FDBK button while viewing a resource. If + the user labels the feedback as a "question about course content", + it is sent to the course coordinator of that course. + +

If you'd like that feedback to be sent to someone else, such as a + different instructor, please enter their LON-CAPA address below, in the + form user:domain, where "user" and "domain" + are both the LON-CAPA username and LON-CAPA domain, not an email + address.

+
+ return '

Your current LON-CAPA domain is "' + . $helper->{DATA}->{DOM} . + '".

'; +
+ + + return &{$helper->{DATA}->{GETVAL}}('comment.email'); + + + if (&{$helper->{DATA}->{SETVAL}}('comment.email', $element->getValue())) { + return 'Comment address(es) updated to ' . $element->getValue() . + '.'; + } + + + +

Advanced Functionality: If you'd like to redirect different + section's feedback to different people, you can enter it as follows:

+ + + +

For example,

+ +

john102:msu(001;002;003),bob293:msu(004;005;006),madeupname:here(007;008;009)

+ +

will route course feedback to "john102" for sections 1, 2, and 3, to + "bob293" for 4, 5, and 6, and to "madeupname:here" for + 7, 8, and 9. Note there is no requirement that the addresses be in any + particular domain.

+
+
- Your course is now set up. - + Your course is now set up. Please select the Finish Course + Initialization button to re-intialize the course with your chosen + settings. You will be taken to the NAV screen for your course. + +

Remember that all of these settings can be modified in the PARMS + screen, by pushing the Course Environment button.

+
+