You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ol...@apache.org on 2007/11/02 01:29:01 UTC

svn commit: r591173 - in /incubator/pig/site: author/src/documentation/content/xdocs/ publish/

Author: olga
Date: Thu Nov  1 17:28:59 2007
New Revision: 591173

URL: http://svn.apache.org/viewvc?rev=591173&view=rev
Log:
 added info on how to build and run pig

Added:
    incubator/pig/site/author/src/documentation/content/xdocs/deployment.xml
    incubator/pig/site/publish/deployment.html
    incubator/pig/site/publish/deployment.pdf
    incubator/pig/site/publish/deployment.xml
Modified:
    incubator/pig/site/author/src/documentation/content/xdocs/index.xml
    incubator/pig/site/author/src/documentation/content/xdocs/site.xml
    incubator/pig/site/publish/about.html
    incubator/pig/site/publish/index.html
    incubator/pig/site/publish/index.pdf
    incubator/pig/site/publish/issue_tracking.html
    incubator/pig/site/publish/linkmap.html
    incubator/pig/site/publish/linkmap.pdf
    incubator/pig/site/publish/mailing_lists.html
    incubator/pig/site/publish/version_control.html
    incubator/pig/site/publish/whoweare.html

Added: incubator/pig/site/author/src/documentation/content/xdocs/deployment.xml
URL: http://svn.apache.org/viewvc/incubator/pig/site/author/src/documentation/content/xdocs/deployment.xml?rev=591173&view=auto
==============================================================================
--- incubator/pig/site/author/src/documentation/content/xdocs/deployment.xml (added)
+++ incubator/pig/site/author/src/documentation/content/xdocs/deployment.xml Thu Nov  1 17:28:59 2007
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+<document>
+  <header>
+    <title>Deploying Pig</title>
+  </header>
+  <body>
+    <section id="req">
+      <title>Requirements</title>
+	<ol>
+	  <li> <strong>Java 1.6.x</strong>. preferably from Sun. Set JAVA_HOME to the root of your Java installation.</li>
+	  <li> <strong>Ant</strong> build tool: <a href="http://ant.apache.org/">http://ant.apache.org/</a>.</li>
+	  <li> To run unit tests, you also need <strong>JUnit</strong>: <a href="http://junit.sourceforge.net/">http://junit.sourceforge.net/</a>.</li>
+	  <li> To run pig programs, you need access to a <strong>Hadoop cluster</strong>: <a href="http://lucene.apache.org/hadoop/">http://lucene.apache.org/hadoop/</a>.</li>
+	</ol>
+    </section>
+    <section>
+      <title> Building Pig </title>
+        <ol>
+	  <li> Check out pig code from svn: <em>svn co http://svn.apache.org/repos/asf/incubator/pig/trunk</em>. </li>
+	  <li> Build the code from the top directory: <em>ant</em>. If the build is successful, you should see <em>pig.jar</em> created in that directory. </li>	
+        </ol>
+    </section>
+    <section>
+      <title> Running Pig Programs </title>
+      	<p>
+There are two ways to run pig. The first way is by using <em>pig.pl</em> that can be found in the <em>scripts</em> directory of your source tree. Using the script would require having Perl installed on your machine. You can use it by issuing the following command: <em> pig.pl -cp pig.jar:HADOOPSITEPATH</em> where <em>HADOOPSITEPATH</em> is the directory in which <em>hadoop-site.xml</em> file for your Hadoop cluster is located. Example: <em>pig.pl -cp pig.jar:/hadoop/conf</em>
+      	</p>
+      	<p>
+The second way to do this is by using java directly: <em>java -cp pig.jar:HADOOPSITEPATH org.apache.pig.Main</em>
+      	</p>
+	<p>
+Regardless of how you invoke pig, the commands that are specified above will take you to an interactive shell called <em>grunt</em> where you can run DFS and pig commands. <strong>The documentation about grunt will be posted on wiki soon.</strong> If you want to run Pig in batch mode, you can append your pig script to either of the commands above. Example: <em>pig.pl -cp pig.jar:/hadoop/conf myscript.pig</em> or <em>java -cp  pig.jar:/hadoop/conf  myscript.pig</em>.
+	</p>
+    </section>
+  </body>
+</document>

Modified: incubator/pig/site/author/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewvc/incubator/pig/site/author/src/documentation/content/xdocs/index.xml?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/author/src/documentation/content/xdocs/index.xml (original)
+++ incubator/pig/site/author/src/documentation/content/xdocs/index.xml Thu Nov  1 17:28:59 2007
@@ -45,7 +45,7 @@
     <section>
       <title> Getting Started </title>
       <ol>
-	<li>How to download <strong>-- coming soon</strong></li>
+	<li><a href="deployment.html">How to deploy it</a>.</li>
         <li><a href="http://wiki.apache.org/pig/">Learn about</a> Pig by reading the wiki documentation <strong>-- still under construction.</strong></li>
         <li><a href="mailing_lists.html">Discuss it</a> on the mailing list.</li>
       </ol>

Modified: incubator/pig/site/author/src/documentation/content/xdocs/site.xml
URL: http://svn.apache.org/viewvc/incubator/pig/site/author/src/documentation/content/xdocs/site.xml?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/author/src/documentation/content/xdocs/site.xml (original)
+++ incubator/pig/site/author/src/documentation/content/xdocs/site.xml Thu Nov  1 17:28:59 2007
@@ -53,6 +53,7 @@
   <dev label="Developers">
     <issues    label="Issue Tracking"     href="issue_tracking.html" />
     <vcs       label="Version Control"    href="version_control.html" />
+    <deploy    label="Deployment"	  href="deployment.html"/>
   </dev>
 
   <external-refs>

Modified: incubator/pig/site/publish/about.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/about.html?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/about.html (original)
+++ incubator/pig/site/publish/about.html Thu Nov  1 17:28:59 2007
@@ -116,6 +116,9 @@
 <div class="menuitem">
 <a href="version_control.html">Version Control</a>
 </div>
+<div class="menuitem">
+<a href="deployment.html">Deployment</a>
+</div>
 </div>
 <div id="credit"></div>
 <div id="roundbottom">

