~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/admin/.svn/text-base/DiskSpaceQuota.ascx.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="DiskSpaceQuota.ascx.cs" Inherits="Novell.iFolderWeb.Admin.DiskSpaceQuota" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
2
 
 
3
 
<script language="javascript">
4
 
 
5
 
        function EnableDiskQuotaButtons()
6
 
        {
7
 
                var saveButton = document.getElementById( "Policy_PolicyApplyButton" );
8
 
                if ( saveButton != null )
9
 
                {
10
 
                        saveButton.disabled = false;
11
 
                }
12
 
                
13
 
                var cancelButton = document.getElementById( "Policy_PolicyCancelButton" );
14
 
                if ( cancelButton != null )
15
 
                {
16
 
                        cancelButton.disabled = false;
17
 
                }
18
 
        }
19
 
 
20
 
</script>
21
 
 
22
 
<div id="quotanav">
23
 
 
24
 
        <asp:Label ID="Title" Runat="server" CssClass="policytitle" />
25
 
        
26
 
        <div class="policydetails">
27
 
        
28
 
                
29
 
                <table class="policytable">
30
 
                
31
 
                        <tr>
32
 
                                <td class="policycheckbox">
33
 
                                        <asp:CheckBox ID="Enabled" Runat="server" AutoPostBack="True" />
34
 
                                </td>
35
 
                                
36
 
                                <td class="policytabletag">
37
 
                                        <asp:Label ID="LimitTag" Runat="server" />
38
 
                                </td>
39
 
 
40
 
                                <td class="policytablevalue">
41
 
                                        <asp:TextBox 
42
 
                                                ID="LimitValue" 
43
 
                                                Runat="server" 
44
 
                                                CssClass="policytextbox" 
45
 
                                                onkeypress="EnableDiskQuotaButtons()" />
46
 
                                </td>
47
 
                                
48
 
                                <td>
49
 
                                        <%= GetString( "MB" ) %>
50
 
                                </td>           
51
 
                        </tr>
52
 
                
53
 
                        <tr>
54
 
                                <td>
55
 
                                </td>
56
 
                                
57
 
                                <td class="policytabletag">
58
 
                                        <asp:Label ID="UsedTag" Runat="server" />
59
 
                                </td>
60
 
                                
61
 
                                <td class="policytablevalue">
62
 
                                        <asp:Label ID="UsedValue" Runat="server" />
63
 
                                </td>
64
 
                                
65
 
                                <td>
66
 
                                        <asp:Label ID="UsedUnits" Runat="server" />
67
 
                                </td>
68
 
                        </tr>
69
 
                        
70
 
                        <tr>
71
 
                                <td>
72
 
                                </td>
73
 
 
74
 
                                <td class="policytabletag">
75
 
                                        <asp:Label ID="AvailableTag" Runat="server" />
76
 
                                </td>
77
 
                                
78
 
                                <td class="policytablevalue">
79
 
                                        <asp:Label ID="AvailableValue" Runat="server" />
80
 
                                </td>
81
 
                                
82
 
                                <td>
83
 
                                        <asp:Label ID="AvailableUnits" Runat="server" />
84
 
                                </td>
85
 
                        </tr>
86
 
                        
87
 
                        <tr>
88
 
                                <td>
89
 
                                </td>
90
 
 
91
 
                                <td class="policytabletag">
92
 
                                        <asp:Label ID="EffectiveTag" Runat="server" />
93
 
                                </td>
94
 
                                
95
 
                                <td class="policytablevalue">
96
 
                                        <asp:Label ID="EffectiveValue" Runat="server" />
97
 
                                </td>
98
 
                                
99
 
                                <td>
100
 
                                        <asp:Label ID="EffectiveUnits" Runat="server" />
101
 
                                </td>
102
 
                        </tr>
103
 
                        
104
 
                </table>
105
 
                
106
 
        </div>
107
 
        
108
 
</div>
109