-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
125 lines (121 loc) · 4.9 KB
/
main.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!Doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Toki - an Incremental update tools</title>
<link type="text/css" rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="head">
<div class="title">
<img src="images/Toki.png" alt="Toki"/>
<span>Toki - an Incremental update tools</span>
</div>
<div class="window">
<ul>
<li><span class="close"></span></li> <!-- 关闭 -->
<li><span class="min"></span></li> <!-- 最小化-->
</ul>
</div>
</header>
<div id="container">
<section class="command">
<ul>
<li><a href="#" class="scan"><span>Scan</span></a></li>
<li><a href="javascript:;" class="conf"><span>Generation Configuration</span></a></li>
<li><a href="javascript:;" class="commit"><span>Commit Updates</span></a></li>
</ul>
<!-- generate file configration -->
<div class="confpanel">
<header>
Path Configuration
</header>
<ul>
<li>Remote source path: <input type="text" placeholder="source path" class="sourcepath"/></li>
<li>Remote Target path: <input type="text" placeholder="remote path" class="remotepath"/></li>
<li class="sure"><div>Sure</div></li>
<li class="cancel"><div>Cancel</div></li>
</ul>
</div>
<!-- commit updates -->
<div class="commitupdates">
<header>
Commit Updates
</header>
<ul>
<li>Remote host: <input type="text" placeholder="127.0.0.1" class="host"/></li>
<li>Remote port: <input type="text" placeholder="22" class="port"/></li>
<li>Remote username: <input type="text" placeholder="" class="username"/></li>
<li>Password: <input type="password" placeholder="" class="password"/></li>
<li class="surecommit"><div>Sure</div></li>
<li class="cancelcommit"><div>Cancel</div></li>
</ul>
</div>
</section>
<section class="local">
<div class="path">
<!-- go ahead and back -->
<nav class="go">
<ul>
<li><a class="back" href="javascript:;" title="back"></a></li>
<li><a class="ahead" href="javascript:;" title="ahead"></a></li>
</ul>
</nav>
<span>Local folder: </span>
<input type="text" class="ipath"/>
</div>
<div class="file">
<ul class="localfile">
</ul>
</div>
</section>
<section class="remote">
<div class="path">
<!-- go ahead and back -->
<nav class="go">
<ul>
<li><a class="back" href="javascript:;" title="back"></a></li>
<li><a class="ahead" href="javascript:;" title="ahead"></a></li>
</ul>
</nav>
<span>Remote file: </span>
<input type="text" class="ipath"/>
</div>
<div class="file">
<ul class="remotefile">
</ul>
<!--<nav class="contextmenu">
<ul>
<li class="refresh">Refresh...</li>
<li class="newfold">Create Folder...</li>
<li class="newfile">Create file...</li>
<li class="edit">Rename...</li>
<li class="trash">Delete...</li>
</ul>
</nav>-->
</div>
</section>
</div>
<footer>
<div class="author">
<span>—— by author Jackie Lin(<a href="http://forkme.info">http://forkme.info</a>)</span>
</div>
</footer>
<!--<div id="progresspanel" class="progresspanel">
<header>进度控制</header>
<ul class="progress">
<li class="panelcontent">复制进度</li>
<li class="bar">
<div></div>
</li>
</ul>
</div>-->
</body>
<script type="text/javascript" src="javascript/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="javascript/contextMenu.js"></script>
<script type="text/javascript" src="javascript/windowPanel.js"></script>
<script type="text/javascript" src="javascript/folderHistory.js"></script>
<script type="text/javascript" src="javascript/controller.js"></script>
<script type="text/javascript" src="javascript/remoteController.js"></script>
<script type="text/javascript" src="javascript/view.js"></script>
</html>