You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by wo...@apache.org on 2010/07/22 20:45:14 UTC

svn commit: r966796 - in /incubator/oodt/trunk/workflow/src: main/resources/ main/resources/examples/ site/resources/css/

Author: woollard
Date: Thu Jul 22 18:45:14 2010
New Revision: 966796

URL: http://svn.apache.org/viewvc?rev=966796&view=rev
Log:
adding apache headers to workflow subproject. toward OODT-3

Modified:
    incubator/oodt/trunk/workflow/src/main/resources/examples/backwardsTestWorkflow.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/conditions.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/events.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/externalScript.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/longWorkflow.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/mailWorkflow.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/tasks.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/testMetError.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/testMetadataUpdate.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/testStatusUpdate.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/examples/testWorkflow.workflow.xml
    incubator/oodt/trunk/workflow/src/main/resources/workflow.sql
    incubator/oodt/trunk/workflow/src/main/resources/workflow_oracle_create_sequences.sql
    incubator/oodt/trunk/workflow/src/site/resources/css/guides.css

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/backwardsTestWorkflow.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/backwardsTestWorkflow.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/backwardsTestWorkflow.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/backwardsTestWorkflow.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,6 +1,22 @@
+<!--
+  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.
+-->
 <cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="backwardsTestWorkflow" id="urn:oodt:backwardsTestWorkflow">
  <tasks>
    <task id="urn:oodt:GoodbyeWorld"/>
    <task id="urn:oodt:HelloWorld"/>
  </tasks>
-</cas:workflow>
\ No newline at end of file
+</cas:workflow>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/conditions.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/conditions.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/conditions.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/conditions.xml Thu Jul 22 18:45:14 2010
@@ -1,10 +1,26 @@
-<cas:conditions xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas">
-    <condition id="urn:oodt:TrueCondition" name="True Condition" class="org.apache.oodt.cas.workflow.examples.TrueCondition"/>   
+<!--
+  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.
+-->
+<cas:conditions xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas">
+    <condition id="urn:oodt:TrueCondition" name="True Condition" class="org.apache.oodt.cas.workflow.examples.TrueCondition"/>
     <condition id="urn:oodt:FalseCondition" name="False Condition" class="org.apache.oodt.cas.workflow.examples.FalseCondition"/>
-    <condition id="urn:oodt:LongCondition" name="Long Condition" class="org.apache.oodt.cas.workflow.examples.LongCondition"/>
-    <condition id="urn:oodt:CheckForMetadataKeys" name="Metadata Key Check" class="org.apache.oodt.cas.workflow.examples.CheckForMetadataKeys">
-        <configuration>
-            <property name="reqMetKeys" value="Met1,Met2,Met3"/>
-        </configuration>
-    </condition>    
+    <condition id="urn:oodt:LongCondition" name="Long Condition" class="org.apache.oodt.cas.workflow.examples.LongCondition"/>
+    <condition id="urn:oodt:CheckForMetadataKeys" name="Metadata Key Check" class="org.apache.oodt.cas.workflow.examples.CheckForMetadataKeys">
+        <configuration>
+            <property name="reqMetKeys" value="Met1,Met2,Met3"/>
+        </configuration>
+    </condition>
 </cas:conditions>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/events.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/events.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/events.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/events.xml Thu Jul 22 18:45:14 2010
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <cas:workflowevents xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas">
 	<event name="test">
 		<workflow id="urn:oodt:testWorkflow" />
@@ -27,4 +43,4 @@
     <event name="GenericFileIngest">
        <workflow id="urn:oodt:mailWorkflow"/>
     </event>
-</cas:workflowevents>
\ No newline at end of file
+</cas:workflowevents>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/externalScript.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/externalScript.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/externalScript.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/externalScript.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="External Script Workflow" id="urn:oodt:externalScriptWorkflow">
  <tasks>
    <task id="urn:oodt:ExternalScriptTask"/>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/longWorkflow.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/longWorkflow.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/longWorkflow.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/longWorkflow.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="Long Workflow" id="urn:oodt:longWorkflow">
  <tasks>
    <task id="urn:oodt:HelloWorld"/>
@@ -5,4 +21,4 @@
    <task id="urn:oodt:IntensiveTask"/>
    <task id="urn:oodt:IntensiveTaskWithWait"/>
  </tasks>
-</cas:workflow>
\ No newline at end of file
+</cas:workflow>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/mailWorkflow.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/mailWorkflow.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/mailWorkflow.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/mailWorkflow.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,5 +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.
+-->
 <cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="mailWorkflow" id="urn:oodt:mailWorkflow">
  <tasks>
    <task id="urn:oodt:mailTask"/>
  </tasks>
