Subversion Repositories DevTools

Rev

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

Rev 6783 Rev 6793
Line 63... Line 63...
63
</head>
63
</head>
64
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
64
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
65
<!-- HEADER -->
65
<!-- HEADER -->
66
<!--#include file="_header.asp"-->
66
<!--#include file="_header.asp"-->
67
<div class="div_table">
67
<div class="div_table">
68
  <%
-
 
69
  '-- FROM START ---------------------------------------------------------------------------------------------------------
68
  <table align=center border="0" cellspacing="1" cellpadding="2" class='stdBrown'>
70
  objFormComponent.FormName = "ProjectAdmin"
69
      <caption>Project Information</caption>
-
 
70
      <thead>
-
 
71
        <tr>
71
  objFormComponent.Action = ScriptName
72
          <th nowrap>Project Name </th>
72
  objFormComponent.OnSubmit = "ShowProgress();"
73
          <th nowrap>Code Review Base URL</th>
73
  Call objFormComponent.FormStart()
74
          <th nowrap>JIRA Key</th>
-
 
75
          <th >&nbsp;</th>
74
  %>
76
        </tr>
-
 
77
      </thead>
-
 
78
            <%Set rsProj = OraDatabase.DbCreateDynaset( Get_Projects, cint(0))
75
    <table border="0" cellspacing="0" cellpadding="0">
79
        While ((NOT rsProj.BOF) AND (NOT rsProj.EOF))
-
 
80
        %>
76
      <tr>
81
      <tr>
77
        <td background="images/bg_bage_0a.gif">
-
 
78
          <table width="100%"  border="0" cellspacing="1" cellpadding="2">
-
 
79
            <tr>
-
 
80
              <td width="1%" background="images/bg_bage_0.gif"></td>
-
 
81
              <td width="200px" background="images/bg_bage_0.gif" class="body_col" nowrap>Project Name </td>
-
 
82
              <td width="400px" background="images/bg_bage_0.gif" class="body_col" nowrap>Code Review Base URL</td>
-
 
83
              <td width="100px" background="images/bg_bage_0.gif" class="body_col" nowrap>JIRA Key</td>
-
 
84
              <td width="1%" background="images/bg_bage_0.gif">&nbsp;</td>
-
 
85
            </tr>
-
 
86
					  <!-- NORMAL ROW +++++++++++++++++++ -->
-
 
87
				    <%Set rsProj = OraDatabase.DbCreateDynaset( Get_Projects, cint(0))
-
 
88
		        While ((NOT rsProj.BOF) AND (NOT rsProj.EOF))
-
 
89
		        %>
-
 
90
	          <tr>
-
 
91
	            <td background="images/bg_bage_0.gif" align="center"></td>
-
 
92
	            <td bgcolor="#FFFFFF" class="body_row" nowrap><%=UCase(rsProj.Fields("proj_name"))%></td>
82
        <td nowrap><%=UCase(rsProj.Fields("proj_name"))%></td>
93
	            <td bgcolor="#FFFFFF" class="body_row" nowrap><%=rsProj.Fields("base_url")%></td>
83
        <td nowrap><%=rsProj.Fields("base_url")%></td>
94
	            <td bgcolor="#FFFFFF" class="body_row" nowrap><%=rsProj.Fields("jira_key")%></td>
84
        <td nowrap><%=rsProj.Fields("jira_key")%></td>
95
	            <td align="center" nowrap background="images/bg_bage_0.gif">
85
        <td align="center" nowrap>
96
                <%If bCanEdit Then%>
86
        <%If bCanEdit Then%>
97
                    <a href="javascript:;" onclick="MM_openVixIFrame('_wform_edit_projects.asp?proj_id=<%=rsProj.Fields("proj_id")%>','Edit Project Config')"><%=LIMG_EDIT%></a>
87
            <a href="javascript:;" onclick="MM_openVixIFrame('_wform_edit_projects.asp?proj_id=<%=rsProj.Fields("proj_id")%>','Edit Project Config')"><%=LIMG_EDIT%></a>
98
                <%Else%>
88
        <%Else%>
99
                    <%=LIMG_EDIT_DISABLED%>
89
            <%=LIMG_EDIT_DISABLED%>
100
                <%End If%>
-
 
101
                </td>
-
 
102
	          </tr>
-
 
103
	          <%rsProj.MoveNext
-
 
104
	          WEnd%>
-
 
105
		        <%If rsProj.RecordCount < 1 Then%>
-
 
106
			      <tr> 
-
 
107
	            <td nowrap class="err_alert"><img src="images/h_trsp_dot.gif" width="16" height="16" align="absmiddle" vspace="4"><b>No projects available!</b></td>
-
 
108
	          </tr>
-
 
109
	          <tr> 
-
 
110
	            <td background="images/bg_home_orglite.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
-
 
111
	          </tr>
-
 
112
		        <%End If%>
90
        <%End If%>
113
					  <!-- +++++++++++++++++++++++++++++++++ -->
-
 
114
					</table>
-
 
115
        </td>
91
        </td>
116
      </tr>
92
      </tr>
117
		  <%=objPMod.ComposeHiddenTags()%>
93
      <%rsProj.MoveNext
-
 
94
      WEnd%>
118
		  <input type="hidden" name="action" value="true">
95
        <%If rsProj.RecordCount < 1 Then%>
-
 
96
            <tr> 
-
 
97
                <td nowrap class="err_alert"><img src="images/h_trsp_dot.gif" width="16" height="16" align="absmiddle" vspace="4"><b>No projects available!</b></td>
-
 
98
            </tr>
-
 
99
            <tr> 
-
 
100
                <td background="images/bg_home_orglite.gif"><img src="images/h_trsp_dot.gif" width="1" height="1"></td>
-
 
101
            </tr>
119
		  <%Call objFormComponent.FormEnd()%>
102
        <%End If%>
120
    </table>
103
    </table>
121
  </div>
104
</div>
122
<!-- FOOTER -->
105
<!-- FOOTER -->
123
<!--#include file="_footer.asp"-->
106
<!--#include file="_footer.asp"-->
124
</body>
107
</body>
125
</html>
108
</html>