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 B6EE9F023 for ; Mon, 8 Jul 2013 23:49:16 +0000 (UTC) Received: (qmail 58215 invoked by uid 500); 8 Jul 2013 23:49:16 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 58195 invoked by uid 500); 8 Jul 2013 23:49:16 -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 58188 invoked by uid 99); 8 Jul 2013 23:49:16 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jul 2013 23:49:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 69090888BB5; Mon, 8 Jul 2013 23:49:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: purplecabbage@apache.org To: commits@cordova.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated to remove conflicts with vibration Date: Mon, 8 Jul 2013 23:49:16 +0000 (UTC) Updated Branches: refs/heads/master 5146cde3c -> e5042b313 updated to remove conflicts with vibration Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/commit/e5042b31 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/tree/e5042b31 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/diff/e5042b31 Branch: refs/heads/master Commit: e5042b3135a9a802af331bb736b720464e579cd1 Parents: 5146cde Author: Jesse MacFadyen Authored: Mon Jul 8 16:49:00 2013 -0700 Committer: Jesse MacFadyen Committed: Mon Jul 8 16:49:00 2013 -0700 ---------------------------------------------------------------------- plugin.xml | 4 +++ src/wp/Notification.cs | 2 +- src/wp/NotificationBox.xaml | 62 +++++++++++++++++++++++++++++++++++++ src/wp/NotificationBox.xaml.cs | 41 ++++++++++++++++++++++++ 4 files changed, 108 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/e5042b31/plugin.xml ---------------------------------------------------------------------- diff --git a/plugin.xml b/plugin.xml index 78acb7b..8ee7f4a 100644 --- a/plugin.xml +++ b/plugin.xml @@ -57,6 +57,8 @@ + + @@ -68,6 +70,8 @@ + + http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/e5042b31/src/wp/Notification.cs ---------------------------------------------------------------------- diff --git a/src/wp/Notification.cs b/src/wp/Notification.cs index 8306ce0..ce93f55 100644 --- a/src/wp/Notification.cs +++ b/src/wp/Notification.cs @@ -27,7 +27,7 @@ using System.Diagnostics; namespace WPCordovaClassLib.Cordova.Commands { - public class Notification : BaseCommand + public class NotificationDialogs : BaseCommand { static ProgressBar progressBar = null; const int DEFAULT_DURATION = 5; http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/e5042b31/src/wp/NotificationBox.xaml ---------------------------------------------------------------------- diff --git a/src/wp/NotificationBox.xaml b/src/wp/NotificationBox.xaml new file mode 100644 index 0000000..1ca5d5f --- /dev/null +++ b/src/wp/NotificationBox.xaml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs/blob/e5042b31/src/wp/NotificationBox.xaml.cs ---------------------------------------------------------------------- diff --git a/src/wp/NotificationBox.xaml.cs b/src/wp/NotificationBox.xaml.cs new file mode 100644 index 0000000..50b2f2a --- /dev/null +++ b/src/wp/NotificationBox.xaml.cs @@ -0,0 +1,41 @@ +/* + 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. +*/ + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Shapes; + +namespace WPCordovaClassLib.Cordova.UI +{ + public partial class NotificationBox : UserControl + { + public NotificationBox() + { + InitializeComponent(); + } + } +}