Subversion Repositories DevTools

Rev

Rev 119 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 119 Rev 1376
Line 114... Line 114...
114
<%
114
<%
115
'-----------------------  MAIN LINE  ---------------------------
115
'-----------------------  MAIN LINE  ---------------------------
116
 
116
 
117
'--- Process submition ---
117
'--- Process submition ---
118
If (parPkgN <> "") AND (parPkgV <> "") AND (parRtag_id <> "") Then
118
If (parPkgN <> "") AND (parPkgV <> "") AND (parRtag_id <> "") Then
119
	' All mendatory parameters FOUND
119
	' All mandatory parameters FOUND
120
	
120
	
121
	Call Check_Circular_Dependencies( parPkgN, parPkgV, parRtag_id, ERRlogFULL, ERRlog  )
121
	Call Check_Circular_Dependencies( parPkgN, parPkgV, parRtag_id, ERRlogFULL, ERRlog  )
122
	
122
	
123
	'-- circular dependencies error message
123
	'-- circular dependencies error message
124
	If (ERRlog <> "") Then 
124
	If (ERRlog <> "") Then 
Line 128... Line 128...
128
		'Response.write ERRlog
128
		'Response.write ERRlog
129
		Response.Redirect("message.asp?msg=202-5&justemplate=true"& QSTR)
129
		Response.Redirect("message.asp?msg=202-5&justemplate=true"& QSTR)
130
	End If
130
	End If
131
	
131
	
132
Else
132
Else
133
	Response.write "Some mendatory parameters are missing!" & "<br>" 'TODO
133
	Response.write "Some mandatory parameters are missing!" & "<br>" 'TODO
134
	Response.write QSTR_All 
134
	Response.write QSTR_All 
135
End If
135
End If
136
%>
136
%>
137
137