<%@LANGUAGE="VBSCRIPT"%> <% '===================================================== ' View the snapshots associated with a Release ' form_view_snapshots.asp '===================================================== %> <% Option explicit ' Good idea to set when using redirect Response.Expires = 0 ' always load the page, dont store %> <% '------------ ACCESS CONTROL ------------------ %> <% '------------ Variable Definition ------------- Dim parRtagId Dim modifyState Dim bReleaseSyncEnabled Dim bCanDestroy '------------ Constants Declaration ----------- '------------ Variable Init ------------------- parRtagId = Request("rtag_id") objPMod.PersistInQryString("rtag_id") ReleaseMode = GetReleaseMode( Request("rtag_id") ) bReleaseSyncEnabled = (releaseInfoHash("S3MANIFEST") = "Y") bCanDestroy = canActionControlInProject("DestroyRelease") Sub ShowSidePanel End Sub '---------------------------------------------- Sub ShowMainPanel %>
View Release Snapshots
Opr PV_ID Release Name Created Comments Gen Manifest Done Name
<%If not bReleaseSyncEnabled Then%> This Release does not have S3 Manifest Generation Enabled <%End If%>
<% End Sub '---------------------------------------------- %> Release Manager <%bJqueryDataTables = TRUE%>
<%Call ShowSidePanel%> <%Call ShowMainPanel%>