Commit 2c32200c by cahrens

Updated text per Alex's e-mail.

parent 6be9463e
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
generate and view word cloud. generate and view word cloud.
On the client side we show: On the client side we show:
If student does not yet anwered - `num_inputs` numbers of text inputs. If student does not yet answered - `num_inputs` numbers of text inputs.
If student have answered - words he entered and cloud. If student have answered - words he entered and cloud.
""" """
...@@ -34,21 +34,21 @@ class WordCloudFields(object): ...@@ -34,21 +34,21 @@ class WordCloudFields(object):
"""XFields for word cloud.""" """XFields for word cloud."""
num_inputs = StringyInteger( num_inputs = StringyInteger(
display_name="Inputs", display_name="Inputs",
help="Number of inputs.", help="Number of text boxes for student to input words/sentences.",
scope=Scope.settings, scope=Scope.settings,
default=5, default=5,
values = {"min" : 1 } values = {"min" : 1 }
) )
num_top_words = StringyInteger( num_top_words = StringyInteger(
display_name="Maximum Words", display_name="Maximum Words",
help="Number of max words, which will be displayed.", help="Maximum number of words to be displayed in generated word cloud.",
scope=Scope.settings, scope=Scope.settings,
default=250, default=250,
values = {"min" : 1 } values = {"min" : 1 }
) )
display_student_percents = StringyBoolean( display_student_percents = StringyBoolean(
display_name="Show Usage", display_name="Show Percents",
help="Display usage percents for each word?", help="Show statistics for entered words near every word separately at the top.",
scope=Scope.settings, scope=Scope.settings,
default=True default=True
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment