|
From: <jas...@us...> - 2003-04-27 00:50:57
|
Update of /cvsroot/genex/genex-server/Mason/workspace/comps
In directory sc8-pr-cvs1:/tmp/cvs-serv14605
Added Files:
cv-menu.mason textarea-input.mason
Log Message:
new
--- NEW FILE: cv-menu.mason ---
<h2><% $type %></h2>
<p>Choose the <b><% $type %></b> that describes the type of
<% $entry_name %>.</p>
<table bgcolor="#D8E4F7" border="1" cols="1">
<thead bgcolor="#FFD78F">
<tr>
<th><% $type %></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<& query-drop-down.mason, name=>$cgi_param_name, array_ref=>$array_ref &>
</td>
</tr>
</tbody>
</table>
<%args>
$cgi_param_name
$entry_name
$type
$array_ref
</%args>
<%once>
</%once>
<%init>
</%init>
--- NEW FILE: textarea-input.mason ---
<h2><% $value_name %></h2>
<p>Choose the <b><% $value_name %></b> that will be given to the
<% $entry_name %> entry you create.</p>
<table bgcolor="#D8E4F7" border="1" cols="1">
<thead bgcolor="#FFD78F">
<tr>
<th><% $value_name %></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<textarea name="<% $cgi_param_name %>"
rows="<% $rows %>"
cols="<% $cols %>"></textarea>
</td>
</tr>
</tbody>
</table>
<%args>
$entry_name
$cgi_param_name
$value_name
$default_value => ''
$rows => 5
$cols => 65
</%args>
<%once>
</%once>
<%init>
</%init>
|