-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathview.html
More file actions
67 lines (63 loc) · 2.05 KB
/
view.html
File metadata and controls
67 lines (63 loc) · 2.05 KB
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
<html>
<head>
<title>CodeReview</title>
<!-- CSS -->
<link href="include/CodeMirror/lib/codemirror.css" rel="stylesheet" />
<link href="view.css" rel="stylesheet" />
<!-- JS -->
<script src="js/jquery-1.7.2.min.js"></script>
<script src="include/URI.js"></script>
<script src="include/diff_match_patch/javascript/diff_match_patch.js"></script>
<script src="include/CodeMirror/lib/codemirror.js"></script>
<script src="js/jquery.form.js"></script>
<script src="js/jquery-ui-1.8.21.custom.min.js"></script>
<script src="view.js"></script>
</head>
<body>
<h1><a href="index.html">CodeReview</a></h1>
<div id="error"></div>
<div>
<div id="merge-controls">
<button class="right-button"
id="fork-code-button">Fork Code</button>
<button class="right-button"
id="merge-compute-button">Merge Diffs</button>
<button class="right-button"
id="merge-discard-button">Discard Merge</button>
</div>
<div class="clear">
<div id="code">
<textarea id="code-view"></textarea>
</div>
<div id="comment-info"></div>
<div id="right-side">
<div id="merge-div">
<div id="merge-output"></div>
</div>
<div id="comment-view"></div>
<div id="comment-new">
<form id="comment-form" enctype="multipart/form-data"
method="POST" action="/do/newcomment">
<input type="hidden" name="code_id" id="code-id" value="-1" />
<input type="hidden" name="line_start" id="line-start" value="-1" />
<input type="hidden" name="line_end" id="line-end" value="-1" />
<input type="text" name="user" id="user" value="Anonymous" />
<p>
Commenting on:
<span id="line-start-num">?</span>-<span id="line-end-num">?</span><br/>
<textarea id="text" name="text"></textarea><br />
<textarea id="diffs" name="diffs"></textarea><br />
<input type="submit" />
</p>
</form>
</div>
</div>
<!--
<div id="minimap">
<textarea></textarea>
</div>
-->
</div>
<div>
</body>
</html>