Subversion Repositories DevTools

Rev

Rev 6881 | Rev 7029 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6881 Rev 7001
Line 157... Line 157...
157
        ok : function(){
157
        ok : function(){
158
            // Initiate the bulk release by redirecting the browser to the make_bulk_release.asp page
158
            // Initiate the bulk release by redirecting the browser to the make_bulk_release.asp page
159
            // which holds the server side VBScript code that actually carries out the release operations.
159
            // which holds the server side VBScript code that actually carries out the release operations.
160
            // Once complete, that code will redirect the browser back to the dependencies.asp page of which
160
            // Once complete, that code will redirect the browser back to the dependencies.asp page of which
161
            // this _environment.asp file is a part (by direct inclusion)
161
            // this _environment.asp file is a part (by direct inclusion)
162
            <%If Request("pv_id") Then%>
162
            <%If Request("pv_id") <> "" Then%>
163
               f.action = "make_bulk_release.asp?pv_id=<%=Request("pv_id")%>&rtag_id=<%=parRtag_id%>";
163
               f.action = "make_bulk_release.asp?pv_id=<%=Request("pv_id")%>&rtag_id=<%=parRtag_id%>";
164
            <%Else%>
164
            <%Else%>
165
               f.action = "make_bulk_release.asp?rtag_id=<%=parRtag_id%>";
165
               f.action = "make_bulk_release.asp?rtag_id=<%=parRtag_id%>";
166
            <%End If%>
166
            <%End If%>
167
            f.submit();
167
            f.submit();
Line 206... Line 206...
206
        ok : function(){
206
        ok : function(){
207
                // Initiate the bulk remove by redirecting the browser to the make_bulk_remove.asp page
207
                // Initiate the bulk remove by redirecting the browser to the make_bulk_remove.asp page
208
                // which holds the server side VBScript code that actually carries out the remove operations.
208
                // which holds the server side VBScript code that actually carries out the remove operations.
209
                // Once complete, that code will redirect the browser back to the dependencies.asp page of which
209
                // Once complete, that code will redirect the browser back to the dependencies.asp page of which
210
                // this _environment.asp file is a part (by direct inclusion)
210
                // this _environment.asp file is a part (by direct inclusion)
211
                <%If Request("pv_id") Then%>
211
                <%If Request("pv_id") <> "" Then%>
212
                   f.action = "make_bulk_reject.asp?pv_id=<%=Request("pv_id")%>&rtag_id=<%=parRtag_id%>";
212
                   f.action = "make_bulk_reject.asp?pv_id=<%=Request("pv_id")%>&rtag_id=<%=parRtag_id%>";
213
                <%Else%>
213
                <%Else%>
214
                   f.action = "make_bulk_reject.asp?rtag_id=<%=parRtag_id%>";
214
                   f.action = "make_bulk_reject.asp?rtag_id=<%=parRtag_id%>";
215
                <%End If%>
215
                <%End If%>
216
                f.submit();
216
                f.submit();
Line 900... Line 900...
900
Function RefreshedURL(NNdview, NNpview, NNpv_id, NNrtag_id)
900
Function RefreshedURL(NNdview, NNpview, NNpv_id, NNrtag_id)
901
   Dim url
901
   Dim url
902
 
902
 
903
   url = scriptName & "?Dview=" & NNdview & "&Pview=" & NNpview
903
   url = scriptName & "?Dview=" & NNdview & "&Pview=" & NNpview
904
 
904
 
905
   If NNpv_id Then
905
   If NNpv_id <> "" Then
906
      url = url & "&pv_id=" & NNpv_id
906
      url = url & "&pv_id=" & NNpv_id
907
   End If
907
   End If
908
 
908
 
909
   url = url & "&rtag_id=" & NNrtag_id
909
   url = url & "&rtag_id=" & NNrtag_id
910
 
910