Repository: kafka
Updated Branches:
  refs/heads/0.9.0 fcb86d58f -> 38d4d597b


MINOR: Add header and footer to protocol docs

Because protocol.html is going to be in its own page it needs the header and 
footer included.

Author: Grant Henke <[email protected]>

Reviewers: Gwen Shapira

Closes #1043 from granthenke/protocol-docs-style

(cherry picked from commit 1a451b4812ae2502bb6bc105e77eb00175a76ec5)
Signed-off-by: Gwen Shapira <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/38d4d597
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/38d4d597
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/38d4d597

Branch: refs/heads/0.9.0
Commit: 38d4d597bafad5d5c9218cf246cbbbec5824299d
Parents: fcb86d5
Author: Grant Henke <[email protected]>
Authored: Thu Mar 10 10:44:58 2016 -0800
Committer: Gwen Shapira <[email protected]>
Committed: Thu Mar 10 10:45:16 2016 -0800

----------------------------------------------------------------------
 docs/protocol.html | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/38d4d597/docs/protocol.html
----------------------------------------------------------------------
diff --git a/docs/protocol.html b/docs/protocol.html
index 98923aa..cb359f1 100644
--- a/docs/protocol.html
+++ b/docs/protocol.html
@@ -1,3 +1,22 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<!--#include virtual="../includes/header.html" -->
+
 <h3><a id="protocol" href="#protocol">Kafka Wire Protocol</a></h3>
 
 <p>This document covers the wire protocol implemented in Kafka. It is meant to 
give a readable guide to the protocol that covers the available requests, their 
binary format, and the proper way to make use of them to implement a client. 
This document assumes you understand the basic design and terminology described 
<a href="https://kafka.apache.org/documentation.html#design";>here</a></p>
@@ -160,4 +179,4 @@ Size => int32
 
 <p>A final question is why we don't use a system like Protocol Buffers or 
Thrift to define our request messages. These packages excel at helping you to 
managing lots and lots of serialized messages. However we have only a few 
messages. Support across languages is somewhat spotty (depending on the 
package). Finally the mapping between binary log format and wire protocol is 
something we manage somewhat carefully and this would not be possible with 
these systems. Finally we prefer the style of versioning APIs explicitly and 
checking this to inferring new values as nulls as it allows more nuanced 
control of compatibility.</p>
 
-
+<!--#include virtual="../includes/footer.html" -->

Reply via email to