Added: incubator/pig/site/publish/deployment.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/deployment.html?rev=591173&view=auto
==============================================================================
--- incubator/pig/site/publish/deployment.html (added)
+++ incubator/pig/site/publish/deployment.html Thu Nov  1 17:28:59 2007
@@ -0,0 +1,227 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<meta content="Apache Forrest" name="Generator">
+<meta name="Forrest-version" content="0.8">
+<meta name="Forrest-skin-name" content="pelt">
+<title>Deploying Pig</title>
+<link type="text/css" href="skin/basic.css" rel="stylesheet">
+<link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
+<link media="print" type="text/css" href="skin/print.css" rel="stylesheet">
+<link type="text/css" href="skin/profile.css" rel="stylesheet">
+<script src="skin/getBlank.js" language="javascript" type="text/javascript"></script><script src="skin/getMenu.js" language="javascript" type="text/javascript"></script><script src="skin/fontsize.js" language="javascript" type="text/javascript"></script>
+<link rel="shortcut icon" href="images/favicon.ico">
+</head>
+<body onload="init()">
+<script type="text/javascript">ndeSetTextSize();</script>
+<div id="top">
+<!--+
+    |breadtrail
+    +-->
+<div class="breadtrail">
+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://incubator.apache.org/">Incubator</a> &gt; <a href="http://incubator.apache.org/pig/">Pig</a><script src="skin/breadcrumbs.js" language="JavaScript" type="text/javascript"></script>
+</div>
+<!--+
+    |header
+    +-->
+<div class="header">
+<!--+
+    |start group logo
+    +-->
+<div class="grouplogo">
+<a href="http://incubator.apache.org/"><img class="logoImage" alt="Incubator" src="images/apache-incubator.png" title="Apache Incubator"></a>
+</div>
+<!--+
+    |end group logo
+    +-->
+<!--+
+    |start Project Logo
+    +-->
+<div class="projectlogoA1">
+<a href="http://incubator.apache.org/pig/"><img class="logoImage" alt="Pig" src="images/pig-logo.gif" title="A platform for analyzing large datasets"></a>
+</div>
+<!--+
+    |end Project Logo
+    +-->
+<!--+
+    |start Tabs
+    +-->
+<ul id="tabs">
+<li class="current">
+<a class="selected" href="index.html">Home</a>
+</li>
+<li>
+<a class="unselected" href="http://wiki.apache.org/pig/">Wiki</a>
+</li>
+</ul>
+<!--+
+    |end Tabs
+    +-->
+</div>
+</div>
+<div id="main">
+<div id="publishedStrip">
+<!--+
+    |start Subtabs
+    +-->
+<div id="level2tabs"></div>
+<!--+
+    |end Endtabs
+    +-->
+<script type="text/javascript"><!--
+document.write("Last Published: " + document.lastModified);
+//  --></script>
+</div>
+<!--+
+    |breadtrail
+    +-->
+<div class="breadtrail">
+
+             &nbsp;
+           </div>
+<!--+
+    |start Menu, mainarea
+    +-->
+<!--+
+    |start Menu
+    +-->
+<div id="menu">
+<div onclick="SwitchMenu('menu_1.1', 'skin/')" id="menu_1.1Title" class="menutitle">Project</div>
+<div id="menu_1.1" class="menuitemgroup">
+<div class="menuitem">
+<a href="about.html">About</a>
+</div>
+<div class="menuitem">
+<a href="mailing_lists.html">Mailing Lists</a>
+</div>
+<div class="menuitem">
+<a href="whoweare.html">Who We Are</a>
+</div>
+</div>
+<div onclick="SwitchMenu('menu_1.2', 'skin/')" id="menu_1.2Title" class="menutitle">Documentation</div>
+<div id="menu_1.2" class="menuitemgroup">
+<div class="menuitem">
+<a href="http://wiki.apache.org/pig/">Wiki</a>
+</div>
+<div class="menuitem">
+<a href="http://wiki.apache.org/pig/FAQ">FAQ</a>
+</div>
+</div>
+<div onclick="SwitchMenu('menu_selected_1.3', 'skin/')" id="menu_selected_1.3Title" class="menutitle" style="background-image: url('skin/images/chapter_open.gif');">Developers</div>
+<div id="menu_selected_1.3" class="selectedmenuitemgroup" style="display: block;">
+<div class="menuitem">
+<a href="issue_tracking.html">Issue Tracking</a>
+</div>
+<div class="menuitem">
+<a href="version_control.html">Version Control</a>
+</div>
+<div class="menupage">
+<div class="menupagetitle">Deployment</div>
+</div>
+</div>
+<div id="credit"></div>
+<div id="roundbottom">
+<img style="display: none" class="corner" height="15" width="15" alt="" src="skin/images/rc-b-l-15-1body-2menu-3menu.png"></div>
+<!--+
+  |alternative credits
+  +-->
+<div id="credit2"></div>
+</div>
+<!--+
+    |end Menu
+    +-->
+<!--+
+    |start content
+    +-->
+<div id="content">
+<div title="Portable Document Format" class="pdflink">
+<a class="dida" href="deployment.pdf"><img alt="PDF -icon" src="skin/images/pdfdoc.gif" class="skin"><br>
+        PDF</a>
+</div>
+<h1>Deploying Pig</h1>
+<div id="minitoc-area">
+<ul class="minitoc">
+<li>
+<a href="#req">Requirements</a>
+</li>
+<li>
+<a href="#Building+Pig"> Building Pig </a>
+</li>
+<li>
+<a href="#Running+Pig+Programs"> Running Pig Programs </a>
+</li>
+</ul>
+</div>
+    
+<a name="N1000D"></a><a name="req"></a>
+<h2 class="h3">Requirements</h2>
+<div class="section">
+<ol>
+	  
+<li> 
+<strong>Java 1.6.x</strong>. preferably from Sun. Set JAVA_HOME to the root of your Java installation.</li>
+	  
+<li> 
+<strong>Ant</strong> build tool: <a href="http://ant.apache.org/">http://ant.apache.org/</a>.</li>
+	  
+<li> To run unit tests, you also need <strong>JUnit</strong>: <a href="http://junit.sourceforge.net/">http://junit.sourceforge.net/</a>.</li>
+	  
+<li> To run pig programs, you need access to a <strong>Hadoop cluster</strong>: <a href="http://lucene.apache.org/hadoop/">http://lucene.apache.org/hadoop/</a>.</li>
+	
+</ol>
+</div>
+    
+<a name="N1003B"></a><a name="Building+Pig"></a>
+<h2 class="h3"> Building Pig </h2>
+<div class="section">
+<ol>
+	  
+<li> Check out pig code from svn: <em>svn co http://svn.apache.org/repos/asf/incubator/pig/trunk</em>. </li>
+	  
+<li> Build the code from the top directory: <em>ant</em>. If the build is successful, you should see <em>pig.jar</em> created in that directory. </li>	
+        
+</ol>
+</div>
+    
+<a name="N10054"></a><a name="Running+Pig+Programs"></a>
+<h2 class="h3"> Running Pig Programs </h2>
+<div class="section">
+<p>
+There are two ways to run pig. The first way is by using <em>pig.pl</em> that can be found in the <em>scripts</em> directory of your source tree. Using the script would require having Perl installed on your machine. You can use it by issuing the following command: <em> pig.pl -cp pig.jar:HADOOPSITEPATH</em> where <em>HADOOPSITEPATH</em> is the directory in which <em>hadoop-site.xml</em> file for your Hadoop cluster is located. Example: <em>pig.pl -cp pig.jar:/hadoop/conf</em>
+      	
+</p>
+<p>
+The second way to do this is by using java directly: <em>java -cp pig.jar:HADOOPSITEPATH org.apache.pig.Main</em>
+      	
+</p>
+<p>
+Regardless of how you invoke pig, the commands that are specified above will take you to an interactive shell called <em>grunt</em> where you can run DFS and pig commands. <strong>The documentation about grunt will be posted on wiki soon.</strong> If you want to run Pig in batch mode, you can append your pig script to either of the commands above. Example: <em>pig.pl -cp pig.jar:/hadoop/conf myscript.pig</em> or <em>java -cp  pig.jar:/hadoop/conf  myscript.pig</em>.
+	</p>
+</div>
+  
+</div>
+<!--+
+    |end content
+    +-->
+<div class="clearboth">&nbsp;</div>
+</div>
+<div id="footer">
+<!--+
+    |start bottomstrip
+    +-->
+<div class="lastmodified">
+<script type="text/javascript"><!--
+document.write("Last Published: " + document.lastModified);
+//  --></script>
+</div>
+<div class="copyright">
+        Copyright &copy;
+         2007 <a href="http://www.apache.org/licenses/">The Apache Software Foundation.</a>
+</div>
+<!--+
+    |end bottomstrip
+    +-->
+</div>
+</body>
+</html>

