You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by bu...@apache.org on 2014/07/01 11:07:57 UTC

svn commit: r914567 - in /websites/staging/thrift/trunk/content: ./ lib/ tutorial/

Author: buildbot
Date: Tue Jul  1 09:07:56 2014
New Revision: 914567

Log:
Staging update by buildbot for thrift

Modified:
    websites/staging/thrift/trunk/content/   (props changed)
    websites/staging/thrift/trunk/content/lib/cpp.html
    websites/staging/thrift/trunk/content/tutorial/as3.html
    websites/staging/thrift/trunk/content/tutorial/cpp.html
    websites/staging/thrift/trunk/content/tutorial/csharp.html
    websites/staging/thrift/trunk/content/tutorial/d.html
    websites/staging/thrift/trunk/content/tutorial/delphi.html
    websites/staging/thrift/trunk/content/tutorial/go.html
    websites/staging/thrift/trunk/content/tutorial/graphviz.html
    websites/staging/thrift/trunk/content/tutorial/hs.html
    websites/staging/thrift/trunk/content/tutorial/java.html
    websites/staging/thrift/trunk/content/tutorial/js.html
    websites/staging/thrift/trunk/content/tutorial/nodejs.html
    websites/staging/thrift/trunk/content/tutorial/ocaml.html
    websites/staging/thrift/trunk/content/tutorial/perl.html
    websites/staging/thrift/trunk/content/tutorial/php.html
    websites/staging/thrift/trunk/content/tutorial/py.html
    websites/staging/thrift/trunk/content/tutorial/rb.html

Propchange: websites/staging/thrift/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Jul  1 09:07:56 2014
@@ -1 +1 @@
-1602586
+1607025

Modified: websites/staging/thrift/trunk/content/lib/cpp.html
==============================================================================
--- websites/staging/thrift/trunk/content/lib/cpp.html (original)
+++ websites/staging/thrift/trunk/content/lib/cpp.html Tue Jul  1 09:07:56 2014
@@ -110,10 +110,12 @@ http://www.boost.org/libs/smart_ptr/smar
 <p>libevent (for libthriftnb only)
 http://monkey.org/~provos/libevent/</p>
 <h1 id="using-thrift-with-c-on-windows">Using Thrift with C++ on Windows</h1>
-<p>You need to define an enviroment variable called THIRD_PARTY. The project
-assumes that you have extracted the dependancies into their default structure
-into the path defined by THIRD_PARTY.</p>
-<p>e.g. $(THIRD_PARTY)/boost/boost_1_47_0/</p>
+<p>You need to define an environment variables for 3rd party components separately:</p>
+<p>BOOST_ROOT : For boost, e.g. D:\boost_1_55_0
+OPENSSL_ROOT_DIR : For OpenSSL, e.g. D:\OpenSSL-Win32</p>
+<p>only required by libthriftnb:</p>
+<p>LIBEVENT_ROOT_DIR : For Libevent e.g. D:\libevent-2.0.21-stable</p>
+<p>See /3rdparty.user for more details.</p>
 <p>Thrift is divided into two libraries.</p>
 <ul>
 <li>
@@ -127,7 +129,7 @@ into the path defined by THIRD_PARTY.</p
 </ul>
 <h2 id="linking-against-thrift_1">Linking Against Thrift</h2>
 <p>You need to link your project that uses thrift against all the thrift
-dependancies; in the case of libthrift, boost and for
+dependencies; in the case of libthrift, boost and for
 libthriftnb, libevent.</p>
 <p>In the project properties you must also set HAVE_CONFIG_H as force include
 the config header: "windows/confg.h"</p>

Modified: websites/staging/thrift/trunk/content/tutorial/as3.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/as3.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/as3.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">as3</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/cpp.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/cpp.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/cpp.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">cpp</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/csharp.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/csharp.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/csharp.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">csharp</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/d.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/d.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/d.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">d</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/delphi.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/delphi.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/delphi.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">delphi</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/go.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/go.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/go.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">go</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/graphviz.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/graphviz.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/graphviz.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">cpp</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/hs.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/hs.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/hs.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">hs</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/java.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/java.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/java.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">java</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/js.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/js.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/js.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">js</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/nodejs.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/nodejs.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/nodejs.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">js</span><span class="p">:</span><span class="n">node</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/ocaml.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/ocaml.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/ocaml.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">ocaml</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/perl.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/perl.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/perl.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">perl</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/php.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/php.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/php.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">php</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/py.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/py.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/py.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">py</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>

Modified: websites/staging/thrift/trunk/content/tutorial/rb.html
==============================================================================
--- websites/staging/thrift/trunk/content/tutorial/rb.html (original)
+++ websites/staging/thrift/trunk/content/tutorial/rb.html Tue Jul  1 09:07:56 2014
@@ -80,14 +80,14 @@
 <ol>
 <li>Built and installed the Apache Thrift Compiler and Libraries, see <a href="/docs/BuildingFromSource">Building from source</a> for more details.</li>
 <li>
-<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a></p>
+<p>Generated the <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/tutorial.thrift">tutorial.thrift</a> and <a href="https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob_plain;f=tutorial/shared.thrift">shared.thrift</a> files as <a href="/tutorial/">discussed here</a>.</p>
 <div class="codehilite"><pre><span class="n">thrift</span> <span class="o">-</span><span class="n">r</span> <span class="o">--</span><span class="n">gen</span> <span class="n">rb</span> <span class="n">tutorial</span><span class="p">.</span><span class="n">thrift</span>
 </pre></div>
 
 
 </li>
 <li>
-<p>Followed all prerequesets listed</p>
+<p>Followed all prerequisites listed below.</p>
 </li>
 </ol>
 <h3 id="prerequisites">Prerequisites</h3>