openfire_admin 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +2 -0
- data/README.md +1 -3
- data/lib/openfire_admin/admin_client.rb +24 -0
- data/lib/openfire_admin/client.rb +63 -0
- data/lib/openfire_admin/http_client.rb +2 -1
- data/lib/openfire_admin/plugin.rb +132 -0
- data/lib/openfire_admin/property_map.rb +76 -0
- data/lib/openfire_admin/response_exception.rb +2 -0
- data/lib/openfire_admin/system_cache.rb +39 -0
- data/lib/openfire_admin/user_admin.rb +32 -0
- data/lib/openfire_admin/version.rb +1 -1
- data/lib/openfire_admin.rb +4 -308
- data/openfire_admin.gemspec +3 -0
- data/spec/fixtures/plugin-admin.jsp +584 -0
- data/spec/fixtures/server-properties.jsp +483 -0
- data/spec/fixtures/server-properties_password.jsp +640 -0
- data/spec/fixtures/system-cache.jsp +1315 -0
- data/spec/fixtures/system-cache_success.jsp +1327 -0
- data/spec/fixtures/versions.xml +32 -0
- data/spec/openfire_admin_spec.rb +198 -0
- data/spec/spec_helper.rb +91 -0
- metadata +46 -6
@@ -0,0 +1,640 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
21
|
+
|
22
|
+
|
23
|
+
<html>
|
24
|
+
<head>
|
25
|
+
<title>Openfire Admin Console: System Properties</title>
|
26
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
27
|
+
<link rel="stylesheet" type="text/css" href="/style/global.css">
|
28
|
+
<script language="JavaScript" type="text/javascript" src="/js/prototype.js"></script>
|
29
|
+
<script language="JavaScript" type="text/javascript" src="/js/scriptaculous.js"></script>
|
30
|
+
<script language="JavaScript" type="text/javascript" src="/js/cookies.js"></script>
|
31
|
+
<script language="JavaScript" type="text/javascript">
|
32
|
+
|
33
|
+
</script>
|
34
|
+
<script type="text/javascript" src="/js/behaviour.js"></script>
|
35
|
+
<script type="text/javascript">
|
36
|
+
// Add a nice little rollover effect to any row in a jive-table object. This will help
|
37
|
+
// visually link left and right columns.
|
38
|
+
/*
|
39
|
+
var myrules = {
|
40
|
+
'.jive-table TBODY TR' : function(el) {
|
41
|
+
el.onmouseover = function() {
|
42
|
+
this.style.backgroundColor = '#ffffee';
|
43
|
+
}
|
44
|
+
el.onmouseout = function() {
|
45
|
+
this.style.backgroundColor = '#ffffff';
|
46
|
+
}
|
47
|
+
}
|
48
|
+
};
|
49
|
+
Behaviour.register(myrules);
|
50
|
+
*/
|
51
|
+
</script>
|
52
|
+
<meta name="pageID" content="server-props"/>
|
53
|
+
<meta name="helpPage" content="manage_system_properties.html"/>
|
54
|
+
</head>
|
55
|
+
|
56
|
+
<body id="jive-body">
|
57
|
+
|
58
|
+
<!-- BEGIN main -->
|
59
|
+
<div id="main">
|
60
|
+
|
61
|
+
<div id="jive-header">
|
62
|
+
<div id="jive-logo">
|
63
|
+
<a href="/index.jsp"><img src="/images/login_logo.gif" alt="Openfire" width="179" height="53" /></a>
|
64
|
+
</div>
|
65
|
+
<div id="jive-userstatus">
|
66
|
+
Openfire 3.8.2<br/>
|
67
|
+
Logged in as <strong>nazoking</strong> - <a href="/index.jsp?logout=true">Logout</a>
|
68
|
+
</div>
|
69
|
+
<div id="jive-nav">
|
70
|
+
<div id="jive-nav-left"></div>
|
71
|
+
<ul><li class="currentlink">
|
72
|
+
<a href="/index.jsp" title="Click to manage server settings" onmouseover="self.status='Click to manage server settings';return true;" onmouseout="self.status='';return true;">Server</a>
|
73
|
+
</li><li class="">
|
74
|
+
<a href="/user-summary.jsp" title="Click to manage users and groups" onmouseover="self.status='Click to manage users and groups';return true;" onmouseout="self.status='';return true;">Users/Groups</a>
|
75
|
+
</li><li class="">
|
76
|
+
<a href="/session-summary.jsp" title="Click to manage connected sessions" onmouseover="self.status='Click to manage connected sessions';return true;" onmouseout="self.status='';return true;">Sessions</a>
|
77
|
+
</li><li class="">
|
78
|
+
<a href="/muc-room-summary.jsp" title="Click to manage group chat settings" onmouseover="self.status='Click to manage group chat settings';return true;" onmouseout="self.status='';return true;">Group Chat</a>
|
79
|
+
</li><li class="">
|
80
|
+
<a href="/plugin-admin.jsp" title="Click to manage all plugins" onmouseover="self.status='Click to manage all plugins';return true;" onmouseout="self.status='';return true;">Plugins</a>
|
81
|
+
</li></ul>
|
82
|
+
<div id="jive-nav-right"></div>
|
83
|
+
</div>
|
84
|
+
<div id="jive-subnav">
|
85
|
+
<ul><li class="current">
|
86
|
+
<a href="/index.jsp" title=""
|
87
|
+
onmouseover="self.status='';return true;" onmouseout="self.status='';return true;"
|
88
|
+
>Server Manager</a>
|
89
|
+
</li><li class="">
|
90
|
+
<a href="/profile-settings.jsp" title=""
|
91
|
+
onmouseover="self.status='';return true;" onmouseout="self.status='';return true;"
|
92
|
+
>Server Settings</a>
|
93
|
+
</li><li class="">
|
94
|
+
<a href="/media-proxy.jsp" title=""
|
95
|
+
onmouseover="self.status='';return true;" onmouseout="self.status='';return true;"
|
96
|
+
>Media Services</a>
|
97
|
+
</li><li class="">
|
98
|
+
<a href="/plugins/monitoring/stats-dashboard.jsp" title="View overview of server statistics."
|
99
|
+
onmouseover="self.status='View overview of server statistics.';return true;" onmouseout="self.status='';return true;"
|
100
|
+
>Statistics</a>
|
101
|
+
</li><li class="">
|
102
|
+
<a href="/plugins/monitoring/archive-search.jsp" title="Archiving Settings"
|
103
|
+
onmouseover="self.status='Archiving Settings';return true;" onmouseout="self.status='';return true;"
|
104
|
+
>Archiving</a>
|
105
|
+
</li></ul>
|
106
|
+
</div>
|
107
|
+
</div>
|
108
|
+
|
109
|
+
<div id="jive-main">
|
110
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
111
|
+
<tbody>
|
112
|
+
<tr valign="top">
|
113
|
+
<td width="1%">
|
114
|
+
<div id="jive-sidebar-container">
|
115
|
+
<div id="jive-sidebar-box">
|
116
|
+
<div id="jive-sidebar">
|
117
|
+
<ul><li class="">
|
118
|
+
<a href="/index.jsp" title="Click to view system information"
|
119
|
+
onmouseover="self.status='Click to view system information';return true;" onmouseout="self.status='';return true;"
|
120
|
+
>Server Information</a>
|
121
|
+
|
122
|
+
</li><li class="currentlink">
|
123
|
+
<a href="/server-properties.jsp" title="Click to manage server properties"
|
124
|
+
onmouseover="self.status='Click to manage server properties';return true;" onmouseout="self.status='';return true;"
|
125
|
+
>System Properties</a>
|
126
|
+
|
127
|
+
</li><li class="">
|
128
|
+
<a href="/server-locale.jsp" title="Click to set the language and time zone"
|
129
|
+
onmouseover="self.status='Click to set the language and time zone';return true;" onmouseout="self.status='';return true;"
|
130
|
+
>Language and Time</a>
|
131
|
+
|
132
|
+
</li><li class="">
|
133
|
+
<a href="/system-clustering.jsp" title="Click to manage clustering settings"
|
134
|
+
onmouseover="self.status='Click to manage clustering settings';return true;" onmouseout="self.status='';return true;"
|
135
|
+
>Clustering</a>
|
136
|
+
|
137
|
+
</li><li class="">
|
138
|
+
<a href="/system-cache.jsp" title="Click to manage data caches"
|
139
|
+
onmouseover="self.status='Click to manage data caches';return true;" onmouseout="self.status='';return true;"
|
140
|
+
>Cache Summary</a>
|
141
|
+
|
142
|
+
</li><li class="">
|
143
|
+
<a href="/server-db.jsp" title="Click to view database connection information"
|
144
|
+
onmouseover="self.status='Click to view database connection information';return true;" onmouseout="self.status='';return true;"
|
145
|
+
>Database</a>
|
146
|
+
|
147
|
+
</li><li class="">
|
148
|
+
<a href="/logviewer.jsp" title="Click to view server logs"
|
149
|
+
onmouseover="self.status='Click to view server logs';return true;" onmouseout="self.status='';return true;"
|
150
|
+
>Logs</a>
|
151
|
+
|
152
|
+
</li><li class="">
|
153
|
+
<a href="/system-email.jsp" title="Click to configure email settings"
|
154
|
+
onmouseover="self.status='Click to configure email settings';return true;" onmouseout="self.status='';return true;"
|
155
|
+
>Email Settings</a>
|
156
|
+
|
157
|
+
</li><li class="">
|
158
|
+
<a href="/security-audit-viewer.jsp" title="Click to view the security audit logs"
|
159
|
+
onmouseover="self.status='Click to view the security audit logs';return true;" onmouseout="self.status='';return true;"
|
160
|
+
>Security Audit Viewer</a>
|
161
|
+
|
162
|
+
</li></ul>
|
163
|
+
<br>
|
164
|
+
<img src="/images/blank.gif" width="150" height="1" border="0" alt="">
|
165
|
+
</div>
|
166
|
+
</div>
|
167
|
+
</div>
|
168
|
+
</td>
|
169
|
+
<td width="99%" id="jive-content">
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
|
174
|
+
<h1>
|
175
|
+
System Properties
|
176
|
+
</h1>
|
177
|
+
|
178
|
+
<div id="jive-main-content">
|
179
|
+
<p>
|
180
|
+
Below is a list of the system properties. Values for password sensitive fields are hidden. Long property names and values are clipped. Hold your mouse over the property name to see the full value or to see both the full name and value, click the edit icon next to the property.
|
181
|
+
</p>
|
182
|
+
|
183
|
+
<p><b>System Properties</b></p>
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
<div class="jive-info">
|
190
|
+
<table cellpadding="0" cellspacing="0" border="0">
|
191
|
+
<tbody>
|
192
|
+
<tr><td class="jive-icon"><img src="images/info-16x16.gif" width="16" height="16" border="0" alt=""></td>
|
193
|
+
<td class="jive-icon-label">
|
194
|
+
Use the form below this table to edit the property value.
|
195
|
+
</td></tr>
|
196
|
+
</tbody>
|
197
|
+
</table>
|
198
|
+
</div><br>
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
<script language="JavaScript" type="text/javascript">
|
205
|
+
function doedit(propName) {
|
206
|
+
document.propform.propName.value = propName;
|
207
|
+
document.propform.edit.value = 'true';
|
208
|
+
document.propform.action = document.propform.action + '#edit';
|
209
|
+
document.propform.submit();
|
210
|
+
}
|
211
|
+
function dodelete(propName) {
|
212
|
+
var dodelete = confirm('Are you sure you want to delete this property?');
|
213
|
+
if (dodelete) {
|
214
|
+
document.propform.propName.value = propName;
|
215
|
+
document.propform.del.value = 'true';
|
216
|
+
document.propform.submit();
|
217
|
+
return true;
|
218
|
+
}
|
219
|
+
else {
|
220
|
+
return false;
|
221
|
+
}
|
222
|
+
}
|
223
|
+
</script>
|
224
|
+
|
225
|
+
<form action="server-properties.jsp" method="post" name="propform">
|
226
|
+
<input type="hidden" name="edit" value="">
|
227
|
+
<input type="hidden" name="del" value="">
|
228
|
+
<input type="hidden" name="propName" value="">
|
229
|
+
|
230
|
+
<style type="text/css">
|
231
|
+
.hidebox {
|
232
|
+
text-overflow : ellipsis;
|
233
|
+
overflow : hidden;
|
234
|
+
white-space : nowrap;
|
235
|
+
}
|
236
|
+
</style>
|
237
|
+
|
238
|
+
<div class="jive-table">
|
239
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
240
|
+
<thead>
|
241
|
+
<tr>
|
242
|
+
<th nowrap>Property Name</th>
|
243
|
+
<th nowrap>Property Value</th>
|
244
|
+
<th style="text-align:center;">Edit</th>
|
245
|
+
<th style="text-align:center;">Delete</th>
|
246
|
+
</tr>
|
247
|
+
</thead>
|
248
|
+
<tbody>
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
<tr class="">
|
254
|
+
|
255
|
+
<td>
|
256
|
+
<div class="hidebox" style="width:200px;">
|
257
|
+
<span title="clustering.enabled">
|
258
|
+
clustering.enabled
|
259
|
+
</span>
|
260
|
+
</div>
|
261
|
+
</td>
|
262
|
+
<td>
|
263
|
+
<div class="hidebox" style="width:300px;">
|
264
|
+
|
265
|
+
<span title="true">true</span>
|
266
|
+
|
267
|
+
</div>
|
268
|
+
</td>
|
269
|
+
<td align="center"><a href="#" onclick="doedit('clustering.enabled');"
|
270
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
271
|
+
alt="Click to edit this property" border="0"></a
|
272
|
+
>
|
273
|
+
</td>
|
274
|
+
<td align="center"><a href="#" onclick="return dodelete('clustering.enabled');"
|
275
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
276
|
+
alt="Click to delete this property" border="0"></a
|
277
|
+
>
|
278
|
+
</td>
|
279
|
+
</tr>
|
280
|
+
|
281
|
+
|
282
|
+
<tr class="">
|
283
|
+
|
284
|
+
<td>
|
285
|
+
<div class="hidebox" style="width:200px;">
|
286
|
+
<span title="conversation.idleTime">
|
287
|
+
conversation.idleTime
|
288
|
+
</span>
|
289
|
+
</div>
|
290
|
+
</td>
|
291
|
+
<td>
|
292
|
+
<div class="hidebox" style="width:300px;">
|
293
|
+
|
294
|
+
<span title="10">10</span>
|
295
|
+
|
296
|
+
</div>
|
297
|
+
</td>
|
298
|
+
<td align="center"><a href="#" onclick="doedit('conversation.idleTime');"
|
299
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
300
|
+
alt="Click to edit this property" border="0"></a
|
301
|
+
>
|
302
|
+
</td>
|
303
|
+
<td align="center"><a href="#" onclick="return dodelete('conversation.idleTime');"
|
304
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
305
|
+
alt="Click to delete this property" border="0"></a
|
306
|
+
>
|
307
|
+
</td>
|
308
|
+
</tr>
|
309
|
+
|
310
|
+
|
311
|
+
<tr class="">
|
312
|
+
|
313
|
+
<td>
|
314
|
+
<div class="hidebox" style="width:200px;">
|
315
|
+
<span title="conversation.maxAge">
|
316
|
+
conversation.maxAge
|
317
|
+
</span>
|
318
|
+
</div>
|
319
|
+
</td>
|
320
|
+
<td>
|
321
|
+
<div class="hidebox" style="width:300px;">
|
322
|
+
|
323
|
+
<span title="7">7</span>
|
324
|
+
|
325
|
+
</div>
|
326
|
+
</td>
|
327
|
+
<td align="center"><a href="#" onclick="doedit('conversation.maxAge');"
|
328
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
329
|
+
alt="Click to edit this property" border="0"></a
|
330
|
+
>
|
331
|
+
</td>
|
332
|
+
<td align="center"><a href="#" onclick="return dodelete('conversation.maxAge');"
|
333
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
334
|
+
alt="Click to delete this property" border="0"></a
|
335
|
+
>
|
336
|
+
</td>
|
337
|
+
</tr>
|
338
|
+
|
339
|
+
|
340
|
+
<tr class="">
|
341
|
+
|
342
|
+
<td>
|
343
|
+
<div class="hidebox" style="width:200px;">
|
344
|
+
<span title="conversation.maxRetrievable">
|
345
|
+
conversation.maxRetrievable
|
346
|
+
</span>
|
347
|
+
</div>
|
348
|
+
</td>
|
349
|
+
<td>
|
350
|
+
<div class="hidebox" style="width:300px;">
|
351
|
+
|
352
|
+
<span title="0">0</span>
|
353
|
+
|
354
|
+
</div>
|
355
|
+
</td>
|
356
|
+
<td align="center"><a href="#" onclick="doedit('conversation.maxRetrievable');"
|
357
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
358
|
+
alt="Click to edit this property" border="0"></a
|
359
|
+
>
|
360
|
+
</td>
|
361
|
+
<td align="center"><a href="#" onclick="return dodelete('conversation.maxRetrievable');"
|
362
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
363
|
+
alt="Click to delete this property" border="0"></a
|
364
|
+
>
|
365
|
+
</td>
|
366
|
+
</tr>
|
367
|
+
|
368
|
+
|
369
|
+
<tr class="">
|
370
|
+
|
371
|
+
<td>
|
372
|
+
<div class="hidebox" style="width:200px;">
|
373
|
+
<span title="conversation.maxTime">
|
374
|
+
conversation.maxTime
|
375
|
+
</span>
|
376
|
+
</div>
|
377
|
+
</td>
|
378
|
+
<td>
|
379
|
+
<div class="hidebox" style="width:300px;">
|
380
|
+
|
381
|
+
<span title="60">60</span>
|
382
|
+
|
383
|
+
</div>
|
384
|
+
</td>
|
385
|
+
<td align="center"><a href="#" onclick="doedit('conversation.maxTime');"
|
386
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
387
|
+
alt="Click to edit this property" border="0"></a
|
388
|
+
>
|
389
|
+
</td>
|
390
|
+
<td align="center"><a href="#" onclick="return dodelete('conversation.maxTime');"
|
391
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
392
|
+
alt="Click to delete this property" border="0"></a
|
393
|
+
>
|
394
|
+
</td>
|
395
|
+
</tr>
|
396
|
+
|
397
|
+
|
398
|
+
<tr class="">
|
399
|
+
|
400
|
+
<td>
|
401
|
+
<div class="hidebox" style="width:200px;">
|
402
|
+
<span title="conversation.messageArchiving">
|
403
|
+
conversation.messageArchiving
|
404
|
+
</span>
|
405
|
+
</div>
|
406
|
+
</td>
|
407
|
+
<td>
|
408
|
+
<div class="hidebox" style="width:300px;">
|
409
|
+
|
410
|
+
<span title="true">true</span>
|
411
|
+
|
412
|
+
</div>
|
413
|
+
</td>
|
414
|
+
<td align="center"><a href="#" onclick="doedit('conversation.messageArchiving');"
|
415
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
416
|
+
alt="Click to edit this property" border="0"></a
|
417
|
+
>
|
418
|
+
</td>
|
419
|
+
<td align="center"><a href="#" onclick="return dodelete('conversation.messageArchiving');"
|
420
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
421
|
+
alt="Click to delete this property" border="0"></a
|
422
|
+
>
|
423
|
+
</td>
|
424
|
+
</tr>
|
425
|
+
|
426
|
+
|
427
|
+
<tr class="">
|
428
|
+
|
429
|
+
<td>
|
430
|
+
<div class="hidebox" style="width:200px;">
|
431
|
+
<span title="conversation.metadataArchiving">
|
432
|
+
conversation.metadataArchiving
|
433
|
+
</span>
|
434
|
+
</div>
|
435
|
+
</td>
|
436
|
+
<td>
|
437
|
+
<div class="hidebox" style="width:300px;">
|
438
|
+
|
439
|
+
<span title="true">true</span>
|
440
|
+
|
441
|
+
</div>
|
442
|
+
</td>
|
443
|
+
<td align="center"><a href="#" onclick="doedit('conversation.metadataArchiving');"
|
444
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
445
|
+
alt="Click to edit this property" border="0"></a
|
446
|
+
>
|
447
|
+
</td>
|
448
|
+
<td align="center"><a href="#" onclick="return dodelete('conversation.metadataArchiving');"
|
449
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
450
|
+
alt="Click to delete this property" border="0"></a
|
451
|
+
>
|
452
|
+
</td>
|
453
|
+
</tr>
|
454
|
+
|
455
|
+
|
456
|
+
<tr class="">
|
457
|
+
|
458
|
+
<td>
|
459
|
+
<div class="hidebox" style="width:200px;">
|
460
|
+
<span title="conversation.roomArchiving">
|
461
|
+
conversation.roomArchiving
|
462
|
+
</span>
|
463
|
+
</div>
|
464
|
+
</td>
|
465
|
+
<td>
|
466
|
+
<div class="hidebox" style="width:300px;">
|
467
|
+
|
468
|
+
<span title="false">false</span>
|
469
|
+
|
470
|
+
</div>
|
471
|
+
</td>
|
472
|
+
<td align="center"><a href="#" onclick="doedit('conversation.roomArchiving');"
|
473
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
474
|
+
alt="Click to edit this property" border="0"></a
|
475
|
+
>
|
476
|
+
</td>
|
477
|
+
<td align="center"><a href="#" onclick="return dodelete('conversation.roomArchiving');"
|
478
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
479
|
+
alt="Click to delete this property" border="0"></a
|
480
|
+
>
|
481
|
+
</td>
|
482
|
+
</tr>
|
483
|
+
|
484
|
+
|
485
|
+
<tr class="hilite">
|
486
|
+
|
487
|
+
<td>
|
488
|
+
<div class="hidebox" style="width:200px;">
|
489
|
+
<span title="jdbcAuthProvider.passwordSQL">
|
490
|
+
jdbcAuthProvider.passwordSQL
|
491
|
+
</span>
|
492
|
+
</div>
|
493
|
+
</td>
|
494
|
+
<td>
|
495
|
+
<div class="hidebox" style="width:300px;">
|
496
|
+
|
497
|
+
<span style="color:#999;"><i>hidden</i></span>
|
498
|
+
|
499
|
+
</div>
|
500
|
+
</td>
|
501
|
+
<td align="center"><a href="#" onclick="doedit('jdbcAuthProvider.passwordSQL');"
|
502
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
503
|
+
alt="Click to edit this property" border="0"></a
|
504
|
+
>
|
505
|
+
</td>
|
506
|
+
<td align="center"><a href="#" onclick="return dodelete('jdbcAuthProvider.passwordSQL');"
|
507
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
508
|
+
alt="Click to delete this property" border="0"></a
|
509
|
+
>
|
510
|
+
</td>
|
511
|
+
</tr>
|
512
|
+
|
513
|
+
|
514
|
+
<tr class="">
|
515
|
+
|
516
|
+
<td>
|
517
|
+
<div class="hidebox" style="width:200px;">
|
518
|
+
<span title="xmpp.socket.ssl.active">
|
519
|
+
xmpp.socket.ssl.active
|
520
|
+
</span>
|
521
|
+
</div>
|
522
|
+
</td>
|
523
|
+
<td>
|
524
|
+
<div class="hidebox" style="width:300px;">
|
525
|
+
|
526
|
+
<span title="true">true</span>
|
527
|
+
|
528
|
+
</div>
|
529
|
+
</td>
|
530
|
+
<td align="center"><a href="#" onclick="doedit('xmpp.socket.ssl.active');"
|
531
|
+
><img src="images/edit-16x16.gif" width="16" height="16"
|
532
|
+
alt="Click to edit this property" border="0"></a
|
533
|
+
>
|
534
|
+
</td>
|
535
|
+
<td align="center"><a href="#" onclick="return dodelete('xmpp.socket.ssl.active');"
|
536
|
+
><img src="images/delete-16x16.gif" width="16" height="16"
|
537
|
+
alt="Click to delete this property" border="0"></a
|
538
|
+
>
|
539
|
+
</td>
|
540
|
+
</tr>
|
541
|
+
|
542
|
+
|
543
|
+
|
544
|
+
</tbody>
|
545
|
+
</table>
|
546
|
+
</div>
|
547
|
+
|
548
|
+
</form>
|
549
|
+
|
550
|
+
<br><br>
|
551
|
+
|
552
|
+
<a name="edit"></a>
|
553
|
+
<form action="server-properties.jsp" method="post" name="editform">
|
554
|
+
|
555
|
+
<div class="jive-table">
|
556
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
557
|
+
<thead>
|
558
|
+
<tr>
|
559
|
+
<th colspan="2">
|
560
|
+
|
561
|
+
Edit property
|
562
|
+
|
563
|
+
</th>
|
564
|
+
</tr>
|
565
|
+
</thead>
|
566
|
+
<tbody>
|
567
|
+
<tr valign="top">
|
568
|
+
<td>
|
569
|
+
Property Name:
|
570
|
+
</td>
|
571
|
+
<td>
|
572
|
+
|
573
|
+
|
574
|
+
<input type="hidden" name="propName" value="jdbcAuthProvider.passwordSQL">
|
575
|
+
jdbcAuthProvider.passwordSQL
|
576
|
+
|
577
|
+
|
578
|
+
</td>
|
579
|
+
</tr>
|
580
|
+
<tr valign="top">
|
581
|
+
<td>
|
582
|
+
Property Value:
|
583
|
+
</td>
|
584
|
+
<td>
|
585
|
+
<textarea cols="45" rows="5" name="propValue" wrap="virtual">SELECT psw as password FROM users WHERE jid = ?</textarea>
|
586
|
+
|
587
|
+
|
588
|
+
</td>
|
589
|
+
</tr>
|
590
|
+
</tbody>
|
591
|
+
<tfoot>
|
592
|
+
<tr>
|
593
|
+
<td colspan="2">
|
594
|
+
<input type="submit" name="save" value="Save Property">
|
595
|
+
<input type="submit" name="cancel" value="Cancel">
|
596
|
+
</td>
|
597
|
+
</tr>
|
598
|
+
</tfoot>
|
599
|
+
</table>
|
600
|
+
</div>
|
601
|
+
|
602
|
+
</form>
|
603
|
+
|
604
|
+
<br><br><br><br><br><br>
|
605
|
+
<br><br><br><br><br><br>
|
606
|
+
<br><br><br><br><br><br>
|
607
|
+
<br><br><br><br><br><br>
|
608
|
+
</div>
|
609
|
+
</td>
|
610
|
+
</tr>
|
611
|
+
</tbody>
|
612
|
+
</table>
|
613
|
+
</div>
|
614
|
+
|
615
|
+
</div>
|
616
|
+
<!-- END main -->
|
617
|
+
|
618
|
+
<!-- BEGIN footer -->
|
619
|
+
<div id="jive-footer">
|
620
|
+
<div class="jive-footer-nav">
|
621
|
+
|
622
|
+
<a href="/index.jsp" title="Click to manage server settings" onmouseover="self.status='Click to manage server settings';return true;" onmouseout="self.status='';return true;">Server</a>
|
623
|
+
|
|
624
|
+
<a href="/user-summary.jsp" title="Click to manage users and groups" onmouseover="self.status='Click to manage users and groups';return true;" onmouseout="self.status='';return true;">Users/Groups</a>
|
625
|
+
|
|
626
|
+
<a href="/session-summary.jsp" title="Click to manage connected sessions" onmouseover="self.status='Click to manage connected sessions';return true;" onmouseout="self.status='';return true;">Sessions</a>
|
627
|
+
|
|
628
|
+
<a href="/muc-room-summary.jsp" title="Click to manage group chat settings" onmouseover="self.status='Click to manage group chat settings';return true;" onmouseout="self.status='';return true;">Group Chat</a>
|
629
|
+
|
|
630
|
+
<a href="/plugin-admin.jsp" title="Click to manage all plugins" onmouseover="self.status='Click to manage all plugins';return true;" onmouseout="self.status='';return true;">Plugins</a>
|
631
|
+
|
632
|
+
</div>
|
633
|
+
<div class="jive-footer-copyright">
|
634
|
+
Built by <a href="http://www.jivesoftware.com">Jive Software</a> and the <a href="http://www.igniterealtime.org">IgniteRealtime.org</a> community
|
635
|
+
</div>
|
636
|
+
</div>
|
637
|
+
<!-- END footer -->
|
638
|
+
|
639
|
+
</body>
|
640
|
+
</html>
|