Added: incubator/pig/site/publish/deployment.pdf
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/deployment.pdf?rev=591173&view=auto
==============================================================================
--- incubator/pig/site/publish/deployment.pdf (added)
+++ incubator/pig/site/publish/deployment.pdf Thu Nov  1 17:28:59 2007
@@ -0,0 +1,260 @@
+%PDF-1.3
+%ª«¬­
+4 0 obj
+<< /Type /Info
+/Producer (FOP 0.20.5) >>
+endobj
+5 0 obj
+<< /Length 442 /Filter [ /ASCII85Decode /FlateDecode ]
+ >>
+stream
+Gaua:4]?tu&;GO\`KjW9h?V4MV,:/n`CQmBQlLbs_BjTnjPS,]asAi=XNXPWHail)cee">no!S&7">]?`+/MKnee/D#M)'YVKOU$(s6e!d2$'dHbIVI+Y1tk\/&i-*rCks'lOXH[VcHIi-&WsMNH#c[ts&<>haA+8%qR7n!,>:?.@Dc*s$#pI[g^[8/q`^qf+PuS4%ScDY-iqS#k,o^._TC0<m(8&1HoI?^rL0'#hX/c4`:eZR3lI_i=>+mV_Aq>_Ltno4a7-r!Au/Z2mLfa*48E9i:g`^F2f[`nTdnqdK:f3kbNJaP1n@fM)ff$5GkRr>.ge:hiP6-Z<T%=8[/tiC'VpS@R`L3"61k&nu$sS_5%+/D\h9i4]QXUCrNb;+2EeMVDFLEqQb1lHct^G35YNeo@7K!hH\\+%98CEjVukq4ZD"U432%f_%H~>
+endstream
+endobj
+6 0 obj
+<< /Type /Page
+/Parent 1 0 R
+/MediaBox [ 0 0 612 792 ]
+/Resources 3 0 R
+/Contents 5 0 R
+/Annots 7 0 R
+>>
+endobj
+7 0 obj
+[
+8 0 R
+10 0 R
+12 0 R
+]
+endobj
+8 0 obj
+<< /Type /Annot
+/Subtype /Link
+/Rect [ 102.0 559.666 176.66 547.666 ]
+/C [ 0 0 0 ]
+/Border [ 0 0 0 ]
+/A 9 0 R
+/H /I
+>>
+endobj
+10 0 obj
+<< /Type /Annot
+/Subtype /Link
+/Rect [ 102.0 541.466 171.02 529.466 ]
+/C [ 0 0 0 ]
+/Border [ 0 0 0 ]
+/A 11 0 R
+/H /I
+>>
+endobj
+12 0 obj
+<< /Type /Annot
+/Subtype /Link
+/Rect [ 102.0 523.266 219.344 511.266 ]
+/C [ 0 0 0 ]
+/Border [ 0 0 0 ]
+/A 13 0 R
+/H /I
+>>
+endobj
+14 0 obj
+<< /Length 2200 /Filter [ /ASCII85Decode /FlateDecode ]
+ >>
+stream
+GatU5=`<%a&:W67i*ui,.roq4c#0%2!K+Cl;P7]]@RVjp`Y;M5@7C41_fKH9O]#$Z#e]fTI=*j:qo*CN_)Ep#RDpGBRDsPb)(,9fN6m5rSmsS"p5HuAq"'KahAS?.XhVXH.XtDh0"3SdMmp^``o?UV@57W[e2<#BZ^0<g=Q"IZe'Qlp*rMX'@laF'G$bWc%#_THWDN"<e($2mmZ!Z*[k0E"Xuh)ZrNg_`>"OWtm,pY&T$k70&O!F=QciLn@[S;0[l@GnI<r%OFT5L0qXF=KpUbnr^\mr$5EuTS]TN&P.toBOXFEF4.RuUXD+Rcm,#(LoW(d)%bbLKCK$L.h$BN&:hKe07/#PLCS'8<$Tib>e]#&WkoG4>q95/ePB[!QnAu<NdrCl,$)E_t#FlA]+->;ccHfMZ]R#Wq/)d7fDK2uAYQFkoI>\#,o3tZ<T;u(arWIRp[Q_m>-HI<6)k&m9&fp$+f:V't:>LHb`TEN?:9HU8c5m^B1U+G/`,gZdY(5PU1j_?!,gp<Bm*MUL8DiLtu[<W=h0][n!/:'GNJ:@QCI2:>[F1;b+nbNdJ`)$!Oo"+UEYPl<FW.@LZ&4+Dn=e6"r(9;^c%OB!LklU*S&P0DQ>RKOE=l]LTf"'FnL9_9F&D/Co7<-%GLkuu'QHd;#G,4#j==LZ,oMJd,V9C<'ZpQ6m3pMOEB[+!bn?'996H+7'Zd#0CE)k/+*'!P'`7$3!RD_P+BhUNk]7XA5L3,?:>gOLA+Hu+\fXp@]mTE,9_Y7$MEWk!!gLi]l]aiZ\OEoI9RL=BZ>2BRiNTM2kTXf7?J(_p,"i3T,NoXKA<cSVRMV%3<&F5l&^M?1k;Ro&EH0_*7R)/62^iHta`EX,I4NX=4.8#lO6+qOML%7!-Z"l]J#6C*<\VMEOId^-_Kh!^rO#-N#3/')4b),1gM$n/('2\lJ+"!Ne[2&sG'ep$#OQOak.gZMShG<ZtE^rZjT`.hg9uDggFK@\A)c^>
 36HTV83rbWa$[W=+m-M?OC-*2)QaT8\U0NQgGK(oGeqrsV]._aKj1C7sJVNQ#N30DP[-WQ8f>:#sJHI-6#f5jGJJGadS`&#[Q4=8Hlhf%<,BFPUJIgi`<SUn#7M+PrKogurS.K\'(F<L75!,(oHW;m4)NDB=;aua3`26^n?$ZNk4<@<K)W""-UR'O><Fqp316nZ;mi@TP]u2,;PMNIZSB]H-))3.(2ItZ%F*g!b+<>MP;1Q@q,QUI;\*BZ;d?;`.,n0HWnOg,jk3:"1J;['3Sa"Wm!*$V?Po?u_:7l'!s$(JO+>Ko(U`(:oQR(sUC>8ip8lN,F^Q6lf/$d])Mfh^SH&b8ZkYneMEtdrdg0Q]L9EQm5p@7SLQS2.\T,%r5GDjM@n_*'L-q_#9gB&He"OCMMcRI8l,&J10lIh.nj'j>F4d3FdIeK6Vg0C^%'5"m`;ELT.'M0b,cg=]R>@+pF&FqeP8\"As.N0=Bch4J@75]mo/:I:B[_#L6B+:pS!4,)./$m5*I+nM`XQcY787h=E?WmYa,S!-DN4V?98sV;N$j%sM^jt6\TsaX8n)T%nc'3<jQEfc'f*SDLPYL0l$r*Mi7/[.r0U+0uQMlbFF8/`\fgUBW+V*&l<N\d)9$)[=qt3GG7u!Z^HW;_^)";F=ZF[b<$4k#l_=_7bUEiUU#.RX9kf,eX;;.9:CI(oFS)W+EDHhZekTke\&Q+s(@Dt]FBi0WuiuJM",kO7BGn!]njO4/@lbSq7m-3kX(r[+CiOo3[N,;m`pmafalG:Yp&[X0:U=E_?,,cSX<u:[)790<_ff['4.,rLQo?$g$igC"ZVXbRk2:Y?O`sM\%G7G-Gk/4u$[/C]"3-d0]I\S\F)2g4W^kOcJ#'!\WjpWhM$gZ<pSjC4EFutQ@8MP``pNSU5]#t4K'+q7L%I(65Rkjo&^_+(-FK!/[iWf-E3h`)'`\;ZY>)V&d=\i%clS],-iN2UlnKV`(E!aJu:&K
 L?l1jY=7"jj4k!m-+lJmCtJT(=Lbq'pEpYX/"WX^&(q0q._prU]RrFj^Ug&cZrh/6:M)0bC@/_4hu7hT*hA-]OT3\9b^JPT`,M(FZD[`m;jQl`d+\EL';Js_4_CBP.2DKYD.C3Ra_oqoi=^L!Mhr5Dr7T:j7$qUCK-mGY4a6@F;`EOkQ-V>]tY?BP*!%1Hcao4\_pliN_h+nO;tB'Og=036g/D?~>
