Subversion Repositories DevTools

Rev

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

Rev 3930 Rev 3931
Line 38... Line 38...
38
    chkbox = "<input type='checkbox' disabled"
38
    chkbox = "<input type='checkbox' disabled"
39
    If value Then chkbox = chkbox & " checked=yes"
39
    If value Then chkbox = chkbox & " checked=yes"
40
    chkbox = chkbox & "/>"
40
    chkbox = chkbox & "/>"
41
End Function
41
End Function
42
 
42
 
-
 
43
'----------------------------------------------
-
 
44
' Display the text (HTML allowed) as a tooltip
-
 
45
Function ToolTip(text)
-
 
46
    ToolTip = "<a href='#' class='tooltip'><img src='images/i_help.gif' style='height:12px;width:12px;border-width:0;'><span><i></i>"
-
 
47
    ToolTip = ToolTip & text
-
 
48
    ToolTip = ToolTip & "</span></a>"
-
 
49
End Function
-
 
50
 
43
%>
51
%>
44
<html>
52
<html>
45
<head>
53
<head>
46
<title>Release Manager</title>
54
<title>Release Manager</title>
47
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
55
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
Line 53... Line 61...
53
// Refresh this page with the specified project
61
// Refresh this page with the specified project
54
function updatePage(proj_id){
62
function updatePage(proj_id){
55
    window.location.replace("members_my_access_details.asp?proj_id=" + proj_id);
63
    window.location.replace("members_my_access_details.asp?proj_id=" + proj_id);
56
}
64
}
57
</script>
65
</script>
-
 
66
<style type="text/css">
-
 
67
    /* a.tooltip {outline:none;text-decoration:none;border-bottom:dotted 1px blue;}*/
-
 
68
    a.tooltip strong {line-height:30px;}
-
 
69
    a.tooltip > span 
-
 
70
    {
-
 
71
	    width:200px;
-
 
72
	    padding: 10px 20px;
-
 
73
	    margin-top: 20px;
-
 
74
	    margin-left: -85px;
-
 
75
	    opacity: 0;
-
 
76
	    visibility: hidden;
-
 
77
	    z-index: 10;	   
-
 
78
	    position: absolute;
-
 
79
 
-
 
80
        font-family:tahoma,sans-serif;
-
 
81
        font-size:11px;
-
 
82
        font-style:normal;
-
 
83
        font-weight:normal;
-
 
84
        white-space: normal;
-
 
85
        text-align: left;
-
 
86
	   
-
 
87
	    -webkit-border-radius: 3px;
-
 
88
	    -moz-border-radius: 3px;
-
 
89
	    -o-border-radius: 3px;
-
 
90
	    border-radius: 3px;
-
 
91
	    
-
 
92
	    
-
 
93
        -webkit-box-shadow: 2px 2px 2px #999;
-
 
94
	    -moz-box-shadow: 2px 2px 2px #999;		
-
 
95
	    box-shadow: 2px 2px 2px #999;	    
-
 
96
	    
-
 
97
	    -webkit-transition-property:opacity, margin-top, visibility, margin-left;
-
 
98
	    -webkit-transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
-
 
99
	    -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
-
 
100
	
-
 
101
	    -moz-transition-property:opacity, margin-top, visibility, margin-left;
-
 
102
	    -moz-transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
-
 
103
	    -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
-
 
104
	
-
 
105
	    -o-transition-property:opacity, margin-top, visibility, margin-left;
-
 
106
	    -o-transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
-
 
107
	    -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
-
 
108
	
-
 
109
	    transition-property:opacity, margin-top, visibility, margin-left;
-
 
110
	    transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
-
 
111
	    transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
-
 
112
    }
-
 
113
    
-
 
114
	a.tooltip:hover > span
-
 
115
	{
-
 
116
		opacity: 1;
-
 
117
		text-decoration:none;
-
 
118
		visibility: visible;
-
 
119
		overflow: visible;
-
 
120
		margin-top:25px;
-
 
121
		display: inline;
-
 
122
		margin-left: -60px;		
-
 
123
	}
-
 
124
 
-
 
125
    /* Display the ^ as a part of the tooltip. Needs <i></i> */
-
 
126
	a.tooltip span i {
-
 
127
    
-
 
128
		width: 15px;
-
 
129
		height: 15px;
-
 
130
		margin-left: 20px;
-
 
131
		margin-top: -19px;
-
 
132
			
-
 
133
		display: block;
-
 
134
		position: absolute;
-
 
135
 
-
 
136
		-webkit-transform: rotate(-45deg);
-
 
137
		-moz-transform: rotate(-45deg);
-
 
138
		-o-transform: rotate(-45deg);
-
 
139
		transform: rotate(-45deg);
-
 
140
			
-
 
141
		-webkit-box-shadow: inset -1px 1px 0 #fff;
-
 
142
		-moz-box-shadow: inset 0 1px 0 #fff;
-
 
143
		-o-box-shadow: inset 0 1px 0 #fff;
-
 
144
		box-shadow: inset 0 1px 0 #fff;
-
 
145
			
-
 
146
		display: none\0/;
-
 
147
		*display: none;
-
 
148
	}
-
 
149
    
-
 
