You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ch...@apache.org on 2013/08/05 19:49:38 UTC

svn commit: r1510627 - in /pig/trunk: CHANGES.txt src/docs/src/documentation/content/xdocs/udf.xml test/org/apache/pig/test/TestScriptUDF.java

Author: cheolsoo
Date: Mon Aug  5 17:49:37 2013
New Revision: 1510627

URL: http://svn.apache.org/r1510627
Log:
PIG-3243: Documentation error (sarutak via cheolsoo)

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/src/docs/src/documentation/content/xdocs/udf.xml
    pig/trunk/test/org/apache/pig/test/TestScriptUDF.java

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1510627&r1=1510626&r2=1510627&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Mon Aug  5 17:49:37 2013
@@ -208,6 +208,8 @@ PIG-3013: BinInterSedes improve chararra
 
 BUG FIXES
 
+PIG-3243: Documentation error (sarutak via cheolsoo)
+
 PIG-3210: Pig fails to start when it cannot write log to log files (mengsungwu via cheolsoo)
 
 PIG-3392: Document STARTSWITH and ENDSWITH UDFs (sriramkrishnan via cheolsoo)

Modified: pig/trunk/src/docs/src/documentation/content/xdocs/udf.xml
URL: http://svn.apache.org/viewvc/pig/trunk/src/docs/src/documentation/content/xdocs/udf.xml?rev=1510627&r1=1510626&r2=1510627&view=diff
==============================================================================
--- pig/trunk/src/docs/src/documentation/content/xdocs/udf.xml (original)
+++ pig/trunk/src/docs/src/documentation/content/xdocs/udf.xml Mon Aug  5 17:49:37 2013
@@ -1528,7 +1528,7 @@ b = foreach a generate myfuncs.helloworl
   
 <!-- ++++++++++++++++++++ -->
 <title>Importing Modules</title>
-<p>You can import Python modules in your Python script. Pig resolves Python dependencies recursively, which means Pig will automatically ship all dependent Python modules to the backend. Python modules should be found in the jython search path: JYTHON_HOME, JYTHON_PATH, or current directory.</p>
+<p>You can import Python modules in your Python script. Pig resolves Python dependencies recursively, which means Pig will automatically ship all dependent Python modules to the backend. Python modules should be found in the jython search path: JYTHON_HOME, JYTHONPATH, or current directory.</p>
 </section>
 
 <!-- ++++++++++++++++++++ -->

Modified: pig/trunk/test/org/apache/pig/test/TestScriptUDF.java
URL: http://svn.apache.org/viewvc/pig/trunk/test/org/apache/pig/test/TestScriptUDF.java?rev=1510627&r1=1510626&r2=1510627&view=diff
==============================================================================
--- pig/trunk/test/org/apache/pig/test/TestScriptUDF.java (original)
+++ pig/trunk/test/org/apache/pig/test/TestScriptUDF.java Mon Aug  5 17:49:37 2013
@@ -143,7 +143,7 @@ public class TestScriptUDF{
      * the first module.
      *
      * to use a jython install, the Lib dir must be in the jython search path
-     * via env variable JYTHON_HOME=jy_home or JYTHON_PATH=jy_home/Lib:... or
+     * via env variable JYTHON_HOME=jy_home or JYTHONPATH=jy_home/Lib:... or
      * jython-standalone.jar should be in the classpath
      * 
      * Left in for now as we don't have paths to include other scripts in a