+endstream
+endobj
+15 0 obj
+<< /Type /Page
+/Parent 1 0 R
+/MediaBox [ 0 0 612 792 ]
+/Resources 3 0 R
+/Contents 14 0 R
+/Annots 16 0 R
+>>
+endobj
+16 0 obj
+[
+17 0 R
+18 0 R
+19 0 R
+]
+endobj
+17 0 obj
+<< /Type /Annot
+/Subtype /Link
+/Rect [ 183.012 620.466 285.0 608.466 ]
+/C [ 0 0 0 ]
+/Border [ 0 0 0 ]
+/A << /URI (http://ant.apache.org/)
+/S /URI >>
+/H /I
+>>
+endobj
+18 0 obj
+<< /Type /Annot
+/Subtype /Link
+/Rect [ 296.328 607.266 427.656 595.266 ]
+/C [ 0 0 0 ]
+/Border [ 0 0 0 ]
+/A << /URI (http://junit.sourceforge.net/)
+/S /URI >>
+/H /I
+>>
+endobj
+19 0 obj
+<< /Type /Annot
+/Subtype /Link
+/Rect [ 108.0 580.866 265.308 568.866 ]
+/C [ 0 0 0 ]
+/Border [ 0 0 0 ]
+/A << /URI (http://lucene.apache.org/hadoop/)
+/S /URI >>
+/H /I
+>>
+endobj
+21 0 obj
+<<
+ /Title (\376\377\0\61\0\40\0\122\0\145\0\161\0\165\0\151\0\162\0\145\0\155\0\145\0\156\0\164\0\163)
+ /Parent 20 0 R
+ /Next 22 0 R
+ /A 9 0 R
+>> endobj
+22 0 obj
+<<
+ /Title (\376\377\0\62\0\40\0\102\0\165\0\151\0\154\0\144\0\151\0\156\0\147\0\40\0\120\0\151\0\147)
+ /Parent 20 0 R
+ /Prev 21 0 R
+ /Next 23 0 R
+ /A 11 0 R
+>> endobj
+23 0 obj
+<<
+ /Title (\376\377\0\63\0\40\0\122\0\165\0\156\0\156\0\151\0\156\0\147\0\40\0\120\0\151\0\147\0\40\0\120\0\162\0\157\0\147\0\162\0\141\0\155\0\163)
+ /Parent 20 0 R
+ /Prev 22 0 R
+ /A 13 0 R
+>> endobj
+24 0 obj
+<< /Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding /WinAnsiEncoding >>
+endobj
+25 0 obj
+<< /Type /Font
+/Subtype /Type1
+/Name /F5
+/BaseFont /Times-Roman
+/Encoding /WinAnsiEncoding >>
+endobj
+26 0 obj
+<< /Type /Font
+/Subtype /Type1
+/Name /F6
+/BaseFont /Times-Italic
+/Encoding /WinAnsiEncoding >>
+endobj
+27 0 obj
+<< /Type /Font
+/Subtype /Type1
+/Name /F1
+/BaseFont /Helvetica
+/Encoding /WinAnsiEncoding >>
+endobj
+28 0 obj
+<< /Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica-Oblique
+/Encoding /WinAnsiEncoding >>
+endobj
+29 0 obj
+<< /Type /Font
+/Subtype /Type1
+/Name /F7
+/BaseFont /Times-Bold
+/Encoding /WinAnsiEncoding >>
+endobj
+1 0 obj
+<< /Type /Pages
+/Count 2
+/Kids [6 0 R 15 0 R ] >>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 1 0 R
+ /Outlines 20 0 R
+ /PageMode /UseOutlines
+ >>
+endobj
+3 0 obj
+<< 
+/Font << /F3 24 0 R /F5 25 0 R /F1 27 0 R /F6 26 0 R /F2 28 0 R /F7 29 0 R >> 
+/ProcSet [ /PDF /ImageC /Text ] >> 
+endobj
+9 0 obj
+<<
+/S /GoTo
+/D [15 0 R /XYZ 85.0 659.0 null]
+>>
+endobj
+11 0 obj
+<<
+/S /GoTo
+/D [15 0 R /XYZ 85.0 561.866 null]
+>>
+endobj
+13 0 obj
+<<
+/S /GoTo
+/D [15 0 R /XYZ 85.0 491.132 null]
+>>
+endobj
+20 0 obj
+<<
+ /First 21 0 R
+ /Last 23 0 R
+>> endobj
+xref
+0 30
+0000000000 65535 f 
+0000005385 00000 n 
+0000005450 00000 n 
+0000005542 00000 n 
+0000000015 00000 n 
+0000000071 00000 n 
+0000000604 00000 n 
+0000000724 00000 n 
+0000000763 00000 n 
+0000005676 00000 n 
+0000000897 00000 n 
+0000005739 00000 n 
+0000001033 00000 n 
+0000005805 00000 n 
+0000001170 00000 n 
+0000003463 00000 n 
+0000003586 00000 n 
+0000003627 00000 n 
+0000003801 00000 n 
+0000003984 00000 n 
+0000005871 00000 n 
+0000004168 00000 n 
+0000004331 00000 n 
+0000004508 00000 n 
+0000004718 00000 n 
+0000004831 00000 n 
+0000004941 00000 n 
+0000005052 00000 n 
+0000005160 00000 n 
+0000005276 00000 n 
+trailer
+<<
+/Size 30
+/Root 2 0 R
+/Info 4 0 R
+>>
+startxref
+5922
+%%EOF

Added: incubator/pig/site/publish/deployment.xml
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/deployment.xml?rev=591173&view=auto
==============================================================================
--- incubator/pig/site/publish/deployment.xml (added)
+++ incubator/pig/site/publish/deployment.xml Thu Nov  1 17:28:59 2007
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="ISO-8859-1"?><!--
+  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.
+--><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.3//EN" "document-v13.dtd">
+<document>
+  <header>
+    <title>Deploying Pig</title>
+  </header>
+  <body>
+    <section id="req">
+      <title>Requirements</title>
+	<ol>
+	  <li> Java 1.6.x. preferably from Sun Set JAVA_HOME to the root of your Java installation.</li>
+	  <li> Ant build tool: <link href="http://ant.apache.org/">http://ant.apache.org/</link>.</li>
+	  <li> To run unit tests, you also need JUnit: <link href="http://junit.sourceforge.net/">http://junit.sourceforge.net/</link>.</li>
+	  <li> To run pig programs, you need access to a hadoop cluster: <link href="http://lucene.apache.org/hadoop/">http://lucene.apache.org/hadoop/</link>.</li>
+	</ol>
+    </section>
+    <section>
+      <title> Builiding Pig </title>
+        <ol>
+	  <li> Checkout pig code from svn: <em>svn co http://svn.apache.org/repos/asf/incubator/pig/trunk</em>. </li>
+	  <li> Build the code from the top directory: <em>ant</em>. If the build is successful, you should see <em>pig.jar</em> created in that directory. </li>	
+        </ol>
+    </section>
+    <section>
+      <title> Running Pig Programs </title>
+      	<p>
+There are two ways to run pig. The first way is by using <em>pig.pl</em> that can be found in the <em>scripts</em> directory of your deployment. Useing the script would require having Perl installed on your machine. You can use it by issueing the following command: <em> pig.pl -cp pig.jar:HADOOPSITEPATH</em> where <em>HADOOPSITEPATH</em> is the directory in which <em>hadoop-site.xml</em> file for your Hadoop cluster is located. Example: <em>pig.pl -cp pig.jar:/hadoop/conf</em>
+      	</p>
+      	<p>
+The second way to do this is by using java directly: <em>java -cp pig.jar:HADOOPSITEPATH org.apache.pig.Main</em>
+      	</p>
+	<p>
+Regardless of how you invoke pig, the commands that you specified above will take to to an interactive shell called <em>grunt</em> where you can run DFS and Pig commands. <strong>The documentation about grunt will be posted on wiki soon.</strong> If you want to run Pig in batch mode, you can append your pig script to either of the commands above. Example: <em>pig.pl -cp pig.jar:/hadoop/conf myscript.pig</em> or <em>java -cp  pig.jar:/hadoop/conf  myscript.pig</em>.
+	</p>
+    </section>
+  </body>
+</document>
\ No newline at end of file

Modified: incubator/pig/site/publish/index.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/index.html?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/index.html (original)
+++ incubator/pig/site/publish/index.html Thu Nov  1 17:28:59 2007
@@ -116,6 +116,9 @@
 <div class="menuitem">
 <a href="version_control.html">Version Control</a>
 </div>
+<div class="menuitem">
+<a href="deployment.html">Deployment</a>
+</div>
 </div>
 <div id="credit">
 <hr>
@@ -197,8 +200,8 @@
 <div class="section">
 <ol>
 	
-<li>How to download <strong>-- coming soon</strong>
-</li>
+<li>
+<a href="deployment.html">How to deploy it</a>.</li>
         
 <li>
 <a href="http://wiki.apache.org/pig/">Learn about</a> Pig by reading the wiki documentation <strong>-- still under construction.</strong>
@@ -210,7 +213,7 @@
 </ol>
 </div>
     
-<a name="N1005A"></a><a name="Getting+Involved"></a>
+<a name="N1005B"></a><a name="Getting+Involved"></a>
 <h2 class="h3"> Getting Involved </h2>
 <div class="section">
 <p>

Modified: incubator/pig/site/publish/index.pdf
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/index.pdf?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/index.pdf (original)
+++ incubator/pig/site/publish/index.pdf Thu Nov  1 17:28:59 2007
@@ -69,10 +69,10 @@
 >>
 endobj
 16 0 obj
-<< /Length 2531 /Filter [ /ASCII85Decode /FlateDecode ]
+<< /Length 2647 /Filter [ /ASCII85Decode /FlateDecode ]
  >>
 stream
-GatU599\DE&\cSp@!p(6eIG%Ohg7rJc?e(p4,N?Eq2ii%U*'a[^'oOeOahct,XF=:;AqX)2,t"odI7(KDU)=EG7WRVSkmJJHedLq]Yg</D;_&TAK,k08!Lr]d!I=WJ%tfG35"q`j#qhrGG=VfIG`pm,`YgtMGS6)HQ!c!DqO^>VI4^WbAqn1-hM#iMY$;23_YSA-4bJbm[-K''\>m:4u,9lo"%^ciSW8a7@T=sE4dk!1G>u`lHh;f\?iN"JK(L0,GB7K^GM*(jk0#?gc;<PE#Mk$,V.D,CjFbLHoF2J$%8==U=r8;Ztsg>b.36"^n4cW1@:I'O'M3Jc",3T)A?laH9@p;MA:_Eg6'j'WR&b=mV6C;&im:e5Hn02LDCkQC96J2gD9"^\ji%@XjX<!Jea3hq>o8OB,`1#;=HpM%cOH=PaBirjA$bXZ;t#IRbeh#2-qo)G%B,5S,LPWMWE%I?VFdjq'<BII-JWb-NhKl-W5kc^N21)=.H7TZ7FRqUHH6$mIIi)7"MPQq1i/,[5e_kikMn6l5hPPS>6hp@$Ns\k5H`G6sXXjVgE$Dm]pf8EeY6=lNBYTKXQRqe6V%ki[c?f4-WeF![4"mTAOU.+R^*%MPCJbSFh5=]=MmM)@*bNbB*XX/Qp?X-*YYcf1H?%'^%]C;U&QjbHA]qDIU%YoG$MA3fIS;HuEt?]ap1JD)@d3U8Uit#!VR`;[*H:"BY%^Ie,5fXg]ng8X'_9IASh>0-gpYR!(E_#uj)BN4_,t6Re=/-+Q@JTTK@6FJXGEC<-ER.@p^g!sTa2*sIb^[6j"/4E!q'0:T&S6D'V1i&*sMo*$eV9EJrG9#MHU<IXIaT%$Fs.9+o+f>`W5faBFF8>._s@NWb$d%W8n]]@!8@>Up>LR*J,"j:r2eWNqTbV^3-O-('pK0nY9kq0]WHA;[a@Wn%'Tp?M1&2cr!T"8B<E%0"9*'nDZR6!!fb"2r")540U>T+gB]u-i'@1+2
 _n3_*d;jdD,q*Y)pV?e:Cf`5.a%#knT1pthM,tps=mA;9S0X3Y_SK[17:e3:fc`h%_FDe\QW<K@PKjFj3F]NfP,V15sc6`Oiq_2tZ,bCG?3gmCe2K`brpl+fhJX)7@X`C?Y<QVu#>KdNk0%/0A>rhbhA0?%Z8e8'nd=`Mo$m7i`^PC*cLn8Nd<_/)Ia!rT-Mp$klc%5;kU(I0KXbM3ZE2;p`?Q_lVK<P_DbQ)rP;tUI1]5O`tL*Sb<4$;4T49qt&Dd(iDZgg6JQP"fo&2&YF2Rk;oHQRV<ZN&i14)B=i]_`.UR5ONph/LPm]e>,IRF?TF'5/mlEc6=!j5!eSIMj]8$^-Ia\7X:em^08nBqic)mBFp<fFoN<NuqJNJ;C.6c".7ZCJd^&T.J2,<i8mD0\j'O.Gd+l7uMq<0C'6ThAbDOo[1:GBh/:i#"'$/!CKHZCFH;mH;\u,P"(:Pnp^"t)/dWM2aQ.G"hA^(\p=>F0K;s'_A](s:25'!(ktKPd"hcalI'Q>pf"t=#SMHiS-#.@.*VOs.E_'KY2,*0B?d4na2*IoqAGtuAlB&KG3l#H"Teb(k:dCCHG8t;+s#N9e)C7$Qt>*V4&n_oG1Z4/Mb043=5a%j1R0p#:phaTl[VGj.(.o.Z;O-)-e-L*-n_4b,*Ds8g*[[oKYt&k:KCd1+?/N`ShjNOWLp.G#,Ki[\.k(N7DSI-LZuC+dFdt=17)kD<\G/p+/a`joWls@>=AI&F'E:rPB[_M6Lo<Ts/qTCl0BmoXp)=/PSOFka1Jn*h8d)i*44Ls6^e&ZgZf)_<0*H&qT+GrD?P'/ngCICFGJG^^C(3dJm's<VU1]l?8ph@6ol+roukd`Lsb#J.Pb*W((VNr0+tsT$,S,%(l&LnCF8Dq2t<)$0hM=W9%b\CITnte`UafEV;PGi7M\8<jE6t`TppIgi2`BlSC*g9QE4;I^UJ`Y/Z_gZL^3cZ/TN5!?Zrf1Gba-]P;@$)A*B
 3f*FU&h3a_?%k?p'dXE.uEDl*&^i`rt9"Anac2nIo,bG)fhhDndQ1bc#pgK(piS[lH20VLJsjqGcF45R$L`2AVq(I(u"kf^p@%]/uCqoabe_2(Re=-KV/Iq8RZ1;tEH6DnPldDHRls3dm=!;OuY7]0>cJN5s!b!1brB.$kO1XM9'SM&A]A`lA[\7)#BAu(ol+:In5n$Xcs>/I.6#C?D5C'XM%,Ii.tp`hRedhWLMbJ2klBcN;S`\_p/9Oi`/hpl1rT.<3%]>$/tER=A3">pA2#fd1RMl@GC//VfA=g+mFW(jIq]bHR>!pBhJ).rPA$)=p%-8N$n4rmuUJ!,ZF7EPR\o/3b(/h5+9'=@1*0-qde>6m*O7\Q0a7Q7'XYIqp]j=sAo`7-^@GQdU4M]:88cV4<b+c.MB%BPSEQhJm95LU^*h>m=/$V?dh@N&X$<(<#Kram!B84jP'5YU,jWlC/+$^4Bb?I[SLF-bg)lp?r(&q0A>7fIM(RnYZ/L2TNZ@3VWKN6/&K1*`^U>!M!=LJG<FB<J`I@Rp%Drr?8OqCM~>
