-
- <textarea> creates a Large text input box, If
+ <textfield> creates a Large text input box, If
data appears between the start and end tags, the data will
- appear i the textarea if the student has not yet made a
+ appear in the textfield if the student has not yet made a
submission. Additionally it takes two arguments rows
and cols which control the height and width of the
area respectively. It defaults to 10 and 80.
@@ -189,6 +281,11 @@
-
Scripting
-
- These tags allow the document to behave programatically
-
-
@@ -330,7 +549,7 @@
- open_date(), due_date(), answer_date()
- sub_string()
- array_moments(array)
- - format(x,y)
+ - format(x,y),prettyprint(x,y)
- map(...)
- caparesponse_check
- caparesponse_check_list
@@ -351,14 +570,6 @@
Differences (if any)
- |
- sin(x), cos(x), tan(x) |
- &sin($x), &cos($x), &tan($x) |
- Trigonometric functions where x is in radians. $x
- can be a pure number, i.e., you can call &sin(3.1415) |
-   |
-
-
sin(x), cos(x), tan(x) |
&sin($x), &cos($x), &tan($x) |
@@ -458,6 +669,26 @@
+ /DIS($x,"nn") |
+ &format($x,"nn") |
+ Display or format $x as nn where nn is nF or nE and n is an integer. Also supports the first character being a $, it thjen will format the result with a call to &dollarformat() described below. |
+ The difference is obvious. |
+
+
+
+ Not in CAPA |
+ &prettyprint($x,"nn") |
+ Display or format $x as nn where nn is nF or nE and n is an integer. Also supports the first character being a $, it then will format the result with a a call to &dollarformat() described below. In E mode it will attempt to generate a pretty x10^3 rather than a E3 following the number |
+ |
+
+
+
+ Not in CAPA |
+ &dollarformat($x |
+ Reformats $x to have a $ (or \$ if in tex mode) and to have , grouping thousands. |
+ |
+
+
roundto(x,n) |
&roundto($x,$n) |
Rounds a real number to n decimal points. $x and
@@ -523,18 +754,23 @@
|
- map(seed;a,b,c,d;w,x,y,z) |
- Option 1 - &map($seed,[\$w,\$x,\$y,\$z],\@a) or
- Option 2 - &map($seed,\@a,[$w,$x,$y,$z])
- where @a=('A','B','C','D')
- $w='W'
- $x='X'
- $y='Y'
- $z='Z' |
+ /MAP(seed;w,x,y,z;a,b,c,d) |
+ Option 1 - &map($seed,[\$w,\$x,\$y,\$z],[$a,$b,$c,$d]) or
+ Option 2 - &map($seed,\@mappedArray,[$a,$b,$c,$d])
+ Option 3 - @mappedArray = &map($seed,[$a,$b,$c,$d])
+ Option 4 - ($w,$x,$y,$z) = &map($seed,\@a)
+ where $a='A'
+ $b='B'
+ $c='B'
+ $d='B'
+ $w, $x, $y, and $z are variables |
Assigns to the variables $w, $x, $y and $z the values of the
- variables A, B, C and D depending on the seed. (Option 1 of calling map).
- In option 2, the values of $w, $x .. are mapped into the array @a. The two
- options illustrate the different grouping. |
+ $a, $b, $c and $c (A, B, C and D). The precise value for $w .. depends
+ on the seed. (Option 1 of calling map).
+ In option 2, the values of $a, $b .. are mapped into the array, @mappedArray. The two
+ options illustrate the different grouping. Options 3 and 4 give a consistent
+ way (with other functions) of mapping the items. For each option, the group can
+ be passed as an array, for example, [$a,$b,$c,$d] => \@a.
In CAPA, the arguments are divided into three groups separated
by a semicolon ;. In LON-CAPA, the separation is done by using [] brackets or
using an array @a. Note the backslash (\) before the arguments in the
@@ -544,19 +780,35 @@
|
rmap(seed;a,b,c,d;w,x,y,z) |
- &rmap($seed,[\$w,\$x,\$y,\$z],\@a) or
- &rmap($seed,\@a,[$w,$x,$y,$z])
- where @a=('A','B','C','D')
- $w='W'
- $x='X'
- $y='Y'
- $z='Z' |
+ Option 1 - &rmap($seed,[\$w,\$x,\$y,\$z],[$a,$b,$c,$d]) or
+ Option 2 - &rmap($seed,\@rmappedArray,[$a,$b,$c,$d])
+ Option 3 - @rmapped_array = &rmap($seed,[$a,$b,$c,$d])
+ Option 4 - ($w,$x,$y,$z) = &rmap($seed,\@a)
+ where $a='A'
+ $b='B'
+ $c='B'
+ $d='B'
+ $w, $x, $y, and $z are variables |
The rmap functions does the reverse action of map if the same seed
is used in calling map and rmap. |
- In CAPA, the arguments are divided into three groups separated
- by a semicolon ;. In LON-CAPA, the separation is done by using [] brackets or
- using an array @a. Note the backslash (\) before the arguments in the
- second and third groups. |
+ In CAPA, the arguments are divided into
+ three groups separated by a semicolon ;. In LON-CAPA, the
+ separation is done by using [] brackets (with create an
+ unamed vector reference) or using an array @a. Note the
+ backslash (\) before the arguments in the second and
+ third groups (Which cause Perl to send to variable
+ locations rather than the variable values, similar to a C
+ pointer). |
+
+
+
+ NOT IMPLEMENTED IN CAPA |
+ $a=&xmlparse($string) |
+ Runs the internal parser over the
+ argument parsing for display. Warning This will
+ result in different strings in different targets. Don't use
+ the results of this function as an answer. |
+ New to LON-CAPA |
@@ -750,13 +1002,13 @@
New to LON-CAPA |
- NOT IMPLEMENTED IN CAPA |
- @return_array=&random_multivariate_normal ($item_cnt,$seed,@mean,@covar)
- NOTE: @mean should be a length p array of real numbers. @covar should be a length
- p array of references to length p arrays or real numbers (i.e. a p by p matrix. |
+ NOT DOCUMENTED IN CAPA |
+ @return_array=&random_multivariate_normal ($item_cnt,$seed,\@mean,\@covar)
+ NOTE: @mean should be of length p array of real numbers. @covar should be a length
+ p array of references to length p arrays of real numbers (i.e. a p by p matrix. |
Generate $item_cnt deviates of multivariate_normal distribution with
mean vector @mean and variance-covariance matrix. |
- New to LON-CAPA |
+ Note the backslash before the @mean and @covar arrays. |
NOT IMPLEMENTED IN CAPA |
@@ -822,7 +1074,7 @@
-
$external::part - set to the id of the current problem
- <part>; zero if there are now <part>
+ <part>; zero if there are no <part>
-
$external::gradestatus - set to the value of the current
@@ -830,7 +1082,7 @@
-
$external::datestatus - set to the current status of the clock
- either CLOSED, CAN_ANSWER, CANNOT_ANSWER, or SHOW_ANSWER
+ either CLOSED, CAN_ANSWER, CANNOT_ANSWER, SHOW_ANSWER, or UNCHECKEDOUT
-
$external::randomseed - set to the number that was used to
@@ -840,12 +1092,74 @@
- $rad2deg - converts radians to degrees
- $deg2rad - converts degrees to radians
-
+
+ Form internals
+ Form elements used for homework editing/response
+ the form is named lonhomework
+ Viewing a problem (either CSTR or RES space)
+
+ -
+ grade_target, grade_username, grade_domain, grade_symb - the
+ vaules take precedence over the the normal ENV settings of
+ these, use &Apache::lonxml::whichuser() to get back the
+ correct vaues of the items
+
+ -
+ HWVAL_response:number - the name of the input elements for each response. The response is the response's ID, and the :number part exists only for response with multiple foils, and is a unique number in order of the submission
+
+ -
+ changerandseed - the 'Change' button, only exists right after
+ the Change button is clicked
+
+ -
+ problemmode - in CSTR, it is either 'View','Edit','EditXML' or
+ 'Analyze' depending on the desired view
+
+ -
+ rndseed - the currently requested random seed
+
+ -
+ showallfoils - if it exists, and we are in CSTR space, the
+ problem should ignore <conceptgroup> and the response's
+ max setting and show all possible foils
+
+ -
+ submit - the name of the Submit button
+
+ -
+ submitted - a hidden form parameter that can be used to tell
+ if the student has submitted answers or not, if it is set,
+ there should be answers to grade.
+
+
+ Editing a problem (Edit mode)
+ tagdepth referes to the current value of the xmlparsers tagdepth couter ($Apache::lonxml::currentdepth)
+ Note: the file edit.pm has many helper functions for creating the standard elements for editing a tag and it's attributes, all of those functions follow these conventions
+
+ -
+ tagdepth_argname - I.E. 1_3.max, a parameter editing value,
+ max is the name of the parameter and it is for the third tag
+ inside the first tag
+
+ -
+ delete_tagdepth - if set to yes, delete tag tagdepth and all
+ tags inside of it
+
+ -
+ homework_edit_tagdepth - used by both &Apache::edit::editline
+ and &Apache::edit::editfield for the <textarea> and
+ <input> form elements they create
+
+ -
+ insert_tagdepth - used to request an tag insert, it is set to
+ the id number of the requested tag in the
+ %Apache::lonxml::insertlist
+
Guy Albertelli
-Last modified: Tue June 12 15:25 EDT 2001
+Last modified: Fri Jul 12 21:28:44 EDT 2002