You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ro...@apache.org on 2010/11/09 21:27:11 UTC

svn commit: r1033199 - in /thrift/site: dynathrift/ dynathrift/static/ publish/ publish/about/ publish/developers/ publish/download/ publish/mailing/ publish/static/ publish/tutorial/

Author: roger
Date: Tue Nov  9 20:27:11 2010
New Revision: 1033199

URL: http://svn.apache.org/viewvc?rev=1033199&view=rev
Log:
THRIFT-995 web site broken => convert URL's to relative ones

Modified:
    thrift/site/dynathrift/index.php
    thrift/site/dynathrift/static/thrift.css
    thrift/site/dynathrift/thrift.lib.php
    thrift/site/publish/about/index.html
    thrift/site/publish/developers/index.html
    thrift/site/publish/download/index.html
    thrift/site/publish/index.html
    thrift/site/publish/mailing/index.html
    thrift/site/publish/static/thrift.css
    thrift/site/publish/tutorial/index.html

Modified: thrift/site/dynathrift/index.php
URL: http://svn.apache.org/viewvc/thrift/site/dynathrift/index.php?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/dynathrift/index.php (original)
+++ thrift/site/dynathrift/index.php Tue Nov  9 20:27:11 2010
@@ -34,9 +34,9 @@ echo $page->welcome(array(
 
 <h3>Getting Started</h3>
 <ul>
-<li>'.alink('Download Thrift', '/thrift/download/').'</li>
-<li>'.alink('Thrift Tutorial', '/thrift/tutorial/').'</li>
-<li>'.alink('Mailing Lists', '/thrift/mailing/').'</li>
+<li>'.alink('Download Thrift', 'download/').'</li>
+<li>'.alink('Thrift Tutorial', 'tutorial/').'</li>
+<li>'.alink('Mailing Lists', 'mailing/').'</li>
 </ul>
 
 <div class="overview">
@@ -110,7 +110,7 @@ int main(int argc, char **argv) {
 }').
 '</pre>
 <p>Learn more about Thrift:'.
-$page->actionlink('Read the Whitepaper', '/thrift/static/thrift-20070401.pdf').'
+$page->actionlink('Read the Whitepaper', 'static/thrift-20070401.pdf').'
 </p>
 </div>
 ';

Modified: thrift/site/dynathrift/static/thrift.css
URL: http://svn.apache.org/viewvc/thrift/site/dynathrift/static/thrift.css?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/dynathrift/static/thrift.css (original)
+++ thrift/site/dynathrift/static/thrift.css Tue Nov  9 20:27:11 2010
@@ -17,15 +17,15 @@ div {
   width: 916px;
 }
 .tframe {
-  background: #111 url(/thrift/static/thrift_fade_vert.png) no-repeat top center;
+  background: #111 url(thrift_fade_vert.png) no-repeat top center;
   height: 6px;
 }
 .iframe {
-  background: #111 url(/thrift/static/thrift_fade.png) repeat-y top center;
+  background: #111 url(thrift_fade.png) repeat-y top center;
   padding: 0px 7px;
 }
 .bframe {
-  background: #111 url(/thrift/static/thrift_fade_vert.png) no-repeat bottom center;
+  background: #111 url(thrift_fade_vert.png) no-repeat bottom center;
   height: 6px;
 }
 .frame {
@@ -321,7 +321,7 @@ img, a img {
 }
 .about .committers tr.odd td,
 .about .companies .odd {
-  background-image: url(/thrift/static/thrift_nav.png);
+  background-image: url(thrift_nav.png);
 }
 .about .committers tr.first td {
   border-top: solid #e9e9e9 1px;

Modified: thrift/site/dynathrift/thrift.lib.php
URL: http://svn.apache.org/viewvc/thrift/site/dynathrift/thrift.lib.php?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/dynathrift/thrift.lib.php (original)
+++ thrift/site/dynathrift/thrift.lib.php Tue Nov  9 20:27:11 2010
@@ -71,6 +71,10 @@ function image($src, $class='', $alt='')
 class ThriftPage {
   public function __construct($tab='home') {
     $this->tab = $tab;
+    $this->root = "../";
+    if ($tab == 'home') {
+      $this->root = "";
+    }
   }
 
   public function open($title='') {
@@ -79,7 +83,7 @@ class ThriftPage {
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="thrift">
 <head>
 <title>Apache Thrift'.($title ? ' | '.$title : '').'</title>
-<link rel="stylesheet" type="text/css" href="/thrift/static/thrift.css" />
+<link rel="stylesheet" type="text/css" href="'.$this->root.'static/thrift.css" />
 </head>
 <body>
 <div class="oframe">
@@ -95,12 +99,12 @@ class ThriftPage {
   protected function _header() {
     return
       '<div class="header">'.
-      alink(image('/thrift/static/apache-incubator-small.png', 'Apache'),
+      alink(image($this->root.'static/apache-incubator-small.png', 'Apache'),
             'http://incubator.apache.org/', 'apache').
       '<h2>'.
-      alink(image('/thrift/static/thrift_mask.png', 'Thrift'),
+      alink(image($this->root.'static/thrift_mask.png', 'Thrift'),
             // 'Thrift',
-            '/thrift/', 'logo').
+            $this->root, 'logo').
       small('Software minus logo.').
       '</h2>'.
       '</div>';
@@ -116,10 +120,10 @@ class ThriftPage {
                   'tutorial' => 'Tutorial');
     foreach ($tabs as $key => $name) {
       $active = ($key == $this->tab);
-      $url = ($key == 'home') ? '' : $key.'/';
+      $url = ($key == 'home') ? $this->root : $this->root.$key;
       $html .=
         '<li class="ln_'.$key.($active ? ' active' : '').'">'.
-        alink($name.($active ? ' &raquo;' : ''), '/thrift/'.$url).
+        alink($name.($active ? ' &raquo;' : ''), $url).
         '</li>';
     }
     $html .= '</ul>';
@@ -180,4 +184,4 @@ var pageTracker = _gat._getTracker("UA-2
 pageTracker._trackPageview();
 </script>';
   }
-}
\ No newline at end of file
+}

Modified: thrift/site/publish/about/index.html
URL: http://svn.apache.org/viewvc/thrift/site/publish/about/index.html?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/publish/about/index.html (original)
+++ thrift/site/publish/about/index.html Tue Nov  9 20:27:11 2010
@@ -2,13 +2,13 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="thrift">
 <head>
 <title>Apache Thrift</title>
-<link rel="stylesheet" type="text/css" href="/thrift/static/thrift.css" />
+<link rel="stylesheet" type="text/css" href="../static/thrift.css" />
 </head>
 <body>
 <div class="oframe">
 <div class="tframe"></div>
 <div class="iframe">
-<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="/thrift/static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="/thrift/" class="logo"><img src="/thrift/static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="/thrift/">Home</a></li><li class="ln_about active"><a href="/thrift/about/">About &raquo;</a></li><li class="ln_mailing"><a href="/thrift/mailing/">Mailing Lists</a></li><li class="ln_developers"><a href="/thrift/developers/">Developers</a></li><li class="ln_download"><a href="/thrift/download/">Download</a></li><li class="ln_tutorial"><a href="/thrift/tutorial/">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main about"><div class="welcome"><p class="first">Thrift is a software project spanning a variety
  of programming languages and use cases. Our goal is to make reliable, performant communication and data serialization across languages as efficient and seamless as possible.</p><p>In our pursuit of this goal, Thrift aims to embody the following values:</p><ul>
+<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="../static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="../" class="logo"><img src="../static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="../">Home</a></li><li class="ln_about active"><a href="../about">About &raquo;</a></li><li class="ln_mailing"><a href="../mailing">Mailing Lists</a></li><li class="ln_developers"><a href="../developers">Developers</a></li><li class="ln_download"><a href="../download">Download</a></li><li class="ln_tutorial"><a href="../tutorial">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main about"><div class="welcome"><p class="first">Thrift is a software project spanning a variety of programming languages and use cases. Our goal 
 is to make reliable, performant communication and data serialization across languages as efficient and seamless as possible.</p><p>In our pursuit of this goal, Thrift aims to embody the following values:</p><ul>
 
 <li><b>Simplicity</b>
 Thrift code is simple and approachable, free of unnecessary dependencies.</li>

Modified: thrift/site/publish/developers/index.html
URL: http://svn.apache.org/viewvc/thrift/site/publish/developers/index.html?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/publish/developers/index.html (original)
+++ thrift/site/publish/developers/index.html Tue Nov  9 20:27:11 2010
@@ -2,13 +2,13 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="thrift">
 <head>
 <title>Apache Thrift</title>
-<link rel="stylesheet" type="text/css" href="/thrift/static/thrift.css" />
+<link rel="stylesheet" type="text/css" href="../static/thrift.css" />
 </head>
 <body>
 <div class="oframe">
 <div class="tframe"></div>
 <div class="iframe">
-<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="/thrift/static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="/thrift/" class="logo"><img src="/thrift/static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="/thrift/">Home</a></li><li class="ln_about"><a href="/thrift/about/">About</a></li><li class="ln_mailing"><a href="/thrift/mailing/">Mailing Lists</a></li><li class="ln_developers active"><a href="/thrift/developers/">Developers &raquo;</a></li><li class="ln_download"><a href="/thrift/download/">Download</a></li><li class="ln_tutorial"><a href="/thrift/tutorial/">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main developers">
+<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="../static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="../" class="logo"><img src="../static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="../">Home</a></li><li class="ln_about"><a href="../about">About</a></li><li class="ln_mailing"><a href="../mailing">Mailing Lists</a></li><li class="ln_developers active"><a href="../developers">Developers &raquo;</a></li><li class="ln_download"><a href="../download">Download</a></li><li class="ln_tutorial"><a href="../tutorial">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main developers">
 <h2>Issue Tracking</h2>
 <p class="issues">Thrift tracks both bugs and enhancements using Apache JIRA. Before filing new requests, we ask that you first do the following:</p>
 <ul>

Modified: thrift/site/publish/download/index.html
URL: http://svn.apache.org/viewvc/thrift/site/publish/download/index.html?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/publish/download/index.html (original)
+++ thrift/site/publish/download/index.html Tue Nov  9 20:27:11 2010
@@ -2,13 +2,13 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="thrift">
 <head>
 <title>Apache Thrift</title>
-<link rel="stylesheet" type="text/css" href="/thrift/static/thrift.css" />
+<link rel="stylesheet" type="text/css" href="../static/thrift.css" />
 </head>
 <body>
 <div class="oframe">
 <div class="tframe"></div>
 <div class="iframe">
-<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="/thrift/static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="/thrift/" class="logo"><img src="/thrift/static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="/thrift/">Home</a></li><li class="ln_about"><a href="/thrift/about/">About</a></li><li class="ln_mailing"><a href="/thrift/mailing/">Mailing Lists</a></li><li class="ln_developers"><a href="/thrift/developers/">Developers</a></li><li class="ln_download active"><a href="/thrift/download/">Download &raquo;</a></li><li class="ln_tutorial"><a href="/thrift/tutorial/">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main download">
+<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="../static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="../" class="logo"><img src="../static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="../">Home</a></li><li class="ln_about"><a href="../about">About</a></li><li class="ln_mailing"><a href="../mailing">Mailing Lists</a></li><li class="ln_developers"><a href="../developers">Developers</a></li><li class="ln_download active"><a href="../download">Download &raquo;</a></li><li class="ln_tutorial"><a href="../tutorial">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main download">
 <h2>Direct Download</h2>
 
 <p>

Modified: thrift/site/publish/index.html
URL: http://svn.apache.org/viewvc/thrift/site/publish/index.html?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/publish/index.html (original)
+++ thrift/site/publish/index.html Tue Nov  9 20:27:11 2010
@@ -2,13 +2,13 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="thrift">
 <head>
 <title>Apache Thrift</title>
-<link rel="stylesheet" type="text/css" href="/thrift/static/thrift.css" />
+<link rel="stylesheet" type="text/css" href="static/thrift.css" />
 </head>
 <body>
 <div class="oframe">
 <div class="tframe"></div>
 <div class="iframe">
-<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="/thrift/static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="/thrift/" class="logo"><img src="/thrift/static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home active"><a href="/thrift/">Home &raquo;</a></li><li class="ln_about"><a href="/thrift/about/">About</a></li><li class="ln_mailing"><a href="/thrift/mailing/">Mailing Lists</a></li><li class="ln_developers"><a href="/thrift/developers/">Developers</a></li><li class="ln_download"><a href="/thrift/download/">Download</a></li><li class="ln_tutorial"><a href="/thrift/tutorial/">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main home"><div class="welcome"><p class="first">Thrift is a software framework for scalable cros
 s-language services development. It combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and OCaml.</p><p>Originally developed at Facebook, Thrift was open sourced in April 2007 and entered the Apache Incubator in May, 2008.</p></div><h3>Quick Links</h3>
+<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="" class="logo"><img src="static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home active"><a href="">Home &raquo;</a></li><li class="ln_about"><a href="about">About</a></li><li class="ln_mailing"><a href="mailing">Mailing Lists</a></li><li class="ln_developers"><a href="developers">Developers</a></li><li class="ln_download"><a href="download">Download</a></li><li class="ln_tutorial"><a href="tutorial">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main home"><div class="welcome"><p class="first">Thrift is a software framework for scalable cross-language services development. It combines a software stack with a code gen
 eration engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and OCaml.</p><p>Originally developed at Facebook, Thrift was open sourced in April 2007 and entered the Apache Incubator in May, 2008.</p></div><h3>Quick Links</h3>
 <ul>
 <li><a href="http://wiki.apache.org/thrift/">Thrift Wiki</a></li>
 <li><a href="http://issues.apache.org/jira/browse/THRIFT">JIRA page</a></li>
@@ -18,9 +18,9 @@
 
 <h3>Getting Started</h3>
 <ul>
-<li><a href="/thrift/download/">Download Thrift</a></li>
-<li><a href="/thrift/tutorial/">Thrift Tutorial</a></li>
-<li><a href="/thrift/mailing/">Mailing Lists</a></li>
+<li><a href="download/">Download Thrift</a></li>
+<li><a href="tutorial/">Thrift Tutorial</a></li>
+<li><a href="mailing/">Mailing Lists</a></li>
 </ul>
 
 <div class="overview">
@@ -89,7 +89,7 @@ int main(int argc, char **argv) {
   server.serve();
   return 0;
 }</pre>
-<p>Learn more about Thrift:<span class="actionlink"><span class="grabme">&raquo;</span><a href="/thrift/static/thrift-20070401.pdf">Read the Whitepaper</a></span>
+<p>Learn more about Thrift:<span class="actionlink"><span class="grabme">&raquo;</span><a href="static/thrift-20070401.pdf">Read the Whitepaper</a></span>
 </p>
 </div>
 </div></div><div class="footer"><span class="copyright">Copyright 2007-2010 Apache Software Foundation</span></div></div></div><div class="bframe"></div></div>

Modified: thrift/site/publish/mailing/index.html
URL: http://svn.apache.org/viewvc/thrift/site/publish/mailing/index.html?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/publish/mailing/index.html (original)
+++ thrift/site/publish/mailing/index.html Tue Nov  9 20:27:11 2010
@@ -2,13 +2,13 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="thrift">
 <head>
 <title>Apache Thrift</title>
-<link rel="stylesheet" type="text/css" href="/thrift/static/thrift.css" />
+<link rel="stylesheet" type="text/css" href="../static/thrift.css" />
 </head>
 <body>
 <div class="oframe">
 <div class="tframe"></div>
 <div class="iframe">
-<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="/thrift/static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="/thrift/" class="logo"><img src="/thrift/static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="/thrift/">Home</a></li><li class="ln_about"><a href="/thrift/about/">About</a></li><li class="ln_mailing active"><a href="/thrift/mailing/">Mailing Lists &raquo;</a></li><li class="ln_developers"><a href="/thrift/developers/">Developers</a></li><li class="ln_download"><a href="/thrift/download/">Download</a></li><li class="ln_tutorial"><a href="/thrift/tutorial/">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main mailing"><div class="welcome"><p class="first">In accordance with the principles of the Apac
 he Software Foundation, Thrift encourages a collaborative and community-based development environment.</p><p>All project discussion is carried out publicly, on the following archived lists.</p></div><div class="list" name="user"><h2>Users</h2><p>If you use Thrift, please subscribe to the Thrift user mailing list. This list is for questions about Thrift and announcements from the team relevant to all users.</p><div class="actions"><a href="mailto:user-subscribe@thrift.apache.org">Subscribe</a> | <a href="mailto:user-unsubscribe@thrift.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/thrift-user/">View Archives</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-user/">View Archives (Incubator)</a></div></div><div class="list" name="dev"><h2>Developers</h2><p>If you would like to contribute to Thrift, subscribe to the Thrift developer mailing list.</p><div class="actions"><a href="mailto:dev-subscribe@thrift.apache.org">Subsc
 ribe</a> | <a href="mailto:dev-unsubscribe@thrift.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/thrift-dev/">View Archives</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-dev/">View Archives (Incubator)</a></div></div><div class="list" name="commits"><h2>Commits</h2><p>This list receives notifications about all code changes made to Thrift.</p><div class="actions"><a href="mailto:commits-subscribe@thrift.apache.org">Subscribe</a> | <a href="mailto:commits-unsubscribe@thrift.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/thrift-commits/">View Archives</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-commits/">View Archives (Incubator)</a></div></div><p class="listnote">Note: subscription is required to post to all lists.</p></div></div><div class="footer"><span class="copyright">Copyright 2007-2010 Apache Software Foundation</span></div></div></div><div class="bf
 rame"></div></div>
+<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="../static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="../" class="logo"><img src="../static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="../">Home</a></li><li class="ln_about"><a href="../about">About</a></li><li class="ln_mailing active"><a href="../mailing">Mailing Lists &raquo;</a></li><li class="ln_developers"><a href="../developers">Developers</a></li><li class="ln_download"><a href="../download">Download</a></li><li class="ln_tutorial"><a href="../tutorial">Tutorial</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main mailing"><div class="welcome"><p class="first">In accordance with the principles of the Apache Software Foundation, Thrift encourages a collab
 orative and community-based development environment.</p><p>All project discussion is carried out publicly, on the following archived lists.</p></div><div class="list" name="user"><h2>Users</h2><p>If you use Thrift, please subscribe to the Thrift user mailing list. This list is for questions about Thrift and announcements from the team relevant to all users.</p><div class="actions"><a href="mailto:user-subscribe@thrift.apache.org">Subscribe</a> | <a href="mailto:user-unsubscribe@thrift.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/thrift-user/">View Archives</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-user/">View Archives (Incubator)</a></div></div><div class="list" name="dev"><h2>Developers</h2><p>If you would like to contribute to Thrift, subscribe to the Thrift developer mailing list.</p><div class="actions"><a href="mailto:dev-subscribe@thrift.apache.org">Subscribe</a> | <a href="mailto:dev-unsubscribe@thrift.
 apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/thrift-dev/">View Archives</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-dev/">View Archives (Incubator)</a></div></div><div class="list" name="commits"><h2>Commits</h2><p>This list receives notifications about all code changes made to Thrift.</p><div class="actions"><a href="mailto:commits-subscribe@thrift.apache.org">Subscribe</a> | <a href="mailto:commits-unsubscribe@thrift.apache.org">Unsubscribe</a> | <a href="http://mail-archives.apache.org/mod_mbox/thrift-commits/">View Archives</a> | <a href="http://mail-archives.apache.org/mod_mbox/incubator-thrift-commits/">View Archives (Incubator)</a></div></div><p class="listnote">Note: subscription is required to post to all lists.</p></div></div><div class="footer"><span class="copyright">Copyright 2007-2010 Apache Software Foundation</span></div></div></div><div class="bframe"></div></div>
 
 
 <script type="text/javascript">

Modified: thrift/site/publish/static/thrift.css
URL: http://svn.apache.org/viewvc/thrift/site/publish/static/thrift.css?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/publish/static/thrift.css (original)
+++ thrift/site/publish/static/thrift.css Tue Nov  9 20:27:11 2010
@@ -17,15 +17,15 @@ div {
   width: 916px;
 }
 .tframe {
-  background: #111 url(/thrift/static/thrift_fade_vert.png) no-repeat top center;
+  background: #111 url(thrift_fade_vert.png) no-repeat top center;
   height: 6px;
 }
 .iframe {
-  background: #111 url(/thrift/static/thrift_fade.png) repeat-y top center;
+  background: #111 url(thrift_fade.png) repeat-y top center;
   padding: 0px 7px;
 }
 .bframe {
-  background: #111 url(/thrift/static/thrift_fade_vert.png) no-repeat bottom center;
+  background: #111 url(thrift_fade_vert.png) no-repeat bottom center;
   height: 6px;
 }
 .frame {
@@ -321,7 +321,7 @@ img, a img {
 }
 .about .committers tr.odd td,
 .about .companies .odd {
-  background-image: url(/thrift/static/thrift_nav.png);
+  background-image: url(thrift_nav.png);
 }
 .about .committers tr.first td {
   border-top: solid #e9e9e9 1px;

Modified: thrift/site/publish/tutorial/index.html
URL: http://svn.apache.org/viewvc/thrift/site/publish/tutorial/index.html?rev=1033199&r1=1033198&r2=1033199&view=diff
==============================================================================
--- thrift/site/publish/tutorial/index.html (original)
+++ thrift/site/publish/tutorial/index.html Tue Nov  9 20:27:11 2010
@@ -2,13 +2,13 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="thrift">
 <head>
 <title>Apache Thrift</title>
-<link rel="stylesheet" type="text/css" href="/thrift/static/thrift.css" />
+<link rel="stylesheet" type="text/css" href="../static/thrift.css" />
 </head>
 <body>
 <div class="oframe">
 <div class="tframe"></div>
 <div class="iframe">
-<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="/thrift/static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="/thrift/" class="logo"><img src="/thrift/static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="/thrift/">Home</a></li><li class="ln_about"><a href="/thrift/about/">About</a></li><li class="ln_mailing"><a href="/thrift/mailing/">Mailing Lists</a></li><li class="ln_developers"><a href="/thrift/developers/">Developers</a></li><li class="ln_download"><a href="/thrift/download/">Download</a></li><li class="ln_tutorial active"><a href="/thrift/tutorial/">Tutorial &raquo;</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main tutorial"><h2>Thrift Tutorial</h2><div class="woe_is_me">This tutorial is known to be <i>woe
 fully</i> incomplete, and is a work in progress. This skeleton is illustrative of what is being worked on and will soon be available.</div><h4>Contents</h4><ol class="toc"><li><a href="#t0">Download Thrift</a></li><li><a href="#t1">Build and Install</a></li><li><a href="#t2">Writing a Thrift file</a></li><li><a href="#t3">Using the Thrift Compiler</a></li><li><a href="#t4">Running a Thrift Server</a></li><li><a href="#t5">Running a Thrift Client</a></li></ol><ol class="steps topborder"><li><a name="t0"></a><h3>Download Thrift</h3>To get started, download a copy of Thrift.</li><li><a name="t1"></a><h3>Build and Install</h3>Next, build and install the Thrift libraries and compiler.</li><li><a name="t2"></a><h3>Writing a Thrift file</h3>Let's define and create a simple service.</li><li><a name="t3"></a><h3>Using the Thrift Compiler</h3>Invoke the Thrift compiler on the test file.</li><li><a name="t4"></a><h3>Running a Thrift Server</h3>Fill in the server stubs and build the ser
 ver.</li><li><a name="t5"></a><h3>Running a Thrift Client</h3>Using the client libraries.</li></ol></div></div><div class="footer"><span class="copyright">Copyright 2007-2010 Apache Software Foundation</span></div></div></div><div class="bframe"></div></div>
+<div class="frame"><div class="header"><a href="http://incubator.apache.org/" class="apache"><img src="../static/apache-incubator-small.png" class="Apache" alt="" /></a><h2><a href="../" class="logo"><img src="../static/thrift_mask.png" class="Thrift" alt="" /></a><small>Software minus logo.</small></h2></div><div class="wrapper"><div class="leftnav"><ul><li class="ln_home"><a href="../">Home</a></li><li class="ln_about"><a href="../about">About</a></li><li class="ln_mailing"><a href="../mailing">Mailing Lists</a></li><li class="ln_developers"><a href="../developers">Developers</a></li><li class="ln_download"><a href="../download">Download</a></li><li class="ln_tutorial active"><a href="../tutorial">Tutorial &raquo;</a></li></ul><ul class="ext"><li><a href="http://wiki.apache.org/thrift">Thrift Wiki</a></li></ul></div><div class="main tutorial"><h2>Thrift Tutorial</h2><div class="woe_is_me">This tutorial is known to be <i>woefully</i> incomplete, and is a work in progress. T
 his skeleton is illustrative of what is being worked on and will soon be available.</div><h4>Contents</h4><ol class="toc"><li><a href="#t0">Download Thrift</a></li><li><a href="#t1">Build and Install</a></li><li><a href="#t2">Writing a Thrift file</a></li><li><a href="#t3">Using the Thrift Compiler</a></li><li><a href="#t4">Running a Thrift Server</a></li><li><a href="#t5">Running a Thrift Client</a></li></ol><ol class="steps topborder"><li><a name="t0"></a><h3>Download Thrift</h3>To get started, download a copy of Thrift.</li><li><a name="t1"></a><h3>Build and Install</h3>Next, build and install the Thrift libraries and compiler.</li><li><a name="t2"></a><h3>Writing a Thrift file</h3>Let's define and create a simple service.</li><li><a name="t3"></a><h3>Using the Thrift Compiler</h3>Invoke the Thrift compiler on the test file.</li><li><a name="t4"></a><h3>Running a Thrift Server</h3>Fill in the server stubs and build the server.</li><li><a name="t5"></a><h3>Running a Thrift
  Client</h3>Using the client libraries.</li></ol></div></div><div class="footer"><span class="copyright">Copyright 2007-2010 Apache Software Foundation</span></div></div></div><div class="bframe"></div></div>
 
 
 <script type="text/javascript">