+Gat=-99\*g'#)\qi9%=gPm8)@[kCrWf!1E2ZFe5SEesGi;36GO^&in];1AI%8:kYSTJUhg>SV46IX_6<2t...@7>onKp7^g[,oU(8/giQ5915U9PQVCI=I*g,P,rEk>]Wd<QmlH+-q#\hg&aI=G??O'Z`RaK=E]cL.ZBNRp0`*S'P97aTPh\NHZhd<,_a)UTrW?Al:/@3K2]1q(-oC
 f+1YBI@Hs';Zg&u5&O62oJS$c_BU%GPWMSl0ThG5s2+7OsM:E5Q%65ej6@p0TJpS9+ZdZT]/T=E5e/DJtk>j0i"BQf-CaO[Y#QqP(ii1$safJFK`i3S01X>"a='Fa/XjsE`9(mDaiSIC>OHt4Xb0ch-"0p$HH?:`rB't1X!"%Z^4]DnZoR%T\+XR-N+Y,s=bPPqkU"sQS+k6<+L...@l>0ZmUgg88&:GSU)2L89b`WeTB%J8l3GcZ&?49IW-q*O_(ma1b':XR&#fWNY^X\bLK?8ph@7(O'E%=@]HLm`/)<Fi>GJ>"D%,12m)<j:K_Ro*UDfG:U#fh,rmPLP
 ZUPc_CBn#N@tGe2<r.6&)sOm/]Vo!7eA68eY;RBMW`bhBon*gl4fi_OK#AHs/3#4X[0XFf5bj4F54K1:ZCY>3[*opq\efN8aJiU=raIrGmP`6:3=pU*b"?`VIpkFTJIJc@(k#C^Y2I,UX(0LGjk.CPeQ[9>(cs,F&?aIA514)B3"eg3NQ".&PF$OV$E(uG@_O1.?*q&)ll1gA1(mb`]Gnbm/5r.r*oi)ntMXD_i-M<aP:Q:T5`H!OVHd+4"sfDJ3jHtg$&VcWeIPqOi65DU\&4^M\Ud#l;\/mUtYmm7#e@@k,B\t>fA$hg+Z[OcoMERU]c^&JS-KDe^d0&I?A]`FsD$]N!b5AnIt%S:,=)S@2i1#eNAC9cjGQ(Y#Q:QBlDo_#9*1M@]co\a:82+!B.'2?+3g01l;oW$V<!N@Z$DP/Apg9rJ>*Z)kdaOm6e(#^A4ZV:!D9)_VVYE9Q!;5q=&Te@M;91as2(':A]..e-SmO'pfSJV+C4M%JSR$o4kNmKofB#jQuF=)L$OMiuQ%AApP9Da"T>Nh,5DZK_o$V?eS`\c-;Ul6MprQR<lOH_*=!HAL&;)O@rfU[HU&#-e?S$Nfa@iqF56hJnV)Yru]DDoUa)F#/NLUfDSBAB#3-]@+D?5k6(iR$n.d@%IK6=WOWgA_1?'jsi~>
 endstream
 endobj
 17 0 obj
