This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
138 lines (135 loc) · 4.49 KB
/
editor.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
126
127
128
129
130
131
132
133
134
135
136
137
138
<html>
<head>
<title>CodeProject Template Items Editor</title>
<style type="text/css">
#TextArea1
{
height: 128px;
width: 315px;
}
#Text2
{
width: 315px;
}
#Text1
{
width: 315px;
}
#TextBody
{
height: 180px;
width: 376px;
}
#TextSubject
{
width: 375px;
}
#TextTitle
{
width: 375px;
}
#Select1
{
width: 350px;
height: 180px;
}
#selectTemplates
{
width: 465px;
height: 243px;
}
.style1
{
width: 465px;
}
.style2
{
width: 377px;
}
.style3
{
height: 174px;
width: 82px;
}
.style4
{
width: 377px;
height: 174px;
}
.style5
{
width: 107px;
}
.style6
{
width: 82px;
}
.style7
{
width: 465px;
height: 252px;
}
.style9
{
font-size: x-small;
font-style: italic;
text-align: right;
}
</style>
<link type="text/css" href="css/custom-theme/jquery-ui-1.8.2.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="js/json2-min.js"></script>
<script type="text/javascript" src="jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="jquery/jquery-ui-1.8.2.custom.min.js"></script>
<script type="text/javascript" src="js/cptemplates.js"></script>
<script type="text/javascript" src="js/startEditor.js"></script>
<script type="text/javascript" src="js/analytics.js"></script>
</head>
<body style="background-color: #ffcc66; width: 470; height: 400">
<center>
<img alt="CodeProject Logo" src="images/codeproject468x60.gif" /><br />
<span style="font-size: medium;">CodeProject Template Editor</span>
</center>
<div id="templateLoading">Loading elements..........<img src="css/custom-theme/images/ui-anim_basic_16x16.gif" alt="Loading Data Animation"/></div>
<div id="templateListing">
<div id="templateFilter" style="float: right">Template Filter: <select id="selectFilter" name="selectFilter">
<option>All</option>
<option>Message</option>
<option>Answer</option>
<option>Snippet</option>
</select></div>
<table>
<tr><td class="style7"><select id="selectTemplates" multiple="multiple" name="selectTemplates"></select></td></tr>
<tr><td class="style1">
<input id="buttonAdd" name="buttonAdd" title="Add New Template" type="button" value="Add" />
<input id="buttonEdit" name="buttonEdit" title="Edit Selected Template" type="button" value="Edit" />
<input id="buttonClone" name="buttonClone" title="Clone Selected Template" type="button" value="Clone" />
<input id="buttonDelete" name="buttonDelete" title="Delete Selected Template" type="button" value="Delete" />
</td></tr>
</table>
</div>
<div id="templateEdit">
<table>
<tr><td class="style6">Type :</td><td colspan="2" class="style2">
<input id="RadioTypeMessage" checked="true" name="RadioType"
title="Message Item" type="radio" value="Message" />Message
<input id="RadioTypeAnswer" name="RadioType"
title="Answer Item" type="radio" value="Answer" />Answer
<input id="RadioTypeSnippet" name="RadioType"
title="Snippet Item" type="radio" value="Snippet" />Snippet
</td></tr>
<tr><td class="style6">Title :</td><td colspan="2" class="style2"><input id="TextTitle" type="text" /></td></tr>
<tr><td class="style6">Subject :</td><td colspan="2" class="style2">
<input id="TextSubject" type="text"
alt="Subject field is used by Message Type only" /></td></tr>
<tr><td class="style3">Body :</td><td colspan="2" class="style4">
<textarea id="TextBody" name="S1"></textarea></td></tr>
<tr><td colspan="3" class="style5">
<input id="buttonCancel" type="button"
value="Cancel" name="buttonCancel" title="Cancel Changes" />
<input id="buttonSave" name="buttonSave" title="Save Template" type="button"
value="Save" /></td></tr>
</table>
</div>
<p class="style9">Version 2.0 - Dave Auld (c) 2014</p>
</body>
</html>