Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 85EB41109B for ; Tue, 3 Jun 2014 18:49:05 +0000 (UTC) Received: (qmail 96961 invoked by uid 500); 3 Jun 2014 18:49:04 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 96883 invoked by uid 500); 3 Jun 2014 18:49:04 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 96810 invoked by uid 99); 3 Jun 2014 18:49:04 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Jun 2014 18:49:04 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 70EAC9429ED; Tue, 3 Jun 2014 18:49:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: purplecabbage@apache.org To: commits@cordova.apache.org Date: Tue, 03 Jun 2014 18:49:05 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/8] git commit: CB-6788 add headers to bat files CB-6788 add headers to bat 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/52991ced Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp8/tree/52991ced Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp8/diff/52991ced Branch: refs/heads/master Commit: 52991ced5e50fb20d3922047f89b21a0af863214 Parents: 2f0d49f Author: Jesse MacFadyen Authored: Mon Jun 2 16:30:27 2014 -0700 Committer: Jesse MacFadyen Committed: Mon Jun 2 16:31:21 2014 -0700 ---------------------------------------------------------------------- createTemplates.bat | 20 ++++++++++++++++++ wp8/template/cordova/build.bat | 22 ++++++++++++++++++++ wp8/template/cordova/clean.bat | 21 +++++++++++++++++++ wp8/template/cordova/lib/install-device.bat | 21 +++++++++++++++++++ wp8/template/cordova/lib/install-emulator.bat | 21 +++++++++++++++++++ wp8/template/cordova/lib/list-devices.bat | 21 +++++++++++++++++++ .../cordova/lib/list-emulator-images.bat | 21 +++++++++++++++++++ .../cordova/lib/list-started-emulators.bat | 21 +++++++++++++++++++ wp8/template/cordova/lib/start-emulator.bat | 21 +++++++++++++++++++ wp8/template/cordova/log.bat | 21 +++++++++++++++++++ wp8/template/cordova/run.bat | 21 +++++++++++++++++++ wp8/template/cordova/version.bat | 21 +++++++++++++++++++ wp8/template/cordova/win_os_version.bat | 21 +++++++++++++++++++ wp8/template/cordova/win_sdk_version.bat | 21 +++++++++++++++++++ wp8/tooling/scripts/buildjs.bat | 21 +++++++++++++++++++ wp8/tooling/scripts/createTemplates.bat | 21 +++++++++++++++++++ wp8/tooling/scripts/dist.bat | 21 +++++++++++++++++++ wp8/tooling/scripts/new.bat | 21 +++++++++++++++++++ wp8/tooling/scripts/package.bat | 21 +++++++++++++++++++ wp8/tooling/scripts/reversion.bat | 21 +++++++++++++++++++ 20 files changed, 420 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/createTemplates.bat ---------------------------------------------------------------------- diff --git a/createTemplates.bat b/createTemplates.bat index 7805f54..a405b8f 100644 --- a/createTemplates.bat +++ b/createTemplates.bat @@ -1,2 +1,22 @@ +goto endheader +# +# 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. +# +:endheader call wp8/tooling/scripts/createTemplates %1 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/build.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/build.bat b/wp8/template/cordova/build.bat index 06a321a..43d9f04 100644 --- a/wp8/template/cordova/build.bat +++ b/wp8/template/cordova/build.bat @@ -1,3 +1,25 @@ +goto endheader +# +# 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. +# +:endheader + + @ECHO OFF SET script_path="%~dp0lib\build.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/clean.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/clean.bat b/wp8/template/cordova/clean.bat index f637470..f37347f 100644 --- a/wp8/template/cordova/clean.bat +++ b/wp8/template/cordova/clean.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0lib\clean.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/lib/install-device.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/lib/install-device.bat b/wp8/template/cordova/lib/install-device.bat index b953743..d0ed614 100644 --- a/wp8/template/cordova/lib/install-device.bat +++ b/wp8/template/cordova/lib/install-device.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0deploy.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/lib/install-emulator.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/lib/install-emulator.bat b/wp8/template/cordova/lib/install-emulator.bat index 5df933b..1d9758c 100644 --- a/wp8/template/cordova/lib/install-emulator.bat +++ b/wp8/template/cordova/lib/install-emulator.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0deploy.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/lib/list-devices.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/lib/list-devices.bat b/wp8/template/cordova/lib/list-devices.bat index d2158c6..ab756a0 100644 --- a/wp8/template/cordova/lib/list-devices.bat +++ b/wp8/template/cordova/lib/list-devices.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0target-list.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/lib/list-emulator-images.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/lib/list-emulator-images.bat b/wp8/template/cordova/lib/list-emulator-images.bat index 44b52ef..561cf57 100644 --- a/wp8/template/cordova/lib/list-emulator-images.bat +++ b/wp8/template/cordova/lib/list-emulator-images.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0target-list.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/lib/list-started-emulators.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/lib/list-started-emulators.bat b/wp8/template/cordova/lib/list-started-emulators.bat index d779b5d..d6022e5 100644 --- a/wp8/template/cordova/lib/list-started-emulators.bat +++ b/wp8/template/cordova/lib/list-started-emulators.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF ECHO Sorry, list-started-emulators is not availible yet for Windows Phone. 1>&2 EXIT /B 1 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/lib/start-emulator.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/lib/start-emulator.bat b/wp8/template/cordova/lib/start-emulator.bat index 19983fd..f78ecf7 100644 --- a/wp8/template/cordova/lib/start-emulator.bat +++ b/wp8/template/cordova/lib/start-emulator.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF ECHO Sorry, start-emulator is not availible yet for Windows Phone. 1>&2 EXIT /B 1 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/log.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/log.bat b/wp8/template/cordova/log.bat index d34a8ab..8962dd4 100644 --- a/wp8/template/cordova/log.bat +++ b/wp8/template/cordova/log.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF ECHO Sorry, logging is not supported for Windows Phone. 1>&2 EXIT /B 1 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/run.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/run.bat b/wp8/template/cordova/run.bat index c8ad0a9..de618b2 100644 --- a/wp8/template/cordova/run.bat +++ b/wp8/template/cordova/run.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0lib\deploy.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/version.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/version.bat b/wp8/template/cordova/version.bat index 68cf7d1..496334d 100644 --- a/wp8/template/cordova/version.bat +++ b/wp8/template/cordova/version.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0..\VERSION" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/win_os_version.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/win_os_version.bat b/wp8/template/cordova/win_os_version.bat index ebd5ca8..750f5f5 100644 --- a/wp8/template/cordova/win_os_version.bat +++ b/wp8/template/cordova/win_os_version.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0lib\win_os_version.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/template/cordova/win_sdk_version.bat ---------------------------------------------------------------------- diff --git a/wp8/template/cordova/win_sdk_version.bat b/wp8/template/cordova/win_sdk_version.bat index 02c7f0e..876ef14 100644 --- a/wp8/template/cordova/win_sdk_version.bat +++ b/wp8/template/cordova/win_sdk_version.bat @@ -1,3 +1,24 @@ +goto endheader +# +# 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. +# +:endheader + @ECHO OFF SET script_path="%~dp0lib\win_sdk_version.js" IF EXIST %script_path% ( http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/tooling/scripts/buildjs.bat ---------------------------------------------------------------------- diff --git a/wp8/tooling/scripts/buildjs.bat b/wp8/tooling/scripts/buildjs.bat index 28d2423..9d04681 100644 --- a/wp8/tooling/scripts/buildjs.bat +++ b/wp8/tooling/scripts/buildjs.bat @@ -1,2 +1,23 @@ +goto endheader +# +# 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. +# +:endheader + @echo off cscript "%~dp0\buildjs.js" %* //nologo \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/tooling/scripts/createTemplates.bat ---------------------------------------------------------------------- diff --git a/wp8/tooling/scripts/createTemplates.bat b/wp8/tooling/scripts/createTemplates.bat index cf85190..906c666 100644 --- a/wp8/tooling/scripts/createTemplates.bat +++ b/wp8/tooling/scripts/createTemplates.bat @@ -1,2 +1,23 @@ +goto endheader +# +# 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. +# +:endheader + @echo off cscript "%~dp0\createTemplates.js" %* //nologo \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/tooling/scripts/dist.bat ---------------------------------------------------------------------- diff --git a/wp8/tooling/scripts/dist.bat b/wp8/tooling/scripts/dist.bat index a1c0e1d..1f4fea5 100644 --- a/wp8/tooling/scripts/dist.bat +++ b/wp8/tooling/scripts/dist.bat @@ -1,2 +1,23 @@ +goto endheader +# +# 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. +# +:endheader + @echo off cscript "%~dp0\dist.js" %* //nologo http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/tooling/scripts/new.bat ---------------------------------------------------------------------- diff --git a/wp8/tooling/scripts/new.bat b/wp8/tooling/scripts/new.bat index cb08e2e..a64441e 100644 --- a/wp8/tooling/scripts/new.bat +++ b/wp8/tooling/scripts/new.bat @@ -1,2 +1,23 @@ +goto endheader +# +# 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. +# +:endheader + @echo off cscript "%~dp0\new.js" %* //nologo \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/tooling/scripts/package.bat ---------------------------------------------------------------------- diff --git a/wp8/tooling/scripts/package.bat b/wp8/tooling/scripts/package.bat index c00551e..d57f603 100644 --- a/wp8/tooling/scripts/package.bat +++ b/wp8/tooling/scripts/package.bat @@ -1,2 +1,23 @@ +goto endheader +# +# 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. +# +:endheader + @echo off cscript "%~dp0\package.js" %* //nologo \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/52991ced/wp8/tooling/scripts/reversion.bat ---------------------------------------------------------------------- diff --git a/wp8/tooling/scripts/reversion.bat b/wp8/tooling/scripts/reversion.bat index b35ab08..b905240 100644 --- a/wp8/tooling/scripts/reversion.bat +++ b/wp8/tooling/scripts/reversion.bat @@ -1,2 +1,23 @@ +goto endheader +# +# 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. +# +:endheader + @echo off cscript "%~dp0\reversion.js" %* //nologo \ No newline at end of file