$Web Selps Check: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:$Web_Selps_Check}}
{{DISPLAYTITLE:$Web_Selps_Check}}
<span class="pageSubtitle"><section begin="desc" />Check parameters against a delimited list of strings<section end="desc" /></span>
<span class="pageSubtitle">Check parameters against a delimited list of strings</span>


$Web_Selps_Check validates that each value of a form and/or isindex parameter matches one of a delimited list of strings. Note that although this is provided for a sort of symmetry in the $WEB_SELx functions, it is not really restricted to select options list processing. An overview of the $WEB_SEL_x functions is provided in [[$Web_Selp]].  
<var>$Web_Selps_Check</var> validates that each value of a form and/or isindex parameter matches one of a delimited list of strings. Note that although this is provided for a sort of symmetry in the $Web_Sel* functions, it is not really restricted to select options list processing. An overview of the $Web_Sel* functions is provided in [[$Web_Selp]].
 
<var>$Web_Selps_Check</var> takes three arguments and returns a numeric result code; for some types of errors, the current <var class="product">User Language</var> request is cancelled.


$Web_Selps_Check takes three arguments and returns a numeric result code; for some types of errors, the current <var class="product">User Language</var> request is cancelled.
==Syntax==
==Syntax==
<p class="syntax"><section begin="syntax" /> %RC = $Web_Selps_Check(delimited_strings, param_name, -
<p class="syntax"><span class="term">%rc</span> = <span class="literal">$Web_Selps_Check</span>(<span class="term">delimited_strings</span>, <span class="term">param_name</span>, [<span class="term">option_keywords</span>])
option_keywords)
</p>
<section end="syntax" /></p>


===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>delimited_strings</th>
<tr><th>delimited_strings</th>
<td>A string containing a delimited list of strings which are used to check the values of the parameter. The first character of this argument is the delimiter that separates the values. The string should not contain a trailing delimiter unless one of the values is the null string, which is unlikely. This is a required argument.</td></tr>
<td>A string containing a delimited list of strings which are used to check the values of the parameter. The first character of this argument is the delimiter that separates the values. The string should not contain a trailing delimiter unless one of the values is the null string, which is unlikely. This is a required argument.</td></tr>
<tr><th>param_name</th>
<tr><th>param_name</th>
<td>The name of a form and/or an index parameter in the current web request. For each occurrence of this parameter, its value is checked to see if it is equal to one of the strings in the delimited list. This a required argument.</td></tr>
<td>The name of a form and/or an index parameter in the current web request. For each occurrence of this parameter, its value is checked to see if it is equal to one of the strings in the delimited list. This a required argument.</td></tr>
<tr><th>option_keywords</th>
<tr><th>option_keywords</th>
<td>A string of blank-separated keywords specifying special processing for this $function; it can contain any of the following:
<td>This optional argument is a string of blank-separated keywords specifying special processing for this $function; it can contain any of the following:
<table class="syntaxTable">
<table>
<tr><th>CANCHECK</th>
<tr><th><var>CANCHECK</var></th>
<td>Cancel request if any value of ''param_name'' not found in select options list</td></tr>
<td>Cancel request if any value of <var class="term">param_name</var> not found in select options list</td></tr>
<tr><th>NOFORM</th>
 
<tr><th><var>NOFORM</var></th>
<td>Don't look in form parameters</td></tr>
<td>Don't look in form parameters</td></tr>
<tr><th>NOISINDEX</th>
 
<tr><th><var>NOISINDEX</var></th>
<td>Don't look in isindex parameters</td></tr>
<td>Don't look in isindex parameters</td></tr>
<tr><th>NOISI</th>
 
<td>Synonym for NOISINDEX
<tr><th><var>NOISI</var></th>
<td>Synonym for <var>NOISINDEX</var>
</td></tr></table>
</td></tr></table>
This an optional argument.
</td></tr></table>
</td></tr></table>


<table class="syntaxTable">
===Return codes===
<table>
<tr><th>Code</th>
<tr><th>Code</th>
<td>Meaning</td></tr>
<th>Meaning</th></tr>
<tr><th>0</th>
<tr><td>0</td>
<td>''Selected_value'' equal to one of the values in</td>
<td>''Selected_value'' equal to one of the values in global select element ''global_name''.
global select element ''global_name''.<tr><th>2</th>
 
