Index: openacs-4/packages/survey/www/admin/question-add-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/survey/www/admin/question-add-2.tcl,v diff -u -N -r1.6 -r1.7 --- openacs-4/packages/survey/www/admin/question-add-2.tcl 27 Oct 2014 16:41:57 -0000 1.6 +++ openacs-4/packages/survey/www/admin/question-add-2.tcl 14 Jun 2015 00:49:36 -0000 1.7 @@ -4,7 +4,7 @@ Based on the presentation type selected in previous form, gives the user various options on how to lay out the question. - @param section_id integer determining survey we're dealing with + @param section_id integer determining survey we're dealing with @param after optional integer determining placement of question @param question_text text comprising this question @param presentation_type string denoting widget used to provide answer @@ -22,8 +22,8 @@ question_text:html,notnull presentation_type {after:integer ""} - {required_p t} - {active_p t} + {required_p:boolean t} + {active_p:boolean t} {n_responses ""} } Index: openacs-4/packages/survey/www/admin/question-add-3.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/survey/www/admin/question-add-3.tcl,v diff -u -N -r1.7 -r1.8 --- openacs-4/packages/survey/www/admin/question-add-3.tcl 27 Oct 2014 16:41:57 -0000 1.7 +++ openacs-4/packages/survey/www/admin/question-add-3.tcl 14 Jun 2015 00:49:36 -0000 1.8 @@ -2,7 +2,7 @@ ad_page_contract { Inserts a new question into the database. - @param section_id integer denoting which survey we're adding question to + @param section_id integer denoting which survey we're adding question to @param question_id id of new question @param after optional integer determining position of this question @param question_text text of question @@ -30,8 +30,8 @@ {valid_responses ""} {textbox_size ""} {textarea_size: "medium"} - {required_p t} - {active_p t} + {required_p:boolean t} + {active_p:boolean t} {responses:multiple ""} {scores:multiple,array,integer ""} {n_variables:integer ""} Index: openacs-4/packages/survey/www/admin/question-required-toggle.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/survey/www/admin/question-required-toggle.tcl,v diff -u -N -r1.3 -r1.4 --- openacs-4/packages/survey/www/admin/question-required-toggle.tcl 27 Oct 2014 16:41:58 -0000 1.3 +++ openacs-4/packages/survey/www/admin/question-required-toggle.tcl 14 Jun 2015 00:49:36 -0000 1.4 @@ -13,7 +13,7 @@ } { - required_p:notnull + required_p:boolean,notnull section_id:naturalnum,notnull question_id:naturalnum,notnull Index: openacs-4/packages/survey/www/admin/responses-export.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/survey/www/admin/responses-export.tcl,v diff -u -N -r1.11 -r1.12 --- openacs-4/packages/survey/www/admin/responses-export.tcl 27 Oct 2014 16:41:58 -0000 1.11 +++ openacs-4/packages/survey/www/admin/responses-export.tcl 14 Jun 2015 00:49:36 -0000 1.12 @@ -10,7 +10,7 @@ } { survey_id:naturalnum,notnull - {unique_users_p f} + {unique_users_p:boolean f} on_what_id:naturalnum,optional {start:naturalnum 1} {end:naturalnum 10000} Index: openacs-4/packages/survey/www/admin/survey-toggle.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/survey/www/admin/survey-toggle.tcl,v diff -u -N -r1.4 -r1.5 --- openacs-4/packages/survey/www/admin/survey-toggle.tcl 27 Oct 2014 16:41:59 -0000 1.4 +++ openacs-4/packages/survey/www/admin/survey-toggle.tcl 14 Jun 2015 00:49:36 -0000 1.5 @@ -2,16 +2,16 @@ Survey,-toggle.tcl will toggle (ie - enable or disable) a single survey. @param section_id survey we're toggling - @param enabled_p flag describing original state of survey - @param target URL where we will be redirected to after toggling + @param enabled_p flag describing original state of survey + @param target URL where we will be redirected to after toggling @author raj@alum.mit.edu @author nstrug@arsdigita.com @date February 9, 2000 @cvs-id $Id$ } { survey_id:naturalnum,notnull - enabled_p + enabled_p:boolean {target "./"} }