Author: ggrekhov
Date: Fri May 18 05:29:08 2012
New Revision: 1339980

URL: http://svn.apache.org/viewvc?rev=1339980&view=rev
Log:
Add license headers to the teambox plugin

Modified:
    incubator/openmeetings/trunk/plugins/teambox/index.php
    incubator/openmeetings/trunk/plugins/teambox/oauthLogin.php
    incubator/openmeetings/trunk/plugins/teambox/openmeetings.js
    
incubator/openmeetings/trunk/plugins/teambox/rest_lib/OpenMeetingsRestService.php
    incubator/openmeetings/trunk/plugins/teambox/rest_lib/RestService.php
    incubator/openmeetings/trunk/plugins/teambox/rest_lib/TeamBoxRestService.php

Modified: incubator/openmeetings/trunk/plugins/teambox/index.php
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/teambox/index.php?rev=1339980&r1=1339979&r2=1339980&view=diff
==============================================================================
--- incubator/openmeetings/trunk/plugins/teambox/index.php (original)
+++ incubator/openmeetings/trunk/plugins/teambox/index.php Fri May 18 05:29:08 
2012
@@ -1,5 +1,25 @@
 <?php
 
+/*
+  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.
+  
+*/
+
 global $CFG;
 $CFG = parse_ini_file('config/settings.ini');
 

Modified: incubator/openmeetings/trunk/plugins/teambox/oauthLogin.php
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/teambox/oauthLogin.php?rev=1339980&r1=1339979&r2=1339980&view=diff
==============================================================================
--- incubator/openmeetings/trunk/plugins/teambox/oauthLogin.php (original)
+++ incubator/openmeetings/trunk/plugins/teambox/oauthLogin.php Fri May 18 
05:29:08 2012
@@ -1,5 +1,25 @@
 <?php
 
+/*
+  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_once('rest_lib/TeamBoxRestService.php');
 
 function validateAccessToken($token) {

Modified: incubator/openmeetings/trunk/plugins/teambox/openmeetings.js
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/teambox/openmeetings.js?rev=1339980&r1=1339979&r2=1339980&view=diff
==============================================================================
--- incubator/openmeetings/trunk/plugins/teambox/openmeetings.js (original)
+++ incubator/openmeetings/trunk/plugins/teambox/openmeetings.js Fri May 18 
05:29:08 2012
@@ -1,3 +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.
+  
+*/
+
 (function () {
     // Initialize a basic Teambox app
     Teambox.Apps.Openmeetings = Teambox.BaseApp.extend({});

Modified: 
incubator/openmeetings/trunk/plugins/teambox/rest_lib/OpenMeetingsRestService.php
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/teambox/rest_lib/OpenMeetingsRestService.php?rev=1339980&r1=1339979&r2=1339980&view=diff
==============================================================================
--- 
incubator/openmeetings/trunk/plugins/teambox/rest_lib/OpenMeetingsRestService.php
 (original)
+++ 
incubator/openmeetings/trunk/plugins/teambox/rest_lib/OpenMeetingsRestService.php
 Fri May 18 05:29:08 2012
@@ -1,5 +1,25 @@
 <?php
 
+/*
+  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_once('RestService.php');
 
 class OpenMeetingsRestService extends RestService {

Modified: incubator/openmeetings/trunk/plugins/teambox/rest_lib/RestService.php
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/teambox/rest_lib/RestService.php?rev=1339980&r1=1339979&r2=1339980&view=diff
==============================================================================
--- incubator/openmeetings/trunk/plugins/teambox/rest_lib/RestService.php 
(original)
+++ incubator/openmeetings/trunk/plugins/teambox/rest_lib/RestService.php Fri 
May 18 05:29:08 2012
@@ -1,26 +1,23 @@
 <?php
+
 /*
- * 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.
-*/
-/*
- * Created on 03.01.2012 by [email protected]
-*
-*
+  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 RestService {

Modified: 
incubator/openmeetings/trunk/plugins/teambox/rest_lib/TeamBoxRestService.php
URL: 
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/plugins/teambox/rest_lib/TeamBoxRestService.php?rev=1339980&r1=1339979&r2=1339980&view=diff
==============================================================================
--- 
incubator/openmeetings/trunk/plugins/teambox/rest_lib/TeamBoxRestService.php 
(original)
+++ 
incubator/openmeetings/trunk/plugins/teambox/rest_lib/TeamBoxRestService.php 
Fri May 18 05:29:08 2012
@@ -1,5 +1,25 @@
 <?php
 
+/*
+  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_once('RestService.php');
 
 class TeamBoxRestService extends RestService {


Reply via email to