~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/webaccess/.svn/text-base/NewFolder.aspx.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
 
<%@ Page Language="C#" Codebehind="NewFolder.aspx.cs" AutoEventWireup="false" Inherits="Novell.iFolderApp.Web.NewFolderPage" %>
2
 
<%@ Register TagPrefix="iFolder" TagName="HeaderControl" Src="Header.ascx" %>
3
 
<%@ Register TagPrefix="iFolder" TagName="MessageControl" Src="Message.ascx" %>
4
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
5
 
<html>
6
 
 
7
 
<head>
8
 
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
9
 
        
10
 
        <title><%= GetString("TITLE") %></title>
11
 
        
12
 
        <link rel="SHORTCUT ICON" href="images/ifolder.ico">
13
 
 
14
 
        <style type="text/css">
15
 
                @import url(css/ifolder.css);
16
 
        </style>
17
 
 
18
 
        <script type="text/javascript">
19
 
        
20
 
                function SubmitKeyDown(e, b)
21
 
                {
22
 
                        var result = true;
23
 
                        
24
 
                        if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13))
25
 
                        {
26
 
                                document.getElementById(b).click();
27
 
                                result = false;
28
 
                        } 
29
 
                        
30
 
                        return result;
31
 
                }
32
 
 
33
 
                function SetFocus()
34
 
                {
35
 
                        document.getElementById("NewFolderName").select();
36
 
                }
37
 
                
38
 
                // on load
39
 
                window.onload = SetFocus;
40
 
        
41
 
        </script>
42
 
 
43
 
</head>
44
 
 
45
 
<body>
46
 
 
47
 
<div id="container">
48
 
        
49
 
        <form runat="server">
50
 
 
51
 
                <iFolder:HeaderControl id="Head" runat="server" />
52
 
                
53
 
                <div id="nav">
54
 
                </div>
55
 
        
56
 
                <div id="content">
57
 
                
58
 
                        <iFolder:MessageControl id="Message" runat="server" />
59
 
        
60
 
                        <div class="section">
61
 
                                <%= GetString("NEWFOLDER") %>
62
 
                        </div>
63
 
                        
64
 
                        <div class="main">
65
 
                                
66
 
                                <div class="path">
67
 
                                        <asp:Image ImageUrl="images/folder.png" runat="server" />
68
 
                                        <asp:Literal ID="ParentPath" runat="server" />
69
 
                                </div>
70
 
 
71
 
                                <div class="label"><%= GetString("NAME") %></div>
72
 
                                <asp:TextBox ID="NewFolderName" onkeydown="return SubmitKeyDown(event, 'CreateButton');" runat="server" />
73
 
                                
74
 
                                <div class="buttons">
75
 
                                        <asp:Button ID="CreateButton" runat="server" />
76
 
                                        <asp:Button ID="CancelButton" runat="server" />
77
 
                                </div>
78
 
 
79
 
                        </div>
80
 
        
81
 
                </div>
82
 
        
83
 
        </form>
84
 
 
85
 
</div>
86
 
 
87
 
</body>
88
 
 
89
 
</html>
 
 
b'\\ No newline at end of file'