You are viewing a plain text version of this content. The canonical link for it is here.
Posted to olio-commits@incubator.apache.org by sh...@apache.org on 2009/03/31 21:27:37 UTC

svn commit: r760654 - in /incubator/olio/webapp/rails/trunk/app: helpers/ models/

Author: shanti
Date: Tue Mar 31 21:27:37 2009
New Revision: 760654

URL: http://svn.apache.org/viewvc?rev=760654&view=rev
Log:
Added license headers.

Modified:
    incubator/olio/webapp/rails/trunk/app/helpers/application_helper.rb
    incubator/olio/webapp/rails/trunk/app/helpers/comments_helper.rb
    incubator/olio/webapp/rails/trunk/app/helpers/events_helper.rb
    incubator/olio/webapp/rails/trunk/app/helpers/friends_helper.rb
    incubator/olio/webapp/rails/trunk/app/helpers/users_helper.rb
    incubator/olio/webapp/rails/trunk/app/models/address.rb
    incubator/olio/webapp/rails/trunk/app/models/comment.rb
    incubator/olio/webapp/rails/trunk/app/models/document.rb
    incubator/olio/webapp/rails/trunk/app/models/event.rb
    incubator/olio/webapp/rails/trunk/app/models/geolocation.rb
    incubator/olio/webapp/rails/trunk/app/models/image.rb
    incubator/olio/webapp/rails/trunk/app/models/invite.rb
    incubator/olio/webapp/rails/trunk/app/models/user.rb

Modified: incubator/olio/webapp/rails/trunk/app/helpers/application_helper.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/helpers/application_helper.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/helpers/application_helper.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/helpers/application_helper.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # Methods added to this helper will be available to all templates in the application.
 module ApplicationHelper
 

Modified: incubator/olio/webapp/rails/trunk/app/helpers/comments_helper.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/helpers/comments_helper.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/helpers/comments_helper.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/helpers/comments_helper.rb Tue Mar 31 21:27:37 2009
@@ -1,2 +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.
+#
 module CommentsHelper
 end

Modified: incubator/olio/webapp/rails/trunk/app/helpers/events_helper.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/helpers/events_helper.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/helpers/events_helper.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/helpers/events_helper.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 module EventsHelper
   
   def attendance_links(event)

Modified: incubator/olio/webapp/rails/trunk/app/helpers/friends_helper.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/helpers/friends_helper.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/helpers/friends_helper.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/helpers/friends_helper.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 module FriendsHelper    
 
   def refresh_invites(which)

Modified: incubator/olio/webapp/rails/trunk/app/helpers/users_helper.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/helpers/users_helper.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/helpers/users_helper.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/helpers/users_helper.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 module UsersHelper
   
   def display_name(user)

Modified: incubator/olio/webapp/rails/trunk/app/models/address.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/address.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/address.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/address.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # == Schema Information
 # Schema version: 17
 #

Modified: incubator/olio/webapp/rails/trunk/app/models/comment.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/comment.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/comment.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/comment.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # == Schema Information
 # Schema version: 17
 #

Modified: incubator/olio/webapp/rails/trunk/app/models/document.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/document.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/document.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/document.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # == Schema Information
 # Schema version: 17
 #

Modified: incubator/olio/webapp/rails/trunk/app/models/event.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/event.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/event.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/event.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # == Schema Information
 # Schema version: 17
 #

Modified: incubator/olio/webapp/rails/trunk/app/models/geolocation.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/geolocation.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/geolocation.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/geolocation.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 require 'net/http'
 require 'cgi'
 

Modified: incubator/olio/webapp/rails/trunk/app/models/image.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/image.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/image.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/image.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # == Schema Information
 # Schema version: 17
 #

Modified: incubator/olio/webapp/rails/trunk/app/models/invite.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/invite.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/invite.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/invite.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # == Schema Information
 # Schema version: 17
 #

Modified: incubator/olio/webapp/rails/trunk/app/models/user.rb
URL: http://svn.apache.org/viewvc/incubator/olio/webapp/rails/trunk/app/models/user.rb?rev=760654&r1=760653&r2=760654&view=diff
==============================================================================
--- incubator/olio/webapp/rails/trunk/app/models/user.rb (original)
+++ incubator/olio/webapp/rails/trunk/app/models/user.rb Tue Mar 31 21:27:37 2009
@@ -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.
+#
 # == Schema Information
 # Schema version: 17
 #