Subversion Repositories DevTools

Rev

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

Rev 5623 Rev 5635
Line 197... Line 197...
197
      <script language="JavaScript" type="text/JavaScript">
197
      <script language="JavaScript" type="text/JavaScript">
198
      formTips.tips.h_buildplan       = stdTip(300, 'Build Plan', 'The build plan is a guess as to the order in which packages will be built.' +
198
      formTips.tips.h_buildplan       = stdTip(300, 'Build Plan', 'The build plan is a guess as to the order in which packages will be built.' +
199
                                                                  '<p>It will be recalculated before each build.' + 
199
                                                                  '<p>It will be recalculated before each build.' + 
200
                                                                  '<p>The plan includes test builds, new builds and resultant ripples.' 
200
                                                                  '<p>The plan includes test builds, new builds and resultant ripples.' 
201
                                                                  );
201
                                                                  );
-
 
202
      formTips.tips.h_buildDuration       = stdTip(300, 'Planned Duration', 'The build duration (seconds) of the last build of this package - if known.' +
-
 
203
                                                                  '<p>This is used as a guess as to the duration of the planned build.' 
-
 
204
                                                                  );
202
      formTips.tips.h_lastchange       = stdTip(300, 'Last Change', 'This is an indication of the time since the daemon interogated the database.' +
205
      formTips.tips.h_lastchange       = stdTip(300, 'Last Change', 'This is an indication of the time since the daemon interogated the database.' +
203
                                                                  '<p>Short times will be shown as seconds. Longer times will be shown as a time within ' + 
206
                                                                  '<p>Short times will be shown as seconds. Longer times will be shown as a time within ' + 
204
                                                                  'the last 24 hours. Longer times will be shown as a date.' 
207
                                                                  'the last 24 hours. Longer times will be shown as a date.' 
205
                                                                  );
208
                                                                  );
206
                                                                  
209
                                                                  
Line 461... Line 464...
461
                     <td bgcolor="#FFFFFF" valign="top">
464
                     <td bgcolor="#FFFFFF" valign="top">
462
                        <table width="100%" border="0" cellspacing="2" cellpadding="0">
465
                        <table width="100%" border="0" cellspacing="2" cellpadding="0">
463
                           <tr>
466
                           <tr>
464
                              <td align="left" nowrap background="images/bg_table_col.gif" class="body_col">Package</td>
467
                              <td align="left" nowrap background="images/bg_table_col.gif" class="body_col">Package</td>
465
                              <td align="left" nowrap background="images/bg_table_col.gif" class="body_col">Version</td>
468
                              <td align="left" nowrap background="images/bg_table_col.gif" class="body_col">Version</td>
-
 
469
                              <td align="left" nowrap background="images/bg_table_col.gif" class="body_col">Duration<%=Quick_Help("h_buildDuration")%></td>
466
                           </tr>
470
                           </tr>
467
                           <%
471
                           <%
468
                           Dim PkgVersion
472
                           Dim PkgVersion
469
                           Set rsQry = OraDatabase.DbCreateDynaset( "SELECT p.PKG_NAME," &_
473
                           Set rsQry = OraDatabase.DbCreateDynaset( "SELECT p.PKG_NAME," &_
470
                                                                    "  pv.PKG_VERSION," &_
474
                                                                    "  pv.PKG_VERSION, pv.BUILD_TIME," &_
471
                                                                    "  bp.PV_ID" &_
475
                                                                    "  bp.PV_ID" &_
472
                                                                    " FROM build_plan bp," &_
476
                                                                    " FROM build_plan bp," &_
473
                                                                    "  packages p," &_
477
                                                                    "  packages p," &_
474
                                                                    "  package_versions pv" &_
478
                                                                    "  package_versions pv" &_
475
                                                                    " WHERE bp.PV_ID = pv.pv_id" &_
479
                                                                    " WHERE bp.PV_ID = pv.pv_id" &_
Line 484... Line 488...
484
                                    <%=Get_Package_Name(rsQry("PKG_NAME"), parRtagId, rsQry("PV_ID"))%>
488
                                    <%=Get_Package_Name(rsQry("PKG_NAME"), parRtagId, rsQry("PV_ID"))%>
485
                                 </td>
489
                                 </td>
486
                                 <td align="left" valign="top" class="body_txt">
490
                                 <td align="left" valign="top" class="body_txt">
487
                                    <%=rsQry("PKG_VERSION")%>
491
                                    <%=rsQry("PKG_VERSION")%>
488
                                 </td>
492
                                 </td>
-
 
493
                                 <td align="left" valign="top" class="body_txt">
-
 
494
                                    <%=rsQry("BUILD_TIME")%>
-
 
495
                                 </td>
-
 
496
 
489
                              </tr>
497
                              </tr>
490
                              <tr>
498
                              <tr>
491
                                 <td colspan="6" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
499
                                 <td colspan="6" background="images/bg_rep_line.gif"><img src="images/spacer.gif" width="1" height="1"></td>
492
                              </tr>
500
                              </tr>
493
                              <%
501
                              <%