Skip to content

Commit

Permalink
[#1213] Fix broken links in the user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Maurer committed Apr 8, 2013
1 parent bb1148e commit 03d31bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/architecture.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
<para>
An IO operation is handled by a list of &ChannelHandler;s in a
&ChannelPipeline;. The pipeline implements an advanced form of the
<link xlink:href="http://java.sun.com/blueprints/corej2eepatterns/Patterns/InterceptingFilter.html">Intercepting Filter</link>
<link xlink:href="http://www.oracle.com/technetwork/java/interceptingfilter-142169.html">Intercepting Filter</link>
pattern to give a user full control over how an event is handled and how
the handlers in the pipeline interact with each other. For example,
you can define what to do when data is read from a socket:
Expand Down Expand Up @@ -346,7 +346,7 @@
<para>
Netty implementes RFC 6455 and a number of older versions of the specification. Please refer to the
<link xlink:href="&API;handler/codec/http/websocketx/package-summary#package_description">
org.jboss.netty.handler.codec.http.websocketx</link> package and associated
io.netty.handler.codec.http.websocketx</link> package and associated
<link xlink:href="&XRef;example/http/websocketx/server/package-summary.html">examples</link>.
</para>
</section>
Expand All @@ -360,10 +360,10 @@
&ProtobufDecoder;, you can turn the message classes generated by the
Google Protocol Buffers Compiler (protoc) into Netty codec. Please take
a look into the
<link xlink:href="&XRef;example/localtime/package-summary.html">'LocalTime' example</link>
<link xlink:href="&XRef;example/worldclock/package-summary.html">'Worldclock' example</link>
that shows how easily you can create a high-performing binary protocol
client and server from the
<link xlink:href="http://anonsvn.jboss.org/repos/netty/trunk/src/main/java/org/jboss/netty/example/localtime/LocalTimeProtocol.proto">sample protocol definition</link>.
<link xlink:href="https://github.com/netty/netty/blob/master/example/src/main/java/io/netty/example/worldclock/WorldClockProtocol.proto">sample protocol definition</link>.
</para>
</section>
</section>
Expand Down
4 changes: 2 additions & 2 deletions src/dtds/entities.dtd
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
<!-- Frequently used URLs -->

<!ENTITY Home "http://netty.io/">
<!ENTITY Downloads "&Home;Main/Downloads">
<!ENTITY Community "&Home;Main/Get+Involved">
<!ENTITY Downloads "&Home;downloads">
<!ENTITY Community "&Home;/community.html">
<!ENTITY DocHome "http://static.netty.io/4.0/">
<!ENTITY API "&DocHome;api/io/netty/">
<!ENTITY XRef "&DocHome;xref/io/netty/">
Expand Down

0 comments on commit 03d31bd

Please sign in to comment.