You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2014/06/03 20:49:07 UTC

[4/8] git commit: CB-6788 Add license headers to cs files

CB-6788 Add license headers to cs files


Project: http://git-wip-us.apache.org/repos/asf/cordova-wp8/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp8/commit/d21c59fb
Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp8/tree/d21c59fb
Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp8/diff/d21c59fb

Branch: refs/heads/master
Commit: d21c59fb31d58a41b559f8079acf166b36e85ac3
Parents: f73829f
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Mon Jun 2 18:50:33 2014 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Mon Jun 2 18:50:33 2014 -0700

----------------------------------------------------------------------
 wp8/framework/Properties/AssemblyInfo.cs        | 15 +++++++++-
 wp8/template/Properties/AssemblyInfo.cs         | 15 +++++++++-
 .../CordovaDeploy/Properties/AssemblyInfo.cs    | 16 ++++++++++-
 wp8/template/cordovalib/ConfigHandler.cs        | 16 ++++++++++-
 wp8/template/cordovalib/ConsoleHelper.cs        | 15 +++++++++-
 wp8/template/cordovalib/IBrowserDecorator.cs    | 16 ++++++++++-
 wp8/template/cordovalib/ScriptCallback.cs       | 29 ++++++++------------
 wp8/template/cordovalib/XHRHelper.cs            | 16 ++++++++++-
 8 files changed, 114 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/framework/Properties/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/wp8/framework/Properties/AssemblyInfo.cs b/wp8/framework/Properties/AssemblyInfo.cs
index 6f1ef4f..9ca834e 100644
--- a/wp8/framework/Properties/AssemblyInfo.cs
+++ b/wp8/framework/Properties/AssemblyInfo.cs
@@ -1,4 +1,17 @@
-using System.Reflection;
+/*  
+    Licensed 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.
+*/
+using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/template/Properties/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/wp8/template/Properties/AssemblyInfo.cs b/wp8/template/Properties/AssemblyInfo.cs
index 8d9eb89..04907da 100644
--- a/wp8/template/Properties/AssemblyInfo.cs
+++ b/wp8/template/Properties/AssemblyInfo.cs
@@ -1,4 +1,17 @@
-using System.Reflection;
+/*  
+    Licensed 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.
+*/
+using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 using System.Resources;

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy/Properties/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy/Properties/AssemblyInfo.cs b/wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy/Properties/AssemblyInfo.cs
index 3c26c87..2b6c01b 100644
--- a/wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy/Properties/AssemblyInfo.cs
+++ b/wp8/template/cordova/lib/CordovaDeploy/CordovaDeploy/Properties/AssemblyInfo.cs
@@ -1,4 +1,18 @@
-using System.Reflection;
+/*  
+    Licensed 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.
+*/
+
+using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/template/cordovalib/ConfigHandler.cs
----------------------------------------------------------------------
diff --git a/wp8/template/cordovalib/ConfigHandler.cs b/wp8/template/cordovalib/ConfigHandler.cs
index 6884104..e2575f7 100644
--- a/wp8/template/cordovalib/ConfigHandler.cs
+++ b/wp8/template/cordovalib/ConfigHandler.cs
@@ -1,4 +1,18 @@
-using System;
+/*  
+    Licensed 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.
+*/
+
+using System;
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.IO;

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/template/cordovalib/ConsoleHelper.cs
----------------------------------------------------------------------
diff --git a/wp8/template/cordovalib/ConsoleHelper.cs b/wp8/template/cordovalib/ConsoleHelper.cs
index 6bb52cc..cf79d23 100644
--- a/wp8/template/cordovalib/ConsoleHelper.cs
+++ b/wp8/template/cordovalib/ConsoleHelper.cs
@@ -1,4 +1,17 @@
-using Microsoft.Phone.Controls;
+/*  
+    Licensed 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.
+*/
+using Microsoft.Phone.Controls;
 using Microsoft.Phone.Shell;
 using System;
 using System.Collections.Generic;

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/template/cordovalib/IBrowserDecorator.cs
----------------------------------------------------------------------
diff --git a/wp8/template/cordovalib/IBrowserDecorator.cs b/wp8/template/cordovalib/IBrowserDecorator.cs
index 5c51680..bc1dbee 100644
--- a/wp8/template/cordovalib/IBrowserDecorator.cs
+++ b/wp8/template/cordovalib/IBrowserDecorator.cs
@@ -1,4 +1,18 @@
-using Microsoft.Phone.Controls;
+/*  
+    Licensed 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.
+*/
+
+using Microsoft.Phone.Controls;
 using System;
 using System.Collections.Generic;
 using System.Linq;

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/template/cordovalib/ScriptCallback.cs
----------------------------------------------------------------------
diff --git a/wp8/template/cordovalib/ScriptCallback.cs b/wp8/template/cordovalib/ScriptCallback.cs
index 7878134..05bba06 100644
--- a/wp8/template/cordovalib/ScriptCallback.cs
+++ b/wp8/template/cordovalib/ScriptCallback.cs
@@ -1,20 +1,15 @@
-/*
- 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. 
+/*  
+    Licensed 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.
 */
 
 using System;

http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/d21c59fb/wp8/template/cordovalib/XHRHelper.cs
----------------------------------------------------------------------
diff --git a/wp8/template/cordovalib/XHRHelper.cs b/wp8/template/cordovalib/XHRHelper.cs
index d1651c3..847d766 100644
--- a/wp8/template/cordovalib/XHRHelper.cs
+++ b/wp8/template/cordovalib/XHRHelper.cs
@@ -1,4 +1,18 @@
-using Microsoft.Phone.Controls;
+/*  
+    Licensed 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.
+*/
+
+using Microsoft.Phone.Controls;
 using System;
 using System.Collections.Generic;
 using System.Diagnostics;