Log Message:
-----------
New README
Modified Files:
--------------
wwmoodle/wwquestion:
README
wwmoodle/wwquestion/bin/setup:
setup.pl
Revision Data
-------------
Index: README
===================================================================
RCS file: /webwork/cvs/system/wwmoodle/wwquestion/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lwwquestion/README -Lwwquestion/README -u -r1.1 -r1.2
--- wwquestion/README
+++ wwquestion/README
@@ -1,6 +1,6 @@
Webwork Question Type
----------------------
-Version: 0.4 (stable) Released 9/11/2007
+Version: 1.0 (stable RC1) Released 9/12/2007
Maintainer: Matthew Leventi <mle...@gm...>
CVS: cvs.webwork.rochester.edu:/webwork/cvs/system wwmoodle/wwquestion
Index: setup.pl
===================================================================
RCS file: /webwork/cvs/system/wwmoodle/wwquestion/bin/setup/setup.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -Lwwquestion/bin/setup/setup.pl -Lwwquestion/bin/setup/setup.pl -u -r1.4 -r1.5
--- wwquestion/bin/setup/setup.pl
+++ wwquestion/bin/setup/setup.pl
@@ -97,7 +97,7 @@
#File Moving/Linking
$files = promptUser('Would you like me to place the files into proper directories (y,n)','y');
if($files eq 'y') {
- $doWhat = promptUser('Would you like me to copy the files or soft link them.(copy,link)','link');
+ $doWhat = promptUser('Would you like me to copy the help files or soft link them.(copy,link)','link');
if($doWhat eq 'link') {
$action = 'ln -sf ';
} elsif ($doWhat eq 'copy') {
@@ -109,7 +109,7 @@
#wipe existing directories
system("rm -rf $moodleRoot/question/type/webwork");
system("rm -rf $moodleRoot/lang/en_utf8/help/webwork");
- system($action . "$wwquestionRoot/moodle/question/type/webwork " .$moodleRoot . '/question/type/');
+ system("cp -R $wwquestionRoot/moodle/question/type/webwork " .$moodleRoot . '/question/type/');
system($action . "$wwquestionRoot/moodle/lang/en_utf8/qtype_webwork.php " . $moodleRoot . '/lang/en_utf8/qtype_webwork.php');
system($action . "$wwquestionRoot/moodle/lang/en_utf8/help/quiz/webwork.html " . $moodleRoot . '/lang/en_utf8/help/quiz/webwork.html');
system($action . "$wwquestionRoot/moodle/lang/en_utf8/help/webwork " . $moodleRoot . '/lang/en_utf8/help/');
|