| Line 76... |
Line 76... |
| 76 |
'<p>A Project Branch will be displayed if configured, but it may not be suitable for all packages.');
|
76 |
'<p>A Project Branch will be displayed if configured, but it may not be suitable for all packages.');
|
| 77 |
|
77 |
|
| 78 |
formTips.tips.JatsExtraction_CVS = stdTip(200,'CVS','Various extraction commands.<br>Choose a command that suits the current requirements.' );
|
78 |
formTips.tips.JatsExtraction_CVS = stdTip(200,'CVS','Various extraction commands.<br>Choose a command that suits the current requirements.' );
|
| 79 |
formTips.tips.JatsExtraction_ = stdTip(200,'Unknown Version Control System','Various extraction commands.<br>Choose a command that suits the current requirements.' );
|
79 |
formTips.tips.JatsExtraction_ = stdTip(200,'Unknown Version Control System','Various extraction commands.<br>Choose a command that suits the current requirements.' );
|
| 80 |
|
80 |
|
| 81 |
formTips.tips.s3Sync = stdTip(200, 'SYNC to S3','When enabled and the Release is also configured to support S3 Sync and this package contains an s3Transfer.json file then files in the s3Transfer.json file will be synced to an S3 bucket<p>The target bucket name is based on the rtagId');
|
81 |
formTips.tips.inManifest = stdTip(200, 'Include in Manifest','When enabled and the Release is also configured to support S3 Manifests then this package-version will be available in the manifest');
|
| 82 |
|
82 |
|
| 83 |
|
83 |
|
| 84 |
</script>
|
84 |
</script>
|
| 85 |
<%
|
85 |
<%
|
| 86 |
'----------------------------------------------------------------------------------------------------------------------------------------
|
86 |
'----------------------------------------------------------------------------------------------------------------------------------------
|
| Line 848... |
Line 848... |
| 848 |
<td>Deployable:</td>
|
848 |
<td>Deployable:</td>
|
| 849 |
<td><%=iif(IsNull( rsQry("is_deployable") ), "No","Yes")%></td>
|
849 |
<td><%=iif(IsNull( rsQry("is_deployable") ), "No","Yes")%></td>
|
| 850 |
</tr>
|
850 |
</tr>
|
| 851 |
|
851 |
|
| 852 |
<%If parRtag_id <> "" Then
|
852 |
<%If parRtag_id <> "" Then
|
| 853 |
Call Get_Pkg_Info_s3Sync
|
- |
|
| 854 |
Dim s3Text
|
853 |
Dim s3Text
|
| 855 |
If pkgInfoHash("s3Sync") <> "Y" Then
|
854 |
If pkgInfoHash("inManifest") <> "Y" Then
|
| 856 |
s3Text = "No"
|
855 |
s3Text = "No"
|
| 857 |
Else
|
856 |
Else
|
| 858 |
If pkgInfoHash("s3SyncEnabled") <> "Y" Then
|
857 |
If pkgInfoHash("s3ManifestEnabled") <> "Y" Then
|
| 859 |
s3Text = "Yes. Ignored as the Release does not support S3Sync"
|
858 |
s3Text = "Yes. Ignored as the Release does not support S3 Manifest generation"
|
| 860 |
Else
|
859 |
Else
|
| 861 |
s3Text = "Yes"
|
860 |
s3Text = "Yes"
|
| 862 |
End If
|
861 |
End If
|
| 863 |
End If
|
862 |
End If
|
| 864 |
|
- |
|
| 865 |
Dim s3Content, s3ContentClass
|
- |
|
| 866 |
If pkgInfoHash("s3Sync") = "Y" AND pkgInfoHash("s3SyncContent") <> "Y" Then
|
- |
|
| 867 |
s3Content = "No S3 transferable content detected"
|
- |
|
| 868 |
If pkgInfoHash("s3SyncEnabled") = "Y" Then s3ContentClass = "err_alert"
|
- |
|
| 869 |
ElseIf pkgInfoHash("s3Sync") <> "Y" AND pkgInfoHash("s3SyncContent") = "Y" Then
|
- |
|
| 870 |
s3Content = "S3 transferable content detected"
|
- |
|
| 871 |
End If
|
- |
|
| 872 |
If s3Content <> "" Then
|
- |
|
| 873 |
s3Content = ". <span class="&s3ContentClass&">" & s3Content & "</span>"
|
- |
|
| 874 |
End If
|
- |
|
| 875 |
%>
|
863 |
%>
|
| 876 |
<tr>
|
864 |
<tr>
|
| 877 |
<td>Sync to S3:<%=Quick_Help("s3Sync")%></td>
|
865 |
<td>Include in Manifest:<%=Quick_Help("inManifest")%></td>
|
| 878 |
<td><%=s3Text%><%=s3Content%>
|
866 |
<td><%=s3Text%>
|
| 879 |
</tr>
|
867 |
</tr>
|
| 880 |
<%End If%>
|
868 |
<%End If%>
|
| 881 |
|
869 |
|
| 882 |
<tr>
|
870 |
<tr>
|
| 883 |
<td>Short Description:</td>
|
871 |
<td>Short Description:</td>
|