@@ -91,6 +91,7 @@
 21 0 R
 22 0 R
 23 0 R
+24 0 R
 ]
 endobj
 19 0 obj
@@ -107,6 +108,17 @@
 20 0 obj
 << /Type /Annot
 /Subtype /Link
+/Rect [ 108.0 318.079 189.0 306.079 ]
+/C [ 0 0 0 ]
+/Border [ 0 0 0 ]
+/A << /URI (deployment.html)
+/S /URI >>
+/H /I
+>>
+endobj
+21 0 obj
+<< /Type /Annot
+/Subtype /Link
 /Rect [ 108.0 304.879 165.648 292.879 ]
 /C [ 0 0 0 ]
 /Border [ 0 0 0 ]
@@ -115,7 +127,7 @@
 /H /I
 >>
 endobj
-21 0 obj
+22 0 obj
 << /Type /Annot
 /Subtype /Link
 /Rect [ 108.0 291.679 155.004 279.679 ]
@@ -126,7 +138,7 @@
 /H /I
 >>
 endobj
-22 0 obj
+23 0 obj
 << /Type /Annot
 /Subtype /Link
 /Rect [ 147.996 186.545 191.304 174.545 ]
@@ -137,7 +149,7 @@
 /H /I
 >>
 endobj
-23 0 obj
+24 0 obj
 << /Type /Annot
 /Subtype /Link
 /Rect [ 148.668 173.345 203.016 161.345 ]
