<%@LANGUAGE="VBSCRIPT"%> <% '===================================================== '| | '| DEPENDENCIES | '| | '===================================================== %> <% Option explicit ' Good idea to set when using redirect Response.Expires = 0 ' always load the page, dont store Const allowNoPackage = TRUE ' Allow page display without pvid being present %> <% '------------ ACCESS CONTROL ------------------ %> <% '------------ Variable Definition ------------- Dim rsQry Dim criticalSectionIsEditable '------------ Constants Declaration ----------- '------------ Variable Init ------------------- '---------------------------------------------- %> <% '------------------------- MAIN LINE --------------------------- criticalSectionIsEditable = Is_Critical_Section_Editable ( pkgInfoHash.Item ("dlocked") ) If Request("btn") = "Hide" Then ' Store filter in cookie Response.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_HIDE_FILES_FILTER) = Request("filefilter") End If If Request("btn2") = "Hide" Then ' Store filter in cookie Response.Cookies(enum_RELMGR_COOKIE_DOMAIN)(COOKIE_HIDE_DEPS_FILTER) = Request("depfilter") End If If Request("RebuildIcons") <> "" Then ' Force Rebuild of all package state icons. Call Rebuild_Environment_Body(parRtag_id, TRUE) End If If Request("RebuildMetrics") <> "" Then ' Force Rebuild of Release Metrics Call Rebuild_Release_Metrics(parRtag_id) End If '--------------------------------------------------------------- %> <%=Title(Request("rtag_id"))%> <%bCsvExport = True%>