Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
fe08686b
Commit
fe08686b
authored
Feb 16, 2017
by
daryl herzmann
Committed by
GitHub
Feb 16, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #749 from surevine/OF-1288
OF-1288 Add missing attributes
parents
81a5ebdd
2aff22b5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
2 deletions
+11
-2
changelog.html
src/plugins/monitoring/changelog.html
+5
-0
plugin.xml
src/plugins/monitoring/plugin.xml
+2
-2
AbstractXepSupport.java
...eucon/openfire/plugin/archive/xep/AbstractXepSupport.java
+2
-0
Result.java
...va/com/reucon/openfire/plugin/archive/xep0313/Result.java
+2
-0
No files found.
src/plugins/monitoring/changelog.html
View file @
fe08686b
...
...
@@ -43,6 +43,11 @@
<h1>
Monitoring Plugin Changelog
</h1>
<p><b>
1.5.6
</b>
-- February 16, 2016
</p>
<ul>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1288'
>
OF-1288
</a>
] - Add missing queryid and id attributes
</li>
</ul>
<p><b>
1.5.5
</b>
-- December 19, 2016
</p>
<ul>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1246'
>
OF-1246
</a>
] - Support MAM (XEP-0313) for MUC (XEP-0045)
</li>
...
...
src/plugins/monitoring/plugin.xml
View file @
fe08686b
...
...
@@ -5,8 +5,8 @@
<name>
Monitoring Service
</name>
<description>
Monitors conversations and statistics of the server.
</description>
<author>
IgniteRealtime // Jive Software
</author>
<version>
1.5.
5
</version>
<date>
4/27/2016
</date>
<version>
1.5.
6
</version>
<date>
2/16/2017
</date>
<minServerVersion>
4.0.99
</minServerVersion>
<!-- Allows the beta 4.1.0 -->
<databaseKey>
monitoring
</databaseKey>
<databaseVersion>
4
</databaseVersion>
...
...
src/plugins/monitoring/src/java/com/reucon/openfire/plugin/archive/xep/AbstractXepSupport.java
View file @
fe08686b
...
...
@@ -78,6 +78,7 @@ public abstract class AbstractXepSupport {
MultiUserChatManager
manager
=
server
.
getMultiUserChatManager
();
for
(
MultiUserChatService
mucService
:
manager
.
getMultiUserChatServices
())
{
mucService
.
addIQHandler
(
iqHandler
);
mucService
.
addExtraFeature
(
namespace
);
}
}
}
...
...
@@ -110,6 +111,7 @@ public abstract class AbstractXepSupport {
MultiUserChatManager
manager
=
server
.
getMultiUserChatManager
();
for
(
MultiUserChatService
mucService
:
manager
.
getMultiUserChatServices
())
{
mucService
.
removeIQHandler
(
iqHandler
);
mucService
.
removeExtraFeature
(
namespace
);
}
}
}
...
...
src/plugins/monitoring/src/java/com/reucon/openfire/plugin/archive/xep0313/Result.java
View file @
fe08686b
...
...
@@ -11,6 +11,8 @@ import java.util.Date;
public
final
class
Result
extends
PacketExtension
{
public
Result
(
Forwarded
forwarded
,
String
xmlns
,
String
queryId
,
String
id
)
{
super
(
"result"
,
xmlns
);
element
.
addAttribute
(
"queryid"
,
queryId
);
element
.
addAttribute
(
"id"
,
id
);
element
.
add
(
forwarded
.
getElement
());
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment