Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 00C22D29B for ; Tue, 9 Oct 2012 21:34:51 +0000 (UTC) Received: (qmail 12680 invoked by uid 500); 9 Oct 2012 21:34:50 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 12658 invoked by uid 500); 9 Oct 2012 21:34:50 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 12651 invoked by uid 99); 9 Oct 2012 21:34:50 -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, 09 Oct 2012 21:34:50 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id A64BA3CEA6; Tue, 9 Oct 2012 21:34:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anis@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: qt commit: adding apache header license Message-Id: <20121009213450.A64BA3CEA6@tyr.zones.apache.org> Date: Tue, 9 Oct 2012 21:34:50 +0000 (UTC) Updated Branches: refs/heads/master 0cb62ba58 -> ed508de32 adding apache header license Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/commit/ed508de3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/tree/ed508de3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/diff/ed508de3 Branch: refs/heads/master Commit: ed508de32fce99085808f49f21e36db2f678c35d Parents: 0cb62ba Author: Anis Kadri Authored: Tue Oct 9 14:34:49 2012 -0700 Committer: Anis Kadri Committed: Tue Oct 9 14:34:49 2012 -0700 ---------------------------------------------------------------------- cordovaqt.svg | 23 ++++++++++++++++++++++- qml/cordova_wrapper.js | 21 +++++++++++++++++++++ src/plugins/camera.cpp | 21 +++++++++++++++++++++ src/plugins/camera.h | 21 +++++++++++++++++++++ src/plugins/cameraresolution.h | 21 +++++++++++++++++++++ src/plugins/contacts.cpp | 21 +++++++++++++++++++++ src/plugins/contacts.h | 21 +++++++++++++++++++++ src/plugins/events.cpp | 21 +++++++++++++++++++++ src/plugins/events.h | 21 +++++++++++++++++++++ wizard.xml | 21 +++++++++++++++++++++ www/basic.js | 21 +++++++++++++++++++++ www/cordova-1.7.0.js | 21 +++++++++++++++++++++ www/index.html | 21 +++++++++++++++++++++ www/index_qt5.html | 21 +++++++++++++++++++++ www/js/camera.js | 21 +++++++++++++++++++++ www/js/contacts.js | 21 +++++++++++++++++++++ xml/plugins.xml | 21 +++++++++++++++++++++ 17 files changed, 358 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/cordovaqt.svg ---------------------------------------------------------------------- diff --git a/cordovaqt.svg b/cordovaqt.svg index 813e43d..7a4c82d 100644 --- a/cordovaqt.svg +++ b/cordovaqt.svg @@ -1,4 +1,25 @@ + + \ No newline at end of file + style="fill:#211c1d;fill-opacity:1;fill-rule:nonzero;stroke:none" /> http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/qml/cordova_wrapper.js ---------------------------------------------------------------------- diff --git a/qml/cordova_wrapper.js b/qml/cordova_wrapper.js index ba73b90..c7be745 100644 --- a/qml/cordova_wrapper.js +++ b/qml/cordova_wrapper.js @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + var pluginObjects = {} http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/src/plugins/camera.cpp ---------------------------------------------------------------------- diff --git a/src/plugins/camera.cpp b/src/plugins/camera.cpp index df9ea61..6a91c81 100644 --- a/src/plugins/camera.cpp +++ b/src/plugins/camera.cpp @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + #include "cameraresolution.h" #include "camera.h" http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/src/plugins/camera.h ---------------------------------------------------------------------- diff --git a/src/plugins/camera.h b/src/plugins/camera.h index 3e24961..bf0daa7 100644 --- a/src/plugins/camera.h +++ b/src/plugins/camera.h @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + #ifndef CAMERA_H #define CAMERA_H http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/src/plugins/cameraresolution.h ---------------------------------------------------------------------- diff --git a/src/plugins/cameraresolution.h b/src/plugins/cameraresolution.h index ca70b29..55bc744 100644 --- a/src/plugins/cameraresolution.h +++ b/src/plugins/cameraresolution.h @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + #ifndef CAMERARESOLUTION_H #define CAMERARESOLUTION_H http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/src/plugins/contacts.cpp ---------------------------------------------------------------------- diff --git a/src/plugins/contacts.cpp b/src/plugins/contacts.cpp index b84267d..0113b8c 100644 --- a/src/plugins/contacts.cpp +++ b/src/plugins/contacts.cpp @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + #include "contacts.h" #include "../pluginregistry.h" http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/src/plugins/contacts.h ---------------------------------------------------------------------- diff --git a/src/plugins/contacts.h b/src/plugins/contacts.h index ee189df..94f51b2 100644 --- a/src/plugins/contacts.h +++ b/src/plugins/contacts.h @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + #ifndef CONTACTS_H #define CONTACTS_H http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/src/plugins/events.cpp ---------------------------------------------------------------------- diff --git a/src/plugins/events.cpp b/src/plugins/events.cpp index d9db34a..df5f1d6 100644 --- a/src/plugins/events.cpp +++ b/src/plugins/events.cpp @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + #include "events.h" #include "../pluginregistry.h" http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/src/plugins/events.h ---------------------------------------------------------------------- diff --git a/src/plugins/events.h b/src/plugins/events.h index 9c2457b..319631f 100644 --- a/src/plugins/events.h +++ b/src/plugins/events.h @@ -1,3 +1,24 @@ +/* + * + * 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. + * +*/ + #ifndef EVENTS_H #define EVENTS_H http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/wizard.xml ---------------------------------------------------------------------- diff --git a/wizard.xml b/wizard.xml index 14bd557..7efcb6f 100644 --- a/wizard.xml +++ b/wizard.xml @@ -1,5 +1,26 @@ + + + http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/www/index_qt5.html ---------------------------------------------------------------------- diff --git a/www/index_qt5.html b/www/index_qt5.html index 5312fd5..3e9e083 100644 --- a/www/index_qt5.html +++ b/www/index_qt5.html @@ -1,3 +1,24 @@ + + http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/www/js/camera.js ---------------------------------------------------------------------- diff --git a/www/js/camera.js b/www/js/camera.js index 69a8713..1c18740 100644 --- a/www/js/camera.js +++ b/www/js/camera.js @@ -1,3 +1,24 @@ +/* + * + * 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 Camera(){ this.DestinationType = Camera.DestinationType; this.PictureSourceType = Camera.PictureSourceType; http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/www/js/contacts.js ---------------------------------------------------------------------- diff --git a/www/js/contacts.js b/www/js/contacts.js index ba7baf1..ed638b6 100644 --- a/www/js/contacts.js +++ b/www/js/contacts.js @@ -1,3 +1,24 @@ +/* + * + * 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 ContactAddress() { } http://git-wip-us.apache.org/repos/asf/incubator-cordova-qt/blob/ed508de3/xml/plugins.xml ---------------------------------------------------------------------- diff --git a/xml/plugins.xml b/xml/plugins.xml index 4eb7266..fe7dc86 100644 --- a/xml/plugins.xml +++ b/xml/plugins.xml @@ -1,4 +1,25 @@ + +