-
Notifications
You must be signed in to change notification settings - Fork 1
/
document-overview.html
312 lines (296 loc) · 12.1 KB
/
document-overview.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Evolution CMS</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width"/>
<meta name="theme-color" content="#1d2023"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="stylesheet" type="text/css" href="media/style/default/css/styles.min.css?v=1522594219"/>
<script type="text/javascript" src="media/script/tabpane.js"></script>
<script type="text/javascript" src="media/script/jquery/jquery.min.js"></script>
<script src="media/script/mootools/mootools.js" type="text/javascript"></script>
<script src="media/script/mootools/moodx.js" type="text/javascript"></script>
<!-- OnManagerMainFrameHeaderHTMLBlock -->
<script type="text/javascript">
if (!evo) {
var evo = {};
}
var actions;
var dontShowWorker = false;
var documentDirty = false;
var timerForUnload;
var managerPath = '';
evo.lang = {
saving: 'Saving, please wait...',
error_internet_connection: 'Server isn\'t available. Check your internet connection!',
warning_not_saved: 'The changes you have made have not been saved yet. You can choose to stay on the current page in order to save the changes (\'Cancel\'), or you can leave this page, losing any changes you have made (\'OK\').'
};
evo.style = {
actions_file: 'fa fa-file-o',
actions_pencil: 'fa fa-pencil',
actions_reply: 'fa fa-reply',
actions_plus: 'fa fa-plus'
};
evo.urlCheckConnectionToServer = 'http://site2.div.net.ua/manager/includes/version.inc.php';
</script>
<script src="media/script/main.js"></script>
<script>
doRefresh(1);
</script>
</head>
<body class=" dark" data-evocp="color">
<script type="text/javascript">
var actions = {
new: function() {
document.location.href = "index.php?pid=2&a=4";
},
newlink: function() {
document.location.href = "index.php?pid=2&a=72";
},
edit: function() {
document.location.href = "index.php?id=2&a=27";
},
save: function() {
documentDirty = false;
form_save = true;
document.mutate.save.click();
},
delete: function() {
if(confirm("Are you sure you want to delete this Resource?\nAny children Resources will also be deleted.") === true) {
document.location.href = "index.php?id=2&a=6";
}
},
cancel: function() {
documentDirty = false;
document.location.href = 'index.php?a=3&r=1&id=2&dir=DESC&sort=createdon';
},
move: function() {
document.location.href = "index.php?id=2&a=51";
},
duplicate: function() {
if(confirm("Are you sure you want to duplicate this Resource? Any item(s) it contains will also be duplicated.") === true) {
document.location.href = "index.php?id=2&a=94";
}
},
view: function() {
window.open('/blog.html', 'previeWin');
}
};
</script>
<script type="text/javascript" src="media/script/tablesort.js"></script>
<h1>
<i class="fa fa-info"></i>Blog <small>(2)</small> </h1>
<div id="actions">
<div class="btn-group">
<a class="btn btn-secondary" href="javascript:;" onclick="actions.new();">
<i class="fa fa-file-o"></i><span>Create Resource here</span>
</a>
<a class="btn btn-secondary" href="javascript:;" onclick="actions.newlink();">
<i class="fa fa-link"></i><span>Create Weblink here</span>
</a>
<a id="Button1" class="btn btn-success" href="javascript:;" onclick="actions.edit();">
<i class="fa fa-edit"></i><span>Edit</span>
</a>
<a id="Button2" class="btn btn-secondary" href="javascript:;" onclick="actions.move();">
<i class="fa fa-arrows"></i><span>Move</span>
</a>
<a id="Button6" class="btn btn-secondary" href="javascript:;" onclick="actions.duplicate();">
<i class="fa fa-clone"></i><span>Duplicate</span>
</a>
<a id="Button3" class="btn btn-secondary" href="javascript:;" onclick="actions.delete();">
<i class="fa fa-trash"></i><span>Delete</span>
</a>
<a id="Button4" class="btn btn-secondary" href="javascript:;" onclick="actions.view();">
<i class="fa fa-eye"></i><span>Preview</span>
</a>
</div>
</div>
<div class="tab-pane" id="childPane">
<script type="text/javascript">
docSettings = new WebFXTabPane(document.getElementById("childPane"), true );
</script>
<!-- General -->
<div class="tab-page" id="tabdocGeneral">
<h2 class="tab">General</h2>
<script type="text/javascript">docSettings.addTabPage(document.getElementById("tabdocGeneral"));</script>
<div class="container container-body">
<table>
<tr>
<td colspan="2"><b>General</b></td>
</tr>
<tr>
<td width="200" valign="top">Title:</td>
<td><b>Blog</b></td>
</tr>
<tr>
<td width="200" valign="top">Long title:</td>
<td>
<small>My Blog</small>
</td>
</tr>
<tr>
<td valign="top">Description:</td>
<td>(<i>Not set</i>)</td>
</tr>
<tr>
<td valign="top">Summary (introtext):</td>
<td>(<i>Not set</i>)</td>
</tr>
<tr>
<td valign="top">Type:</td>
<td>Resource</td>
</tr>
<tr>
<td valign="top">URL alias:</td>
<td>blog</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2"><b>Changes</b></td>
</tr>
<tr>
<td>Created:</td>
<td>13-04-2006 08:00:00 (<b>admin</b>)
</td>
</tr>
<tr>
<td>Edited:</td>
<td>11-10-2017 16:11:17 (<b>admin</b>)
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2"><b>Status</b></td>
</tr>
<tr>
<td>Status:</td>
<td><span class="publisheddoc">Published</span></td>
</tr>
<tr>
<td>Publish date:</td>
<td>(<i>Not set</i>)</td>
</tr>
<tr>
<td>Un-publish date:</td>
<td>(<i>Not set</i>)</td>
</tr>
<tr>
<td>Cacheable:</td>
<td>Yes</td>
</tr>
<tr>
<td>Searchable:</td>
<td>No</td>
</tr>
<tr>
<td>Menu index:</td>
<td>1</td>
</tr>
<tr>
<td>Show in menu:</td>
<td>Yes</td>
</tr>
<tr>
<td>Web access:</td>
<td>Public</td>
</tr>
<tr>
<td>Manager access:</td>
<td>Public</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2"><b>Markup/structure</b></td>
</tr>
<tr>
<td>Uses Template:</td>
<td>EVO startup - Bootstrap</td>
</tr>
<tr>
<td>Edit using rich text editor:</td>
<td>No</td>
</tr>
<tr>
<td>Resource is Container:</td>
<td>Yes</td>
</tr>
</table>
</div>
</div><!-- end tab-page -->
<!-- View Children -->
<div class="tab-page" id="tabChildren">
<h2 class="tab">View children</h2>
<script type="text/javascript">docSettings.addTabPage(document.getElementById("tabChildren"));</script>
<div class="container container-body">
<div class="form-group clearfix">
<div class="float-xs-left">
<span class="publishedDoc">3 Resources in this Container (<strong>Blog</strong>)</span>
</div>
<div class="float-xs-right">
<select size="1" name="sort" class="form-control form-control-sm" onchange="document.location='index.php?a=3&id=2&dir=DESC&sort='+this.options[this.selectedIndex].value"><option value="createdon" selected>Creation date</option><option value="pub_date">Publish date</option><option value="pagetitle">Resource's title</option><option value="menuindex">Menu index</option><option value="published">Published</option></select> <select size="1" name="dir" class="form-control form-control-sm" onchange="document.location='index.php?a=3&id=2&sort=createdon&dir='+this.options[this.selectedIndex].value"><option value="DESC" selected>Descending</option><option value="ASC">Ascending</option></select> </div>
</div>
<div class="row">
<div class="table-responsive">
<table class="table data nowrap">
<thead>
<tr class="">
<th width="1%" >ID</th>
<th>Title</th>
<th width="1%" >Creation date</th>
<th width="1%" >Publish date</th>
<th width="1%" >Status</th>
<th width="1%" >Action</th>
</tr>
</thead>
<tr class="">
<td><div class="text-right">47</div></td>
<td><span class="doc-item"><i class='fa fa-file-o'></i><a href="index.php?a=27&id=47&dir=DESC&sort=createdon"><span class=" publish">New documentation site: docs.evo.im</span></a></span></td>
<td><div class="text-right">11-10-2017</div></td>
<td><div class="text-right"></div></td>
<td><div class="text-nowrap"><span class="publishedDoc">Published</span></div></td>
<td><div class="actions text-center text-nowrap"><a href="index.php?a=27&id=47&dir=DESC&sort=createdon" title="Edit"><i class="fa fa-pencil-square-o"></i></a><a href="index.php?a=51&id=47&dir=DESC&sort=createdon" title="Move"><i
class="fa fa-arrows"></i></a><a href="index.php?a=62&id=47&dir=DESC&sort=createdon" title="Un-publish Resource"><i class="fa fa-arrow-down" ></i></a><a onclick="return confirm('Are you sure you want to delete this Resource?\nAny children Resources will also be deleted.')" href="index.php?a=6&id=47&dir=DESC&sort=createdon" title="Delete Resource"><i class="fa fa-trash"></i></a></div></td>
</tr>
<tr class="alt">
<td><div class="text-right">9</div></td>
<td><span class="doc-item"><i class='fa fa-file-o'></i><a href="index.php?a=27&id=9&dir=DESC&sort=createdon"><span class=" publish">Mini-Blog HOWTO</span></a></span></td>
<td><div class="text-right">13-04-2006</div></td>
<td><div class="text-right"></div></td>
<td><div class="text-nowrap"><span class="publishedDoc">Published</span></div></td>
<td><div class="actions text-center text-nowrap"><a href="index.php?a=27&id=9&dir=DESC&sort=createdon" title="Edit"><i class="fa fa-pencil-square-o"></i></a><a href="index.php?a=51&id=9&dir=DESC&sort=createdon" title="Move"><i
class="fa fa-arrows"></i></a><a href="index.php?a=62&id=9&dir=DESC&sort=createdon" title="Un-publish Resource"><i class="fa fa-arrow-down" ></i></a><a onclick="return confirm('Are you sure you want to delete this Resource?\nAny children Resources will also be deleted.')" href="index.php?a=6&id=9&dir=DESC&sort=createdon" title="Delete Resource"><i class="fa fa-trash"></i></a></div></td>
</tr>
<tr class="">
<td><div class="text-right">18</div></td>
<td><span class="doc-item"><i class='fa fa-file-o'></i><a href="index.php?a=27&id=18&dir=DESC&sort=createdon"><span class=" publish">Just a pretend, older post</span></a></span></td>
<td><div class="text-right">13-04-2006</div></td>
<td><div class="text-right"></div></td>
<td><div class="text-nowrap"><span class="publishedDoc">Published</span></div></td>
<td><div class="actions text-center text-nowrap"><a href="index.php?a=27&id=18&dir=DESC&sort=createdon" title="Edit"><i class="fa fa-pencil-square-o"></i></a><a href="index.php?a=51&id=18&dir=DESC&sort=createdon" title="Move"><i
class="fa fa-arrows"></i></a><a href="index.php?a=62&id=18&dir=DESC&sort=createdon" title="Un-publish Resource"><i class="fa fa-arrow-down" ></i></a><a onclick="return confirm('Are you sure you want to delete this Resource?\nAny children Resources will also be deleted.')" href="index.php?a=6&id=18&dir=DESC&sort=createdon" title="Delete Resource"><i class="fa fa-trash"></i></a></div></td>
</tr>
</table>
</div>
</div>
</div>
</div><!-- end tab-page -->
</div><!-- end documentPane -->
<script type='text/javascript'>
document.body.addEventListener('keydown', function(e) {
if((e.which === 115 || e.which === 83 ) && (e.ctrlKey || e.metaKey) && !e.altKey) {
var Button1 = document.querySelector('a#Button1') || document.querySelector('#Button1 > a');
if(Button1) Button1.click();
e.preventDefault()
}
});
</script>
</body>
</html>
<!-- end footer -->