- 19 Nov, 2015 5 commits
-
-
Tom Evans authored
OF-974: Migrate cache content
-
Tom Evans authored
Add Legacy Jive build code for eventual removal
-
Tom Evans authored
When switch to/from clustered deployment, ensure that critical cached items such as components and remote servers are not inadvertently dropped from the cache.
-
Guus der Kinderen authored
By replacing Jetty 6.x era libraries with 9.x-based variants, JSP support will be brought back up-to-date. Additionally, Openfire will no longer have a mix of dependencies from various versions of Jetty. This commit contains a number of changes that go hand-in-hand: - Replaces JAR files - Applies uniformity to the buildscript where JSPC is executed - Replaces JSTL 1.0 taglibs with later versions - Adds a simple logger to the build process (to stop it from complaining)
-
Guus der Kinderen authored
-
- 17 Nov, 2015 20 commits
-
-
Tom Evans authored
Various improvements in Version class
-
Tom Evans authored
byte[].equals() should probably be Arrays.equals()
-
Tom Evans authored
Adding PropertyListener support to AuditManagerImpl
-
Tom Evans authored
StringUtils: Simplify verbose/duplicate and obsolete code constructs
-
Tom Evans authored
Replace deprecated JiveConstants.XMPP_DELAY_DATETIME_FORMAT usage
-
Tom Evans authored
OF-868 update roster cache on userModified
-
daryl herzmann authored
Tests should retrieve resources from the classpath rather than files.
-
daryl herzmann authored
Delete ChannelInputStream.java.
-
daryl herzmann authored
Cleanup connection logging, etc.
-
daryl herzmann authored
Update protocol support documentation.
-
daryl herzmann authored
Modernize XMLProperties with Java NIO.2 File API
-
daryl herzmann authored
Delete URLUTF8Encoder.java in favor of java.net.URLEncoder.
-
daryl herzmann authored
Revert PR#300 (restore PluginClassLoader)
-
Tom Evans authored
per discussion with core team
-
akrherz authored
-
Tom Evans authored
Also remove dependency for sun.security.provider.* package
-
Christian Schudt authored
This is highlighted as "probably a bug" in my IDE. E.g. `new byte[]{1}.equals(new byte[]{1})` is always false. But `Arrays.equals(new byte[]{1}, new byte[]{1});` is true.
-
Christian Schudt authored
-
David Greene authored
-
Christian Schudt authored
- The 4 replace methods were nearly identical. - Deprecate String utility, which has a simple one-liner equivalent in the JDK - Use DatatypeConverter for byte[] to hex. It's less code and even 2-3 times faster than the previous method.
-
- 16 Nov, 2015 3 commits
-
-
daryl herzmann authored
OF-881: Simplify connection close semantics
-
Tom Evans authored
- Use AtomicReference instead of synchronized block - Extend java.io.Closeable; document contract - Consolidate close/state transition logic
-
Christian Schudt authored
URLUTF8Encoder is obsolete due to `java.net.URLEncoder.encode(str, "UTF-8")`
-
- 15 Nov, 2015 1 commit
-
-
Christian Schudt authored
This package-private class is a) unused and b) redundant due to `java.nio.channels.Channels.newInputStream(ReadableByteChannel)`
-
- 14 Nov, 2015 2 commits
-
-
daryl herzmann authored
ofmeet plugin version 0.2.3
-
Dele Olajide authored
Simplified build, removed classes folder in WEB-INF Changed default value for voip gateway to false Removed some redundant and duplicate jar file in jitsivideobridge lib Removed tinder.jar and whack.jar which caused ComponentManagerFactory.getComponentManager() to fail with OF 3.11
-
- 13 Nov, 2015 6 commits
-
-
Tom Evans authored
Avoid recursion and synchronization issues
-
akrherz authored
-
daryl herzmann authored
Update REST API Plugin to 1.1.7
-
Roman S authored
Added: Provide the possibility to use a Custom Auth Filter Fixed: Preflight request will be not blocked by Authentication Added: Group names in ChatRoom Entity
-
Christian Schudt authored
with XMPPDateTimeFormat
-
Christian Schudt authored
- Make it final and immutable. - Use pattern-based parsing, which allows to also parse the ReleaseStatus and the statusVersion. - Implement toString() method. - Implement equals() and hashCode(), which is a strong recommendation when implementing Comparable: From the JavaDoc: "It is strongly recommended that (x.compareTo(y)==0) == (x.equals(y))", which was not the case. - Allow CharSequence - Simplify getVersionString() method (less duplicate code). - Improve compareTo() method by properly comparing more than 2 digits and also comparing ReleaseStatus and statusVersion
-
- 12 Nov, 2015 1 commit
-
-
Christian Schudt authored
- Update old XMPP RFCs to the new one (e.g. 6120) - Remove the obsolete reference to XEP-0073 and replace it with XEP-0302 - Get rid of the basic/intermediate terms as they are no longer in use in XEP-0302. Use Core and Advanced instead. - Add XEP-0160, XEP-0198, XEP-0202, XEP-0280 - Correct "Entity Time" to "Legacy Entity Time" - Correct "Jabber Date and Time Profiles" to "XMPP Date and Time Profiles"
-
- 11 Nov, 2015 2 commits
-
-
Dele Olajide authored
Revert " Fix PluginClassloader not implement getResources Method"
-
Dele Olajide authored
-