-</cas:workflow>
\ No newline at end of file
+</cas:workflow>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/tasks.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/tasks.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/tasks.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/tasks.xml Thu Jul 22 18:45:14 2010
@@ -1,3 +1,19 @@
+<!--
+  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.
+-->
 <cas:tasks xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas">
 	<task id="urn:oodt:HelloWorld" name="Hello World"
 		class="org.apache.oodt.cas.workflow.examples.HelloWorld">

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/testMetError.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/testMetError.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/testMetError.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/testMetError.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,7 +1,23 @@
+<!--
+  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.
+-->
 <cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas"
 	name="testMetErrorWorkflow"
-	id="urn:oodt:testMetErrorWorkflow">
-	<tasks>
-		<task id="urn:oodt:TestReqMetFieldsTask" />
-	</tasks>
-</cas:workflow>
\ No newline at end of file
+	id="urn:oodt:testMetErrorWorkflow">
+	<tasks>
+		<task id="urn:oodt:TestReqMetFieldsTask" />
+	</tasks>
+</cas:workflow>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/testMetadataUpdate.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/testMetadataUpdate.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/testMetadataUpdate.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/testMetadataUpdate.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,8 +1,24 @@
-<cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="testMetadataUpdateWorkflow" id="urn:oodt:testMetadataUpdateWorkflow">
- <tasks>
+<!--
+  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.
+-->
+<cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="testMetadataUpdateWorkflow" id="urn:oodt:testMetadataUpdateWorkflow">
+ <tasks>
    <task id="urn:oodt:NumIncrementTask"/>
    <task id="urn:oodt:NumIncrementTask"/>
    <task id="urn:oodt:NumIncrementTask"/>
-   <task id="urn:oodt:NumIncrementTask"/>
- </tasks>
-</cas:workflow>
\ No newline at end of file
+   <task id="urn:oodt:NumIncrementTask"/>
+ </tasks>
+</cas:workflow>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/testStatusUpdate.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/testStatusUpdate.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/testStatusUpdate.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/testStatusUpdate.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,6 +1,22 @@
-<cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="testStatusUpdateWorkflow" id="urn:oodt:testStatusUpdateWorkflow">
- <tasks>
+<!--
+  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.
+-->
+<cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="testStatusUpdateWorkflow" id="urn:oodt:testStatusUpdateWorkflow">
+ <tasks>
    <task id="urn:oodt:RandomStatusUpdateTask"/>
-   <task id="urn:oodt:RandomStatusUpdateTask"/>
- </tasks>
-</cas:workflow>
\ No newline at end of file
+   <task id="urn:oodt:RandomStatusUpdateTask"/>
+ </tasks>
+</cas:workflow>

Modified: incubator/oodt/trunk/workflow/src/main/resources/examples/testWorkflow.workflow.xml
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/examples/testWorkflow.workflow.xml?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/examples/testWorkflow.workflow.xml (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/examples/testWorkflow.workflow.xml Thu Jul 22 18:45:14 2010
@@ -1,6 +1,22 @@
+<!--
+  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.
+-->
 <cas:workflow xmlns:cas="http://oodt.jpl.nasa.gov/1.0/cas" name="testWorkflow" id="urn:oodt:testWorkflow">
  <tasks>
    <task id="urn:oodt:HelloWorld"/>
    <task id="urn:oodt:GoodbyeWorld"/>
  </tasks>
-</cas:workflow>
\ No newline at end of file
+</cas:workflow>

Modified: incubator/oodt/trunk/workflow/src/main/resources/workflow.sql
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/workflow.sql?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/workflow.sql (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/workflow.sql Thu Jul 22 18:45:14 2010
@@ -1,3 +1,18 @@
+--  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.
+
 CREATE TABLE workflows
 (workflow_id int PRIMARY KEY NOT NULL,
 workflow_name varchar(255));

Modified: incubator/oodt/trunk/workflow/src/main/resources/workflow_oracle_create_sequences.sql
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/main/resources/workflow_oracle_create_sequences.sql?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/main/resources/workflow_oracle_create_sequences.sql (original)
+++ incubator/oodt/trunk/workflow/src/main/resources/workflow_oracle_create_sequences.sql Thu Jul 22 18:45:14 2010
@@ -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.
+*/
+
 create sequence workflows_seq
 start with 1
 increment by 1

Modified: incubator/oodt/trunk/workflow/src/site/resources/css/guides.css
URL: http://svn.apache.org/viewvc/incubator/oodt/trunk/workflow/src/site/resources/css/guides.css?rev=966796&r1=966795&r2=966796&view=diff
==============================================================================
--- incubator/oodt/trunk/workflow/src/site/resources/css/guides.css (original)
+++ incubator/oodt/trunk/workflow/src/site/resources/css/guides.css Thu Jul 22 18:45:14 2010
@@ -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.
+*/
+
 .info, .success, .warning, .error, .validation {
 border: 1px solid;
 margin: 10px 0px;
@@ -24,4 +41,4 @@ background-image: url('../images/warning
 color: #D8000C;
 background-color: #FFBABA;
 background-image: url('../images/error.png');
-}
\ No newline at end of file
+}