open(); $tutorial = array(); $tutorial []= array('t' => 'Download Thrift', 'b' => 'To get started, download a copy of Thrift.'); $tutorial []= array('t' => 'Build and Install', 'b' => 'Next, build and install the Thrift libraries and compiler.'); $tutorial []= array('t' => 'Writing a Thrift file', 'b' => 'Let\'s define and create a simple service.'); $tutorial []= array('t' => 'Using the Thrift Compiler', 'b' => 'Invoke the Thrift compiler on the test file.'); $tutorial []= array('t' => 'Running a Thrift Server', 'b' => 'Fill in the server stubs and build the server.'); $tutorial []= array('t' => 'Running a Thrift Client', 'b' => 'Using the client libraries.'); echo '

Thrift Tutorial

'; echo '
This tutorial is known to be woefully incomplete, and is a work in progress. This skeleton is illustrative of what is being worked on and will soon be available.
'; echo '

Contents

    '; foreach ($tutorial as $i => $t) { echo '
  1. '.alink($t['t'], '#t'.$i).'
  2. '; } echo '
'; echo '
    '; foreach ($tutorial as $i => $t) { echo '
  1. '. ''. '

    '.$t['t'].'

    '. $t['b']. '
  2. '; } echo '
'; echo $page->close();