You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by ka...@apache.org on 2011/09/14 04:25:44 UTC

svn commit: r1170415 - in /incubator/oozie/trunk: examples/src/main/apps/custom-main/ examples/src/main/apps/demo/ examples/src/main/apps/pig/ utils/dbutils/updatescripts/ webapp/src/main/webapp/

Author: kamrul
Date: Wed Sep 14 02:25:43 2011
New Revision: 1170415

URL: http://svn.apache.org/viewvc?rev=1170415&view=rev
Log:
Adding Apache License 2.0 missing sql/pig/js

Modified:
    incubator/oozie/trunk/examples/src/main/apps/custom-main/id.pig
    incubator/oozie/trunk/examples/src/main/apps/demo/id.pig
    incubator/oozie/trunk/examples/src/main/apps/pig/id.pig
    incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-2.2.5.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.0.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.1.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.1.0.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.0.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.1.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.0.0-to-3.0.1.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.x-to-3.1.0.sql
    incubator/oozie/trunk/utils/dbutils/updatescripts/upgradescript-2.x-to-3.0.0.sql
    incubator/oozie/trunk/webapp/src/main/webapp/json2.js

Modified: incubator/oozie/trunk/examples/src/main/apps/custom-main/id.pig
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/examples/src/main/apps/custom-main/id.pig?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/examples/src/main/apps/custom-main/id.pig (original)
+++ incubator/oozie/trunk/examples/src/main/apps/custom-main/id.pig Wed Sep 14 02:25:43 2011
@@ -1,3 +1,20 @@
+-- 
+-- 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.
+-- 
 A = load '$INPUT' using PigStorage(':');
 B = foreach A generate $0 as id;
 store B into '$OUTPUT' USING PigStorage();

Modified: incubator/oozie/trunk/examples/src/main/apps/demo/id.pig
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/examples/src/main/apps/demo/id.pig?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/examples/src/main/apps/demo/id.pig (original)
+++ incubator/oozie/trunk/examples/src/main/apps/demo/id.pig Wed Sep 14 02:25:43 2011
@@ -1,3 +1,20 @@
+-- 
+-- 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.
+-- 
 A = load '$INPUT' using PigStorage(':');
 B = foreach A generate $0 as id;
 store B into '$OUTPUT' USING PigStorage();

Modified: incubator/oozie/trunk/examples/src/main/apps/pig/id.pig
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/examples/src/main/apps/pig/id.pig?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/examples/src/main/apps/pig/id.pig (original)
+++ incubator/oozie/trunk/examples/src/main/apps/pig/id.pig Wed Sep 14 02:25:43 2011
@@ -1,3 +1,20 @@
+-- 
+-- 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.
+-- 
 A = load '$INPUT' using PigStorage(':');
 B = foreach A generate $0 as id;
 store B into '$OUTPUT' USING PigStorage();

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-2.2.5.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-2.2.5.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-2.2.5.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-2.2.5.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 # please replace "OOZIEDB" to your schema name
 
 CREATE TABLE "OOZIEDB"."VALIDATE_CONN" 

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.0.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.0.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.0.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.0.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 # please replace "OOZIEDB" to your schema name
 
 CREATE TABLE "OOZIEDB"."VALIDATE_CONN" 

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.1.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.1.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.1.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.0.1.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 # please replace "OOZIEDB" to your schema name
 
  CREATE TABLE "OOZIEDB"."COORD_ACTIONS" 

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.1.0.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.1.0.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.1.0.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/dbscripts-3.1.0.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 # please replace "OOZIEDB" to your schema name
 
  CREATE TABLE "OOZIEDB"."COORD_ACTIONS" 

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.0.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.0.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.0.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.0.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 ALTER TABLE COORD_ACTIONS ADD PENDING NUMBER DEFAULT 0;
 ALTER TABLE COORD_JOBS ADD PENDING NUMBER DEFAULT 0;
 ALTER TABLE COORD_JOBS ADD MAT_THROTTLING NUMBER DEFAULT 12;

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.1.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.1.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.1.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-2.x-to-3.0.1.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 ALTER TABLE WF_JOBS ADD PARENT_ID VARCHAR2(255);
 ALTER TABLE WF_ACTIONS MODIFY EXECUTION_PATH VARCHAR2(1024);
 ALTER TABLE COORD_JOBS ADD PENDING NUMBER DEFAULT 0;

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.0.0-to-3.0.1.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.0.0-to-3.0.1.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.0.0-to-3.0.1.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.0.0-to-3.0.1.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 ALTER TABLE WF_JOBS DROP PARENTID;
 ALTER TABLE WF_JOBS ADD PARENT_ID VARCHAR2(255);
 ALTER TABLE WF_ACTIONS MODIFY EXECUTION_PATH VARCHAR2(1024);

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.x-to-3.1.0.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.x-to-3.1.0.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.x-to-3.1.0.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/updatescripts-3.x-to-3.1.0.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,20 @@
+-- 
+-- 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.
+-- 
 ALTER TABLE WF_ACTIONS ADD USER_RETRY_COUNT NUMBER DEFAULT 0;
 ALTER TABLE WF_ACTIONS ADD USER_RETRY_MAX NUMBER DEFAULT 0;
 ALTER TABLE WF_ACTIONS ADD USER_RETRY_INTERVAL NUMBER DEFAULT 0;
\ No newline at end of file

Modified: incubator/oozie/trunk/utils/dbutils/updatescripts/upgradescript-2.x-to-3.0.0.sql
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/utils/dbutils/updatescripts/upgradescript-2.x-to-3.0.0.sql?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/utils/dbutils/updatescripts/upgradescript-2.x-to-3.0.0.sql (original)
+++ incubator/oozie/trunk/utils/dbutils/updatescripts/upgradescript-2.x-to-3.0.0.sql Wed Sep 14 02:25:43 2011
@@ -1,3 +1,21 @@
+-- 
+-- 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.
+-- 
+
 # please replace "OOZIEDB" to your schema name
 
 UPDATE OOZIEDB.COORD_JOBS

Modified: incubator/oozie/trunk/webapp/src/main/webapp/json2.js
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/webapp/src/main/webapp/json2.js?rev=1170415&r1=1170414&r2=1170415&view=diff
==============================================================================
--- incubator/oozie/trunk/webapp/src/main/webapp/json2.js (original)
+++ incubator/oozie/trunk/webapp/src/main/webapp/json2.js Wed Sep 14 02:25:43 2011
@@ -1,3 +1,20 @@
+/**
+ * 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.
+ */
 /*
  http://www.JSON.org/json2.js
  2008-11-19