Author: assaf
Date: Tue Nov 18 15:33:04 2008
New Revision: 718782

URL: http://svn.apache.org/viewvc?rev=718782&view=rev
Log:
Added Apache license files

Modified:
    ode/sandbox/singleshot/Rakefile
    ode/sandbox/singleshot/db/migrate/20080506014952_create_people.rb
    ode/sandbox/singleshot/db/migrate/20080506015046_create_tasks.rb
    ode/sandbox/singleshot/db/migrate/20080506015119_create_stakeholders.rb
    ode/sandbox/singleshot/db/migrate/20080621023051_create_contexts.rb
    ode/sandbox/singleshot/db/populate.rb

Modified: ode/sandbox/singleshot/Rakefile
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/Rakefile?rev=718782&r1=718781&r2=718782&view=diff
==============================================================================
--- ode/sandbox/singleshot/Rakefile (original)
+++ ode/sandbox/singleshot/Rakefile Tue Nov 18 15:33:04 2008
@@ -14,12 +14,6 @@
 # the License.
 
 
-# Add your own tasks in files placed in lib/tasks ending in .rake,
-# for example lib/tasks/capistrano.rake, and they will automatically be 
available to Rake.
-
-# Add your own tasks in files placed in lib/tasks ending in .rake,
-# for example lib/tasks/capistrano.rake, and they will automatically be 
available to Rake.
-
 require(File.join(File.dirname(__FILE__), 'config', 'boot'))
 
 require 'rake'

Modified: ode/sandbox/singleshot/db/migrate/20080506014952_create_people.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/db/migrate/20080506014952_create_people.rb?rev=718782&r1=718781&r2=718782&view=diff
==============================================================================
--- ode/sandbox/singleshot/db/migrate/20080506014952_create_people.rb (original)
+++ ode/sandbox/singleshot/db/migrate/20080506014952_create_people.rb Tue Nov 
18 15:33:04 2008
@@ -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.
+
+
 class CreatePeople < ActiveRecord::Migration
   def self.up
     create_table 'people' do |t|

Modified: ode/sandbox/singleshot/db/migrate/20080506015046_create_tasks.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/db/migrate/20080506015046_create_tasks.rb?rev=718782&r1=718781&r2=718782&view=diff
==============================================================================
--- ode/sandbox/singleshot/db/migrate/20080506015046_create_tasks.rb (original)
+++ ode/sandbox/singleshot/db/migrate/20080506015046_create_tasks.rb Tue Nov 18 
15:33:04 2008
@@ -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.
+
+
 class CreateTasks < ActiveRecord::Migration
   def self.up
     create_table 'tasks' do |t|

Modified: 
ode/sandbox/singleshot/db/migrate/20080506015119_create_stakeholders.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/db/migrate/20080506015119_create_stakeholders.rb?rev=718782&r1=718781&r2=718782&view=diff
==============================================================================
--- ode/sandbox/singleshot/db/migrate/20080506015119_create_stakeholders.rb 
(original)
+++ ode/sandbox/singleshot/db/migrate/20080506015119_create_stakeholders.rb Tue 
Nov 18 15:33:04 2008
@@ -1,10 +1,26 @@
+# 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.
+
+
 class CreateStakeholders < ActiveRecord::Migration
   def self.up
     create_table 'stakeholders' do |t|
       t.belongs_to 'task',      :null=>false
       t.belongs_to 'person',    :null=>false
-      t.string    'role',       :null=>false
-      t.datetime  'created_at', :null=>false
+      t.string     'role',       :null=>false
+      t.datetime   'created_at', :null=>false
     end
   end
 

Modified: ode/sandbox/singleshot/db/migrate/20080621023051_create_contexts.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/db/migrate/20080621023051_create_contexts.rb?rev=718782&r1=718781&r2=718782&view=diff
==============================================================================
--- ode/sandbox/singleshot/db/migrate/20080621023051_create_contexts.rb 
(original)
+++ ode/sandbox/singleshot/db/migrate/20080621023051_create_contexts.rb Tue Nov 
18 15:33:04 2008
@@ -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.
+
+
 class CreateContexts < ActiveRecord::Migration
   def self.up
     create_table 'contexts' do |t|

Modified: ode/sandbox/singleshot/db/populate.rb
URL: 
http://svn.apache.org/viewvc/ode/sandbox/singleshot/db/populate.rb?rev=718782&r1=718781&r2=718782&view=diff
==============================================================================
--- ode/sandbox/singleshot/db/populate.rb (original)
+++ ode/sandbox/singleshot/db/populate.rb Tue Nov 18 15:33:04 2008
@@ -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.
+
+
 class PopulateDatabase
     
   def populate


Reply via email to