Subversion Repositories DevTools

Rev

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

Rev 4482 Rev 4487
Line 842... Line 842...
842
                           Dim bProjectHeader            ' Project Header done
842
                           Dim bProjectHeader            ' Project Header done
843
                           Dim bShowAge                  ' Display age warning
843
                           Dim bShowAge                  ' Display age warning
844
 
844
 
845
                           ' Integer variables
845
                           ' Integer variables
846
                           Dim pkgId
846
                           Dim pkgId
-
 
847
                           Dim curPkgId
847
                           Dim lastProjID                ' Used to detect project changes from one row to the next
848
                           Dim lastProjID                ' Used to detect project changes from one row to the next
848
                           Dim lastRtagId                ' Used to detect release changes from one row to the next
849
                           Dim lastRtagId                ' Used to detect release changes from one row to the next
849
                           Dim daemonState
850
                           Dim daemonState
850
 
851
 
851
                           ' Initialise variables
852
                           ' Initialise variables
Line 1000... Line 1001...
1000
                              ' it a slightly different look to the previous displayed row which was for a different release
1001
                              ' it a slightly different look to the previous displayed row which was for a different release
1001
                              If bRelease_changed AND bRow_displayed Then
1002
                              If bRelease_changed AND bRow_displayed Then
1002
                                 Call ToggleStyleNow
1003
                                 Call ToggleStyleNow
1003
                              End If
1004
                              End If
1004
 
1005
 
-
 
1006
                              ' Kill pkgId if daemon is disabled
-
 
1007
                              curPkgId = pkgId
-
 
1008
                              If daemonState = 2 Then
-
 
1009
                                  curPkgId = Null
-
 
1010
                              End If
-
 
1011
 
1005
                              ' Now we are ready to render the HTML content for the row, but we may still circumvent rendering if the user
1012
                              ' Now we are ready to render the HTML content for the row, but we may still circumvent rendering if the user
1006
                              ' has unchecked the project checkbox
1013
                              ' has unchecked the project checkbox
1007
                              %>
1014
                              %>
1008
                                 <%If bProject_changed Then%>
1015
                                 <%If bProject_changed Then%>
1009
                                    <tr>
1016
                                    <tr>
Line 1037... Line 1044...
1037
 
1044
 
1038
                                        <td nowrap <%=styleNow%>><%=Get_Official(rsQry("official"))%></td>
1045
                                        <td nowrap <%=styleNow%>><%=Get_Official(rsQry("official"))%></td>
1039
                                        <td nowrap <%=styleNow%>><%=Get_Daemon_Mode(rsQry("daemon_mode"))%></td>
1046
                                        <td nowrap <%=styleNow%>><%=Get_Daemon_Mode(rsQry("daemon_mode"))%></td>
1040
                                        <td nowrap <%=styleNow%>><%=rsQry("display_name")%></td>
1047
                                        <td nowrap <%=styleNow%>><%=rsQry("display_name")%></td>
1041
                                        <td nowrap <%=styleNow%>><%=Get_Run_Level(rsQry("current_run_level"), bIndefinitelyPaused,daemonState)%></td>
1048
                                        <td nowrap <%=styleNow%>><%=Get_Run_Level(rsQry("current_run_level"), bIndefinitelyPaused,daemonState)%></td>
1042
                                        <td nowrap <%=styleNow%>><%=Get_Pkg_Name(pkgId)%></td>
1049
                                        <td nowrap <%=styleNow%>><%=Get_Pkg_Name(curPkgId)%></td>
1043
                                        <td nowrap <%=styleNow%>><%=PrettyDelta(rsQry("delta"),daemonState,pkgId )%></td>
1050
                                        <td nowrap <%=styleNow%>><%=PrettyDelta(rsQry("delta"),daemonState,curPkgId )%></td>
1044
                                    <%End If%>
1051
                                    <%End If%>
1045
                                 </tr>
1052
                                 </tr>
1046
                                 <%End If%>
1053
                                 <%End If%>
1047
                              <%
1054
                              <%
1048
                              rsQry.MoveNext
1055
                              rsQry.MoveNext