<td>''Selected_value'' not equal to any of the values in</td>
<tr><td>2</td>
global select element ''global_name'', and CANCHECK option not specified.<tr><th></th>
<td>''Selected_value'' not equal to any of the values in global select element ''global_name'', and CANCHECK option not specified.
 
<tr><th></th>
<td>Any other error results in cancellation of the <var class="product">User Language</var> request.</td></tr>
<td>Any other error results in cancellation of the <var class="product">User Language</var> request.</td></tr>
</table>
</table>
<p class="caption">$WEB_SELPS_CHECK return codes</p>


For example, the following statement will cancel the <var class="product">User Language</var> request if the value of the form parameter <tt>DN</tt> is not one of the strings<tt>DN0</tt>, <tt>DN1</tt>, etc.:
==Usage notes==
<ul>
<li>See <var>[[$Web_Selp]]</var> for an extended example using other $WEB_SELx functions.  


<p class="code"> %RC = $Web_Selsp_Check('/DN0/DN1/DN2' -
<li><var>$Web_Selps_Check</var> and <var>$Web_Selsp_Check</var> are synonyms.
              WITH '/DN3/DN4/DN5/DN6', -
</ul>
              'DN', 'CANCHECK')
</p>


See [[$Web_Selp]] for an extended example using other $WEB_SELx functions.  
==Examples==
The following statement will cancel the <var class="product">User Language</var> request if the value of the form parameter <tt>DN</tt> is not one of the strings<tt>DN0</tt>, <tt>DN1</tt>, etc.:


$Web_Selps_Check and $Web_Selsp_Check are synonyms.
<p class="code">%rc = $Web_Selsp_Check('/DN0/DN1/DN2' -
              WITH '/DN3/DN4/DN5/DN6', -
              'DN', 'CANCHECK')
</p>


[[Category:Janus Web Server $functions|$Web_Selps_Check]]
[[Category:Janus Web Server $functions|$Web_Selps_Check]]

Latest revision as of 17:06, 16 April 2013

Check parameters against a delimited list of strings

$Web_Selps_Check validates that each value of a form and/or isindex parameter matches one of a delimited list of strings. Note that although this is provided for a sort of symmetry in the $Web_Sel* functions, it is not really restricted to select options list processing. An overview of the $Web_Sel* functions is provided in $Web_Selp.

$Web_Selps_Check takes three arguments and returns a numeric result code; for some types of errors, the current User Language request is cancelled.

Syntax

%rc = $Web_Selps_Check(delimited_strings, param_name, [option_keywords])

Syntax terms

delimited_strings A string containing a delimited list of strings which are used to check the values of the parameter. The first character of this argument is the delimiter that separates the values. The string should not contain a trailing delimiter unless one of the values is the null string, which is unlikely. This is a required argument.
param_name The name of a form and/or an index parameter in the current web request. For each occurrence of this parameter, its value is checked to see if it is equal to one of the strings in the delimited list. This a required argument.
option_keywords This optional argument is a string of blank-separated keywords specifying special processing for this $function; it can contain any of the following:
CANCHECK Cancel request if any value of param_name not found in select options list
NOFORM Don't look in form parameters
NOISINDEX Don't look in isindex parameters
NOISI Synonym for NOISINDEX

Return codes

Code Meaning
0 Selected_value equal to one of the values in global select element global_name.
2 Selected_value not equal to any of the values in global select element global_name, and CANCHECK option not specified.
Any other error results in cancellation of the User Language request.

Usage notes

  • See $Web_Selp for an extended example using other $WEB_SELx functions.
  • $Web_Selps_Check and $Web_Selsp_Check are synonyms.

Examples

The following statement will cancel the User Language request if the value of the form parameter DN is not one of the stringsDN0, DN1, etc.:

%rc = $Web_Selsp_Check('/DN0/DN1/DN2' - WITH '/DN3/DN4/DN5/DN6', - 'DN', 'CANCHECK')