150
a.tooltip > span {
-
 
151
	color: #000000; 
-
 
152
 
-
 
153
	background: #FBF5E6;
-
 
154
	background: -moz-linear-gradient(top, #FBF5E6 0%, #FFFFFF 100%);
-
 
155
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBF5E6), color-stop(100%,#FFFFFF));
-
 
156
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBF5E6', endColorstr='#FFFFFF',GradientType=0 );
-
 
157
	    
-
 
158
	border: 1px solid #CFB57C;	     
-
 
159
}    
-
 
160
	  
-
 
161
a.tooltip span i {
-
 
162
	background: #FBF5E6;
-
 
163
	border-top: 1px solid #CFB57C;
-
 
164
	border-right: 1px solid #CFB57C;
-
 
165
}    
-
 
166
</style>
58
</head>
167
</head>
59
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
168
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" >
60
<!-- TIPS LAYERS -------------------------------------->
169
<!-- TIPS LAYERS -------------------------------------->
61
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
170
<div id="formTipsLayer" style="position: absolute; z-index: 1000; visibility: hidden; left:0; top: 0; width: 10">&nbsp;</div>
62
<!----------------------------------------------------->
171
<!----------------------------------------------------->
Line 83... Line 192...
83
          <td align="right"><img src="images/h_trsp_dot.gif" width="500" height="30"></td>
192
          <td align="right"><img src="images/h_trsp_dot.gif" width="500" height="30"></td>
84
          <td width="1%">&nbsp;</td>
193
          <td width="1%">&nbsp;</td>
85
        </tr>
194
        </tr>
86
        <tr> 
195
        <tr> 
87
          <td align="left" valign="top" width="1%" background="images/bg_member_dark.gif"><img src="images/h_trsp_dot.gif" width="13" height="13"></td>
196
          <td align="left" valign="top" width="1%" background="images/bg_member_dark.gif"><img src="images/h_trsp_dot.gif" width="13" height="13"></td>
88
            <td background="images/bg_member_dark.gif" align="left" class="wform_ttl">&nbsp;</td>
197
           <td background="images/bg_member_dark.gif" align="left" class="wform_ttl">&nbsp;</td>
89
          <td align="right" valign="top" width="1%" background="images/bg_member_dark.gif">&nbsp;</td>
198
          <td align="right" valign="top" width="1%" background="images/bg_member_dark.gif">&nbsp;</td>
90
        </tr>
199
        </tr>
91
        <tr> 
200
        <tr> 
92
          <td width="1%" bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
201
          <td width="1%" bgcolor="#FFFFFF"><img src="images/h_trsp_dot.gif" width="10" height="100"></td>
93
          <td bgcolor="#FFFFFF" valign="top" class="form_item">
202
          <td bgcolor="#FFFFFF" valign="top" class="form_item">
Line 110... Line 219...
110
                    %>
219
                    %>
111
                 </select>
220
                 </select>
112
          </td>
221
          </td>
113
          </table>
222
          </table>
114
              <table width="100%" border="0" cellspacing="1" cellpadding="2">
223
              <table width="100%" border="0" cellspacing="1" cellpadding="2">
115
                <tr background="images/bg_form_lightbluedark.gif" class="form_field">
224
                <tr background="images/bg_form_lightbluedark.gif" class="form_field" style="white-space:nowrap">
116
                  <td nowrap><b>Action&nbsp;</b></td>
225
                  <td><b>Action&nbsp;</b><%=ToolTip("The internal name of the access control")%></td>
117
                  <td nowrap><b>Description</b></td>
226
                  <td><b>Description</b><%=ToolTip("A description of the access control item")%></td>
118
                  <td colspan=2 nowrap align="center"><b>Access</b></td>
227
                  <td colspan=2 align="center"><b>Access</b><%=ToolTip("<h4>Project Independent Permissions</h4>These are the basic permissions before project specific control elements have been applied.")%></td>
119
                  <td colspan=2 nowrap align="center"><b>Data</b></td>
228
                  <td colspan=2 align="center"><b>Data</b><%=ToolTip("<h4>Project Specific Permissions</h4>These are the permissions after project-specfic control elements have been applied.")%></td>
120
                </tr>
229
                </tr>
121
                <tr background="images/bg_form_lightbluedark.gif" class="form_field">
230
                <tr background="images/bg_form_lightbluedark.gif" class="form_field">
122
                  <td colspan=2></td>
231
                  <td colspan=2></td>
123
                  <td><b>Active</b></td>
232
                  <td><b>Active</b><%=ToolTip("The associated action should be available.<br>Controls do not need to visible for an action to be available.")%></td>
124
                  <td><b>Visible</b></td>
233
                  <td><b>Visible</b><%=ToolTip("The associated action may have a control button that is shown to the user.<br>If the action is not active then the action should not be available to the user.")%></td>
125
                  <td><b>Active</b></td>
234
                  <td><b>Active</b></td>
126
                  <td><b>Visible</b></td>
235
                  <td><b>Visible</b></td>
127
                </tr>
236
                </tr>
128
				<%
237
				<%
129
                sqlQuery = "select obj_name, obj_description " &_
238
                sqlQuery = "select obj_name, obj_description " &_