Norman Maurer
3359a565c2
Make LinkedTransferQueue also work in java5 envs.
2011-12-11 11:53:00 +01:00
Norman Maurer
36e8c4e8f2
Make it work with java5 also
2011-12-11 11:30:11 +01:00
Norman Maurer
43f72b42f7
Rename test class to be more inline with the rest of the project
2011-12-11 11:28:31 +01:00
Norman Maurer
9e7c87b683
Remove @override annotations which are only valid with java6
2011-12-11 11:23:40 +01:00
Norman Maurer
eb4773d209
Merge pull request #114 from chavdar/113-fix
...
113 fix
2011-12-11 00:15:35 -08:00
Chavdar Botev
f93e356003
fix for issue 113
2011-12-10 14:58:27 -08:00
Trustin Lee
9d96f4a84f
Attach Javadoc (it really works this time)
2011-12-09 19:04:52 +09:00
Trustin Lee
974002a498
Attach Javadoc
2011-12-09 18:39:05 +09:00
Trustin Lee
040bc7c683
We have to attach javadoc to sync with central
2011-12-09 18:23:48 +09:00
Trustin Lee
c165ff0f47
Add maven-gpg-plugin to sync with the central repo
2011-12-09 15:47:01 +09:00
Trustin Lee
87f135115c
Add developers section to pom.xml
2011-12-09 15:22:15 +09:00
Trustin Lee
0ee7123aa6
No need to specify a default value
2011-12-09 15:11:42 +09:00
Trustin Lee
6e49e107d4
Better handshaker naming / Remove deprecated example / Hide UTF8 classes from users
2011-12-09 14:56:24 +09:00
Trustin Lee
8a2bed170c
New websocket package worths a minor version bump
2011-12-09 14:49:53 +09:00
Trustin Lee
a1cecdf931
Add organization info
2011-12-09 14:49:18 +09:00
Trustin Lee
78dae9307b
Do not expose @author and @version
2011-12-09 14:43:39 +09:00
Trustin Lee
2b8b11c60a
Deprecate old websocket package / Update websocket version list
2011-12-09 14:37:50 +09:00
Trustin Lee
f91ebb14b2
More license updates
2011-12-09 14:31:04 +09:00
Vibul Imtarnasan
d597ad74de
Merge pull request #109 from veebs/WebSocketFor3.2
...
WebSocket for 3.2
2011-12-08 21:24:54 -08:00
Trustin Lee
c126ceffdd
Build tarball only
2011-12-09 14:20:32 +09:00
Trustin Lee
2231c31f9f
Fix license headers / Remove JBoss.org style
2011-12-09 14:16:33 +09:00
vibul
962438c8b0
Update notices for WebSocket support.
2011-12-09 16:15:41 +11:00
Trustin Lee
16160a0e69
Remove outdated UML / Fix image URL
...
* We are going to focus more on the netty-book project instead of
outdated UML diagrams
2011-12-09 13:54:15 +09:00
Trustin Lee
683d678c17
Remove @author and @version / Remove COPYRIGHT.txt
...
* The new copyright header replaces @author
* COPYRIGHT.txt is irrelevant to us now.
2011-12-09 13:44:53 +09:00
Trustin Lee
f9b879e73f
http://jboss.org/netty/ to http://netty.io/
2011-12-09 12:47:26 +09:00
Trustin Lee
745ae13f62
Update compiler options
2011-12-09 12:27:00 +09:00
Trustin Lee
555f988402
Update enforcer rules
2011-12-09 12:23:54 +09:00
Trustin Lee
86fb4d0e80
Fix build problems since updating groupId
...
* Update URL
* Fix package names in Javadoc and bundle plugin
2011-12-09 12:08:22 +09:00
Trustin Lee
e951487ed1
Change groupId to io.netty / inherit Sonatype OSS
2011-12-09 11:51:34 +09:00
Trustin Lee
123cc45489
Make build independent from JBoss.org M2 repository
2011-12-09 11:38:59 +09:00
norman
081395410d
Only create UnsafeDynamicChannelBuffer if really needed. See #108
2011-12-08 14:36:46 +01:00
norman
3b368125b0
Fields in ReplayingDecoder does not need atomic nature. See #108
2011-12-08 14:29:12 +01:00
norman
0b77d89004
Always cleanup() in ReplayingDecoder if we have received any messages at
...
all. See #105
2011-12-07 20:41:03 +01:00
norman
4b9376d3c8
Missed to commit these files before. Part of #102
2011-12-07 19:08:49 +01:00
norman
b2be5f5058
Backport latest LinkedTransferQueue to 3.2.x. This also includes changes
...
to allow the usage in java5 enviroments. Be aware that the new
LinkedTransferQueue will only be used when java6+ was found. See #102
2011-12-07 17:14:11 +01:00
Vibul Imtarnasan
1a6dae4c66
Merge pull request #99 from veebs/WebSocketFor3.2
...
Back portal WebSocketX package from master into 3.2
2011-12-06 15:06:15 -08:00
Trustin Lee
5dce05e4bd
Remove DocBook from build
2011-12-03 20:02:50 +09:00
Trustin Lee
97646745c1
Merge branch '3.2' of github.com:netty/netty into 3.2
2011-12-03 19:56:13 +09:00
Trustin Lee
a4f2629563
Separate the user guide out of the project.
2011-12-03 19:54:11 +09:00
norman
936e5ae1a8
Make sure the cumulation Buffer is only created if really needed. See
...
#88
2011-12-02 07:22:14 +01:00
vibul
a155b13957
Added fix for m2eclipse error "Plugin execution not covered by lifecycle
...
configuration" in pom.xml. See issue #87 .
2011-12-02 16:30:43 +11:00
vibul
67650530e6
Port websocket V10 and V17 support from master back into 3.2.
2011-12-02 16:29:42 +11:00
norman
77cbd3de34
Replace synchronization with an lock free approach in OMATPE. See #80
2011-12-01 12:13:18 +01:00
norman
49f2616972
Remove the usage of AtomicLong as this only confuse users. The Handler
...
is not suited for re-use anyway. See #93
2011-12-01 09:41:57 +01:00
norman
9ac5b8be83
Make it easier to issue the handshake when SslHandler is used in
...
a client. See #84
2011-11-29 11:45:18 +01:00
Trustin Lee
373e05eb6d
[maven-release-plugin] prepare for next development iteration
2011-11-24 12:24:51 +09:00
Trustin Lee
0b5abecc00
[maven-release-plugin] prepare release netty-3.2.7.Final
netty-3.2.7.Final
2011-11-24 12:24:38 +09:00
Trustin Lee
4334161526
Fix build errors
2011-11-24 12:16:31 +09:00
Trustin Lee
4be4e583c7
Upgrade depepdencies to the latest versions
...
* Regenerate LocalTimeProtocol.java with the latest protoc
* Add an instruction on how to generate LocalTimeProtocol.java
* Not upgrading maven-bundle-plugin, which has a regression in 2.3.5:
* https://issues.apache.org/jira/browse/FELIX-3058
2011-11-24 11:05:33 +09:00
Trustin Lee
84fd044eb4
Fix weird repo mess
2011-11-24 10:20:05 +09:00