%! /* */ struct icm_relinfo_type { string version; string sid; string kern_rel; string kern_dblib; string kern_comp_on; string kern_comp_time; int kern_patchlevel; int patchlevel; int patchnumber; int op_sys_count; string supp_op_sys[]; int comment_count; string patch_comments[]; }; %> <% /* Admin Release */ string icm_adm_ver = "Web Administration Version 7.21.0, Thu Oct 03 14:45:51 CET 2013"; int i; string browser; struct icm_relinfo_type rel; browser = __icm_get_browser_type(); __icm_get_rel_info (rel); %>
Release Information |
|
<%=icm_adm_ver%> | |
<%= rel.version %> | |
kernel information | |
system name | <%= rel.sid %> |
kernel release | <%= rel.kern_rel %> |
database library | <%= rel.kern_dblib %> |
compiled on | <%= rel.kern_comp_on %> |
compiled time | <%= rel.kern_comp_time %> |
update level | <%= rel.patchlevel %> |
patch number | <%= rel.patchnumber %> |
source id | <%= rel.patchlevel%>.<%= rel.kern_patchlevel%> |
supported environment | |
<%
for (i = 0; i < rel.op_sys_count; i++)
{
__output(rel.supp_op_sys[i], " "); } %> |
|
patch comments | |
<%
for (i = 0; i < rel.comment_count; i++)
{
__output(rel.patch_comments[i], " "); } %> |