Updated Branches: refs/heads/master 3bc5e8a90 -> 1fabc82c5
Added Apache License header to guides and root README Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/1fabc82c Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/1fabc82c Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/1fabc82c Branch: refs/heads/master Commit: 1fabc82c58040f1add61e370ebb85f1cfce9bcc1 Parents: 3bc5e8a Author: Shazron Abdullah <shaz...@apache.org> Authored: Fri May 4 15:53:28 2012 -0700 Committer: Shazron Abdullah <shaz...@apache.org> Committed: Fri May 4 15:53:28 2012 -0700 ---------------------------------------------------------------------- README.md | 20 +++++++++++++++++++ guides/Cordova JavaScript Exception Logging.md | 20 +++++++++++++++++++ guides/Cordova Plugin Upgrade Guide.md | 20 +++++++++++++++++++ guides/Cordova Settings File.md | 20 +++++++++++++++++++ guides/Cordova Upgrade Guide.md | 20 +++++++++++++++++++ guides/How to Use Cordova as a Component.md | 20 +++++++++++++++++++ 6 files changed, 120 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/1fabc82c/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index ec11789..c5205a1 100644 --- a/README.md +++ b/README.md @@ -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. +# +--> Cordova iOS ============================================================= CordovaLib is a static library that enables users to include Cordova in their iOS application projects easily, and also create new Cordova based iOS application projects through a Xcode project template. http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/1fabc82c/guides/Cordova JavaScript Exception Logging.md ---------------------------------------------------------------------- diff --git a/guides/Cordova JavaScript Exception Logging.md b/guides/Cordova JavaScript Exception Logging.md index 4c62c62..a884103 100644 --- a/guides/Cordova JavaScript Exception Logging.md +++ b/guides/Cordova JavaScript Exception Logging.md @@ -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. +# +--> # Cordova JavaScript Exception Logging # In Cordova 1.7.0, adding a few files to your project will enable you to effectively log JavaScript errors to your console at a lower level, without using JavaScript code (window.onerror, console.log). http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/1fabc82c/guides/Cordova Plugin Upgrade Guide.md ---------------------------------------------------------------------- diff --git a/guides/Cordova Plugin Upgrade Guide.md b/guides/Cordova Plugin Upgrade Guide.md index 0ff630d..3e77470 100644 --- a/guides/Cordova Plugin Upgrade Guide.md +++ b/guides/Cordova Plugin Upgrade Guide.md @@ -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. +# +--> # Cordova Plugin Upgrade Guide # This document is for developers who need to upgrade their Cordova plugins to a newer Cordova version. Starting with Cordova 1.5.0, some classes have been renamed, which will require the plugin to be upgraded. Make sure your project itself has been upgraded using the "Cordova Upgrade Guide" document. http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/1fabc82c/guides/Cordova Settings File.md ---------------------------------------------------------------------- diff --git a/guides/Cordova Settings File.md b/guides/Cordova Settings File.md index 0f616fc..f785a09 100644 --- a/guides/Cordova Settings File.md +++ b/guides/Cordova Settings File.md @@ -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. +# +--> # Cordova Settings File # The **Cordova.plist settings file** controls various settings of Cordova. This is application wide, and not set per CDVViewController instance. http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/1fabc82c/guides/Cordova Upgrade Guide.md ---------------------------------------------------------------------- diff --git a/guides/Cordova Upgrade Guide.md b/guides/Cordova Upgrade Guide.md index aaefc85..c1d3f77 100644 --- a/guides/Cordova Upgrade Guide.md +++ b/guides/Cordova Upgrade Guide.md @@ -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. +# +--> # Cordova Upgrade Guide # This document is for developers who need to upgrade their Cordova-based projects to a newer Cordova version. Starting with Cordova 1.4.0, Cordova has been re-factored to use Cleaver (Cordova as a Component), and some classes that were used before have been removed - namely PhoneGapDelegate and PhoneGapViewController. http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/1fabc82c/guides/How to Use Cordova as a Component.md ---------------------------------------------------------------------- diff --git a/guides/How to Use Cordova as a Component.md b/guides/How to Use Cordova as a Component.md index ff79919..8acc9fe 100644 --- a/guides/How to Use Cordova as a Component.md +++ b/guides/How to Use Cordova as a Component.md @@ -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. +# +--> # How to use Cordova as a Component # Beginning with Cordova 1.4, you can use Cordova as a component in your iOS applications. This component is code-named "Cleaver".