@@ -148,66 +160,66 @@
 /H /I
 >>
 endobj
-25 0 obj
+26 0 obj
 <<
  /Title (\376\377\0\61\0\40\0\116\0\145\0\167\0\163)
- /Parent 24 0 R
- /First 26 0 R
- /Last 26 0 R
- /Next 27 0 R
+ /Parent 25 0 R
+ /First 27 0 R
+ /Last 27 0 R
+ /Next 28 0 R
  /Count -1
  /A 9 0 R
 >> endobj
-26 0 obj
+27 0 obj
 <<
  /Title (\376\377\0\61\0\56\0\61\0\40\0\120\0\151\0\147\0\40\0\151\0\163\0\40\0\151\0\156\0\143\0\165\0\142\0\141\0\164\0\151\0\156\0\147)
- /Parent 25 0 R
+ /Parent 26 0 R
  /A 11 0 R
 >> endobj
-27 0 obj
+28 0 obj
 <<
  /Title (\376\377\0\62\0\40\0\107\0\145\0\164\0\164\0\151\0\156\0\147\0\40\0\123\0\164\0\141\0\162\0\164\0\145\0\144)
- /Parent 24 0 R
- /Prev 25 0 R
- /Next 28 0 R
+ /Parent 25 0 R
+ /Prev 26 0 R
+ /Next 29 0 R
  /A 13 0 R
 >> endobj
-28 0 obj
+29 0 obj
 <<
  /Title (\376\377\0\63\0\40\0\107\0\145\0\164\0\164\0\151\0\156\0\147\0\40\0\111\0\156\0\166\0\157\0\154\0\166\0\145\0\144)
- /Parent 24 0 R
- /Prev 27 0 R
+ /Parent 25 0 R
+ /Prev 28 0 R
  /A 15 0 R
 >> endobj
-29 0 obj
+30 0 obj
 << /Type /Font
 /Subtype /Type1
 /Name /F3
 /BaseFont /Helvetica-Bold
 /Encoding /WinAnsiEncoding >>
 endobj
-30 0 obj
+31 0 obj
 << /Type /Font
 /Subtype /Type1
 /Name /F5
 /BaseFont /Times-Roman
 /Encoding /WinAnsiEncoding >>
 endobj
-31 0 obj
+32 0 obj
 << /Type /Font
 /Subtype /Type1
 /Name /F1
 /BaseFont /Helvetica
 /Encoding /WinAnsiEncoding >>
 endobj
-32 0 obj
+33 0 obj
 << /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica-Oblique
 /Encoding /WinAnsiEncoding >>
 endobj
-33 0 obj
+34 0 obj
 << /Type /Font
 /Subtype /Type1
 /Name /F7
@@ -222,13 +234,13 @@
 2 0 obj
 << /Type /Catalog
 /Pages 1 0 R
- /Outlines 24 0 R
+ /Outlines 25 0 R
  /PageMode /UseOutlines
  >>
 endobj
 3 0 obj
 << 
-/Font << /F3 29 0 R /F5 30 0 R /F1 31 0 R /F2 32 0 R /F7 33 0 R >> 
+/Font << /F3 30 0 R /F5 31 0 R /F1 32 0 R /F2 33 0 R /F7 34 0 R >> 
 /ProcSet [ /PDF /ImageC /Text ] >> 
 endobj
 9 0 obj
@@ -255,53 +267,54 @@
 /D [17 0 R /XYZ 85.0 272.679 null]
 >>
 endobj
-24 0 obj
+25 0 obj
 <<
- /First 25 0 R
- /Last 28 0 R
+ /First 26 0 R
+ /Last 29 0 R
 >> endobj
 xref
-0 34
+0 35
 0000000000 65535 f 
-0000006342 00000 n 
-0000006407 00000 n 
-0000006499 00000 n 
+0000006630 00000 n 
+0000006695 00000 n 
+0000006787 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
 0000000655 00000 n 
 0000000775 00000 n 
 0000000821 00000 n 
-0000006622 00000 n 
+0000006910 00000 n 
 0000000956 00000 n 
-0000006685 00000 n 
+0000006973 00000 n 
 0000001093 00000 n 
-0000006751 00000 n 
+0000007039 00000 n 
 0000001230 00000 n 
-0000006817 00000 n 
+0000007105 00000 n 
 0000001366 00000 n 
