| Line 277... |
Line 277... |
| 277 |
' If the current package build it taking longer than expected , then bump the build times
|
277 |
' If the current package build it taking longer than expected , then bump the build times
|
| 278 |
' and allow another 30 seconds.
|
278 |
' and allow another 30 seconds.
|
| 279 |
If BuildPvId = rsQry("PV_ID") AND bFirstPlan Then
|
279 |
If BuildPvId = rsQry("PV_ID") AND bFirstPlan Then
|
| 280 |
completionText = " <"
|
280 |
completionText = " <"
|
| 281 |
durationDisplay = durationDisplay & " ["& BuildDelta &"]"
|
281 |
durationDisplay = durationDisplay & " ["& BuildDelta &"]"
|
| - |
|
282 |
If isNumeric(BuildDelta) > isNumeric(buildDuration) Then
|
| 282 |
If CLng(BuildDelta) > CLng(buildDuration) Then
|
283 |
If CLng(BuildDelta) > CLng(buildDuration) Then
|
| 283 |
buildDuration = BuildDelta + 30
|
284 |
buildDuration = BuildDelta + 30
|
| 284 |
completionText = " +"
|
285 |
completionText = " +"
|
| - |
|
286 |
End If
|
| 285 |
End If
|
287 |
End If
|
| 286 |
End If
|
288 |
End If
|
| 287 |
|
289 |
|
| 288 |
' If the duration is not known - guess at 300 sconds
|
290 |
' If the duration is not known - guess at 300 sconds
|
| 289 |
durationText = ""
|
291 |
durationText = ""
|
| Line 362... |
Line 364... |
| 362 |
<%
|
364 |
<%
|
| 363 |
End Sub
|
365 |
End Sub
|
| 364 |
'-------------------------------------------------
|
366 |
'-------------------------------------------------
|
| 365 |
Sub InsertJavaScript %>
|
367 |
Sub InsertJavaScript %>
|
| 366 |
<script language="JavaScript" type="text/JavaScript">
|
368 |
<script language="JavaScript" type="text/JavaScript">
|
| - |
|
369 |
|
| - |
|
370 |
formTips.tips.h_buildtime = stdTip(300, 'Est. Build Duration', 'Estimated build duration in seconds. Based simply on the last build duration for this package');
|
| - |
|
371 |
|
| 367 |
formTips.tips.h_buildplan = stdTip(300, 'Build Plan', 'The build plan is a guess as to the order in which packages will be built.' +
|
372 |
formTips.tips.h_buildplan = stdTip(300, 'Build Plan', 'The build plan is a guess as to the order in which packages will be built.' +
|
| 368 |
'<p>It will be recalculated before each build.' +
|
373 |
'<p>It will be recalculated before each build.' +
|
| 369 |
'<p>The plan includes test builds, new builds and resultant ripples.'
|
374 |
'<p>The plan includes test builds, new builds and resultant ripples.'
|
| 370 |
);
|
375 |
);
|
| 371 |
formTips.tips.h_buildDuration = stdTip(300, 'Planned Duration', 'The build duration (seconds) of the last build of this package - if known.' +
|
376 |
formTips.tips.h_buildDuration = stdTip(300, 'Planned Duration', 'The build duration (seconds) of the last build of this package - if known.' +
|