-0000003990 00000 n 
-0000004113 00000 n 
-0000004168 00000 n 
-0000004367 00000 n 
-0000004546 00000 n 
-0000004716 00000 n 
-0000004889 00000 n 
-0000006883 00000 n 
-0000005061 00000 n 
-0000005216 00000 n 
-0000005404 00000 n 
-0000005599 00000 n 
-0000005786 00000 n 
-0000005899 00000 n 
-0000006009 00000 n 
-0000006117 00000 n 
-0000006233 00000 n 
+0000004106 00000 n 
+0000004229 00000 n 
+0000004291 00000 n 
+0000004490 00000 n 
+0000004655 00000 n 
+0000004834 00000 n 
+0000005004 00000 n 
+0000005177 00000 n 
+0000007171 00000 n 
+0000005349 00000 n 
+0000005504 00000 n 
+0000005692 00000 n 
+0000005887 00000 n 
+0000006074 00000 n 
+0000006187 00000 n 
+0000006297 00000 n 
+0000006405 00000 n 
+0000006521 00000 n 
 trailer
 <<
-/Size 34
+/Size 35
 /Root 2 0 R
 /Info 4 0 R
 >>
 startxref
-6934
+7222
 %%EOF

Modified: incubator/pig/site/publish/issue_tracking.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/issue_tracking.html?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/issue_tracking.html (original)
+++ incubator/pig/site/publish/issue_tracking.html Thu Nov  1 17:28:59 2007
@@ -116,6 +116,9 @@
 <div class="menuitem">
 <a href="version_control.html">Version Control</a>
 </div>
+<div class="menuitem">
+<a href="deployment.html">Deployment</a>
+</div>
 </div>
 <div id="credit"></div>
 <div id="roundbottom">

Modified: incubator/pig/site/publish/linkmap.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/linkmap.html?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/linkmap.html (original)
+++ incubator/pig/site/publish/linkmap.html Thu Nov  1 17:28:59 2007
@@ -116,6 +116,9 @@
 <div class="menuitem">
 <a href="version_control.html">Version Control</a>
 </div>
+<div class="menuitem">
+<a href="deployment.html">Deployment</a>
+</div>
 </div>
 <div id="credit"></div>
 <div id="roundbottom">
@@ -212,6 +215,12 @@
 <ul>
 <li>
 <a href="version_control.html">Version Control</a>&nbsp;&nbsp;___________________&nbsp;&nbsp;<em>vcs</em>
+</li>
+</ul>
+    
+<ul>
+<li>
+<a href="deployment.html">Deployment</a>&nbsp;&nbsp;___________________&nbsp;&nbsp;<em>deploy</em>
 </li>
 </ul>
   

Modified: incubator/pig/site/publish/linkmap.pdf
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/linkmap.pdf?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/linkmap.pdf (original)
+++ incubator/pig/site/publish/linkmap.pdf Thu Nov  1 17:28:59 2007
@@ -5,10 +5,10 @@
 /Producer (FOP 0.20.5) >>
 endobj
 5 0 obj
-<< /Length 765 /Filter [ /ASCII85Decode /FlateDecode ]
+<< /Length 797 /Filter [ /ASCII85Decode /FlateDecode ]
  >>
 stream
-GatUrd;GF-'Sc(%$=C4Xoo--b>c-m4D<do...@Otg>FsTBeZPI1lg8c>QdAM++0I.4=T~>
+GatUr?#Q2d'Sc)P'u!?pl5=(N\4iA\g=/]rMOKHGROC.P(P4(XM>H[R6W0CQP_g\an:s!lA*6#K\VZh09+PD3&W#!JdZ;=4@,n`sWNQ[r4iRbZ*Xb6?#<uj...@aX>Omja&$CFcT^>`-R(KA(D%7KhRrK3\TJraF#`\d0@O;Ti<A2*C?Ye,]k^j<amGRRh&do5ITOjGk?_"n1<`5s+t4j?cTA1IiMpMRBYTST#lSNe(q3F,Y!C"9$.[>S)abPT^fcs<Fa]F.cY'k-1&PYAa6)[.gdj_DCp!t%_DX2D-Q2t';rQ%9:8Moe1&L1?h<atrqArCkl1f>1ARf2F8C_ZTne979%o"_^%F7'?JAAR]iSM#6_=G.l6D*6-okBk&'g.e@Bc1bQS8I6$+26"QVnYU$:58$^XK`Y`EOcLgY1.(c^;;@LCs*ZP%JJE2"Mndm/Ebbf>kD.7[C@%e+V.?en\E#3j!R:osm-9%m5PXl$i`"-9b*~>
 endstream
 endobj
 6 0 obj
@@ -72,17 +72,17 @@
 xref
 0 12
 0000000000 65535 f 
-0000001588 00000 n 
-0000001646 00000 n 
-0000001696 00000 n 
+0000001620 00000 n 
+0000001678 00000 n 
+0000001728 00000 n 
 0000000015 00000 n 
 0000000071 00000 n 
-0000000927 00000 n 
-0000001033 00000 n 
-0000001145 00000 n 
-0000001254 00000 n 
-0000001364 00000 n 
-0000001472 00000 n 
+0000000959 00000 n 
+0000001065 00000 n 
+0000001177 00000 n 
+0000001286 00000 n 
+0000001396 00000 n 
+0000001504 00000 n 
 trailer
 <<
 /Size 12
@@ -90,5 +90,5 @@
 /Info 4 0 R
 >>
 startxref
-1816
+1848
 %%EOF

Modified: incubator/pig/site/publish/mailing_lists.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/mailing_lists.html?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/mailing_lists.html (original)
+++ incubator/pig/site/publish/mailing_lists.html Thu Nov  1 17:28:59 2007
@@ -116,6 +116,9 @@
 <div class="menuitem">
 <a href="version_control.html">Version Control</a>
 </div>
+<div class="menuitem">
+<a href="deployment.html">Deployment</a>
+</div>
 </div>
 <div id="credit"></div>
 <div id="roundbottom">

Modified: incubator/pig/site/publish/version_control.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/version_control.html?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/version_control.html (original)
+++ incubator/pig/site/publish/version_control.html Thu Nov  1 17:28:59 2007
@@ -116,6 +116,9 @@
 <div class="menupage">
 <div class="menupagetitle">Version Control</div>
 </div>
+<div class="menuitem">
+<a href="deployment.html">Deployment</a>
+</div>
 </div>
 <div id="credit"></div>
 <div id="roundbottom">

Modified: incubator/pig/site/publish/whoweare.html
URL: http://svn.apache.org/viewvc/incubator/pig/site/publish/whoweare.html?rev=591173&r1=591172&r2=591173&view=diff
==============================================================================
--- incubator/pig/site/publish/whoweare.html (original)
+++ incubator/pig/site/publish/whoweare.html Thu Nov  1 17:28:59 2007
@@ -116,6 +116,9 @@
 <div class="menuitem">
 <a href="version_control.html">Version Control</a>
 </div>
+<div class="menuitem">
+<a href="deployment.html">Deployment</a>
+</div>
 </div>
 <div id="credit"></div>
 <div id="roundbottom">