fixes last commit

This commit is contained in:
Paul Schneider 2017-01-26 13:00:31 +01:00
commit 05e5970bef
197 changed files with 2203 additions and 2204 deletions

View file

@ -1,8 +1,8 @@
using BookAStar.Model.Blog;
using ZicMoove.Model.Blog;
using Xamarin.Forms;
namespace BookAStar.Pages.BlogPages
namespace ZicMoove.Pages.BlogPages
{
public class BlogPage : ContentPage
{

View file

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.Chat.ChatPage"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
x:Class="ZicMoove.Pages.Chat.ChatPage"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
xmlns:controls="clr-namespace:XLabs.Forms.Controls;assembly=XLabs.Forms"
xmlns:toolkit="clr-namespace:XLabs.Forms.Mvvm;assembly=XLabs.Forms"
xmlns:converters="clr-namespace:BookAStar.Converters;assembly=BookAStar"
xmlns:local="clr-namespace:BookAStar;Assembly:BookAStar"
xmlns:extensions="clr-namespace:BookAStar.Extensions;assembly=BookAStar"
xmlns:converters="clr-namespace:ZicMoove.Converters;assembly=ZicMoove"
xmlns:local="clr-namespace:ZicMoove;Assembly:ZicMoove"
xmlns:extensions="clr-namespace:ZicMoove.Extensions;assembly=ZicMoove"
Style="{StaticResource PageStyle}" >
<TabbedPage.Resources>
<ResourceDictionary>
@ -16,28 +16,28 @@
<converters:SignalRConnectionStateToObject.DisconnectedObject>
<Style TargetType="Image">
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Chat.disconnected.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Chat.disconnected.png}" />
</Style>
</converters:SignalRConnectionStateToObject.DisconnectedObject>
<converters:SignalRConnectionStateToObject.ConnectedObject>
<Style TargetType="Image">
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Chat.connected.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Chat.connected.png}" />
</Style>
</converters:SignalRConnectionStateToObject.ConnectedObject>
<converters:SignalRConnectionStateToObject.ConnectingObject>
<Style TargetType="Image">
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Chat.connecting.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Chat.connecting.png}" />
</Style>
</converters:SignalRConnectionStateToObject.ConnectingObject>
<converters:SignalRConnectionStateToObject.ReconnectingObject>
<Style TargetType="Image">
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Chat.reconnecting.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Chat.reconnecting.png}" />
</Style>
</converters:SignalRConnectionStateToObject.ReconnectingObject>
</converters:SignalRConnectionStateToObject>

View file

@ -3,7 +3,7 @@ using System.Diagnostics;
using Microsoft.AspNet.SignalR.Client;
using Xamarin.Forms;
namespace BookAStar.Pages.Chat
namespace ZicMoove.Pages.Chat
{
using Data;
using System.Linq;

View file

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.ClientPages.SearchPage"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
x:Class="ZicMoove.Pages.ClientPages.SearchPage"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
xmlns:controls="clr-namespace:XLabs.Forms.Controls;assembly=XLabs.Forms"
xmlns:toolkit="clr-namespace:XLabs.Forms.Mvvm;assembly=XLabs.Forms"
xmlns:converters="clr-namespace:BookAStar.Converters;assembly=BookAStar"
xmlns:local="clr-namespace:BookAStar;Assembly:BookAStar"
xmlns:extensions="clr-namespace:BookAStar.Extensions;assembly=BookAStar"
xmlns:converters="clr-namespace:ZicMoove.Converters;assembly=ZicMoove"
xmlns:local="clr-namespace:ZicMoove;Assembly:ZicMoove"
xmlns:extensions="clr-namespace:ZicMoove.Extensions;assembly=ZicMoove"
Style="{StaticResource PageStyle}" >

View file

@ -6,7 +6,7 @@ using System.Threading.Tasks;
using Xamarin.Forms;
namespace BookAStar.Pages.ClientPages
namespace ZicMoove.Pages.ClientPages
{
public partial class SearchPage : TabbedPage
{

View file

@ -2,8 +2,8 @@
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:signature="clr-namespace:SignaturePad.Forms;assembly=SignaturePad.Forms"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
x:Class="BookAStar.ViewModels.Signing.Signing"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
x:Class="ZicMoove.ViewModels.Signing.Signing"
Style="{StaticResource PageStyle}">
<StackLayout>
<views:MarkdownView x:Name="mdView"

View file

@ -7,7 +7,7 @@ using System.Threading.Tasks;
using Xamarin.Forms;
namespace BookAStar.ViewModels.Signing
namespace ZicMoove.ViewModels.Signing
{
public partial class Signing : ContentPage
{

View file

@ -1,8 +1,8 @@

using BookAStar.Interfaces;
using ZicMoove.Interfaces;
using System;
namespace BookAStar.Model.Workflow
namespace ZicMoove.Model.Workflow
{
public class BillingLine : IBillingLine
{

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
x:Class="BookAStar.Pages.BookQueriesPage"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
x:Class="ZicMoove.Pages.BookQueriesPage"
Style="{StaticResource PageStyle}"
Page.Title="Les Demandes"
>

View file

@ -1,10 +1,10 @@
using BookAStar.Model;
using BookAStar.ViewModels;
using ZicMoove.Model;
using ZicMoove.ViewModels;
using Xamarin.Forms;
using XLabs.Ioc;
using XLabs.Platform.Services;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
using Data;
using ViewModels.EstimateAndBilling;

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
xmlns:maps="clr-namespace:Xamarin.Forms.Maps;assembly=Xamarin.Forms.Maps.dll"
x:Class="BookAStar.Pages.BookQueryPage"
x:Class="ZicMoove.Pages.BookQueryPage"
Style ="{StaticResource PageStyle}"
>
<ContentPage.Resources>

View file

@ -3,7 +3,7 @@ using System.Linq;
using Xamarin.Forms;
using Xamarin.Forms.Maps;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
using Data;
using EstimatePages;

View file

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
xmlns:converters="clr-namespace:BookAStar.Converters;assembly=BookAStar"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
xmlns:behaviors="clr-namespace:BookAStar.Behaviors;assembly=BookAStar"
xmlns:extensions="clr-namespace:BookAStar.Extensions;assembly=BookAStar"
x:Class="BookAStar.Pages.EditBillingLinePage"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
xmlns:converters="clr-namespace:ZicMoove.Converters;assembly=ZicMoove"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
xmlns:behaviors="clr-namespace:ZicMoove.Behaviors;assembly=ZicMoove"
xmlns:extensions="clr-namespace:ZicMoove.Extensions;assembly=ZicMoove"
x:Class="ZicMoove.Pages.EditBillingLinePage"
Style="{StaticResource PageStyle}">
<ContentPage.Resources>
<ResourceDictionary>
@ -23,7 +23,7 @@
<Style TargetType="Image">
<Setter Property="HeightRequest" Value="20" />
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Validation.error.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Validation.error.png}" />
</Style>
</converters:BooleanToObjectConverter.FalseObject>
@ -31,7 +31,7 @@
<Style TargetType="Image">
<Setter Property="HeightRequest" Value="20" />
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Validation.success.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Validation.success.png}" />
</Style>
</converters:BooleanToObjectConverter.TrueObject>

View file

@ -1,11 +1,11 @@
using BookAStar.Data;
using BookAStar.ViewModels;
using BookAStar.ViewModels.EstimateAndBilling;
using ZicMoove.Data;
using ZicMoove.ViewModels;
using ZicMoove.ViewModels.EstimateAndBilling;
using System;
using System.Collections.Generic;
using Xamarin.Forms;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
public partial class EditBillingLinePage : ContentPage
{

View file

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.EditEstimatePage"
xmlns:converters="clr-namespace:BookAStar.Converters;assembly=BookAStar"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
xmlns:behaviors="clr-namespace:BookAStar.Behaviors;assembly=BookAStar"
xmlns:extensions="clr-namespace:BookAStar.Extensions;assembly=BookAStar"
x:Class="ZicMoove.Pages.EditEstimatePage"
xmlns:converters="clr-namespace:ZicMoove.Converters;assembly=ZicMoove"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
xmlns:behaviors="clr-namespace:ZicMoove.Behaviors;assembly=ZicMoove"
xmlns:extensions="clr-namespace:ZicMoove.Extensions;assembly=ZicMoove"
Style="{StaticResource PageStyle}">
<ContentPage.Resources>
<ResourceDictionary>
@ -22,7 +22,7 @@
<Style TargetType="Image">
<Setter Property="HeightRequest" Value="20" />
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Validation.error.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Validation.error.png}" />
</Style>
</converters:BooleanToObjectConverter.FalseObject>
@ -30,7 +30,7 @@
<Style TargetType="Image">
<Setter Property="HeightRequest" Value="20" />
<Setter Property="Source"
Value="{extensions:ImageResource BookAStar.Images.Validation.success.png}" />
Value="{extensions:ImageResource ZicMoove.Images.Validation.success.png}" />
</Style>
</converters:BooleanToObjectConverter.TrueObject>

View file

@ -1,7 +1,7 @@
using System;
using Xamarin.Forms;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
using Data;
using EstimatePages;

View file

@ -2,8 +2,8 @@
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:signature="clr-namespace:SignaturePad.Forms;assembly=SignaturePad.Forms"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
x:Class="BookAStar.Pages.EstimatePages.EstimateSigningPage">
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
x:Class="ZicMoove.Pages.EstimatePages.EstimateSigningPage">
<ContentPage.Resources>
<ResourceDictionary>

View file

@ -4,7 +4,7 @@ using System.IO;
using System.Linq;
using Xamarin.Forms;
namespace BookAStar.Pages.EstimatePages
namespace ZicMoove.Pages.EstimatePages
{
using Data;
using ViewModels.EstimateAndBilling;

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.EstimatesClientPage"
x:Class="ZicMoove.Pages.EstimatesClientPage"
Style="{StaticResource PageStyle}">
<ScrollView>

View file

@ -6,7 +6,7 @@ using System.Threading.Tasks;
using Xamarin.Forms;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
public partial class EstimatesClientPage : ContentPage
{

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.EstimatesProviderPage"
x:Class="ZicMoove.Pages.EstimatesProviderPage"
Style="{StaticResource PageStyle}">
<ScrollView>

View file

@ -6,7 +6,7 @@ using System.Threading.Tasks;
using Xamarin.Forms;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
using Model.Workflow;
using ViewModels.EstimateAndBilling;

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.EstimatePages.ViewEstimatePage"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
x:Class="ZicMoove.Pages.EstimatePages.ViewEstimatePage"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
Style="{StaticResource PageStyle}">
<ContentPage.Resources>
<ResourceDictionary>

View file

@ -7,7 +7,7 @@ using System.Threading.Tasks;
using Xamarin.Forms;
namespace BookAStar.Pages.EstimatePages
namespace ZicMoove.Pages.EstimatePages
{
using ViewModels.EstimateAndBilling;

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
x:Class="BookAStar.Pages.HomePage"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
x:Class="ZicMoove.Pages.HomePage"
Style="{StaticResource PageStyle}"
Title="Accueil">
<ContentPage.Resources>

View file

@ -1,6 +1,6 @@
using Xamarin.Forms;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
using Data;
using ViewModels;

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BookAStar;Assembly:BookAStar"
x:Class="BookAStar.Pages.EventDetail" Style="{StaticResource PageStyle}">
xmlns:local="clr-namespace:ZicMoove;Assembly:ZicMoove"
x:Class="ZicMoove.Pages.EventDetail" Style="{StaticResource PageStyle}">
<ContentPage.Resources>
<ResourceDictionary>
<Style TargetType="Label">

View file

@ -1,7 +1,7 @@
using System;
using Xamarin.Forms;
namespace BookAStar
namespace ZicMoove
{
using Model.Workflow.Messaging;

View file

@ -1,10 +1,10 @@
using BookAStar.Model.Social;
using ZicMoove.Model.Social;
using System;
using Xamarin.Forms;
using Xamarin.Forms.Maps;
using Yavsc;
namespace BookAStar.Pages
namespace ZicMoove.Pages
{
public class PinPage : ContentPage
{

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.UserProfile.AccountChooserPage"
x:Class="ZicMoove.Pages.UserProfile.AccountChooserPage"
Title="{x:Static local:Strings.UserAccounts}"
Style="{StaticResource PageStyle}"
xmlns:lc="clr-namespace:XLabs.Forms.Controls;assembly=XLabs.Forms"

View file

@ -4,12 +4,12 @@ using Xamarin.Forms;
using System.Windows.Input;
using System.Collections.ObjectModel;
using System.Collections.Generic;
using BookAStar.Helpers;
using ZicMoove.Helpers;
using XLabs.Forms.Behaviors;
using XLabs.Forms.Controls;
using BookAStar.Model.Auth.Account;
using ZicMoove.Model.Auth.Account;
namespace BookAStar.Pages.UserProfile
namespace ZicMoove.Pages.UserProfile
{
public partial class AccountChooserPage : ContentPage

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
xmlns:extensions="clr-namespace:BookAStar.Extensions;assembly=BookAStar"
x:Class="BookAStar.Pages.UserProfile.DashboardPage"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
xmlns:extensions="clr-namespace:ZicMoove.Extensions;assembly=ZicMoove"
x:Class="ZicMoove.Pages.UserProfile.DashboardPage"
xmlns:lc="clr-namespace:XLabs.Forms.Controls;assembly=XLabs.Forms"
xmlns:lb="clr-namespace:XLabs.Forms.Behaviors;assembly=XLabs.Forms"
Style="{StaticResource DashboardPageStyle}">

View file

@ -2,7 +2,7 @@
using Xamarin.Forms;
using XLabs.Forms.Behaviors;
namespace BookAStar.Pages.UserProfile
namespace ZicMoove.Pages.UserProfile
{
using Data;
using Helpers;

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.UserProfile.UserFiles"
x:Class="ZicMoove.Pages.UserProfile.UserFiles"
Style="{StaticResource PageStyle}">
<ScrollView>
<StackLayout>

View file

@ -1,6 +1,6 @@
using Xamarin.Forms;
namespace BookAStar.Pages.UserProfile
namespace ZicMoove.Pages.UserProfile
{
using ViewModels.UserProfile;
using Data;

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BookAStar.Pages.UserProfile.UserProfilePage"
xmlns:local="clr-namespace:BookAStar;assembly=BookAStar"
xmlns:views="clr-namespace:BookAStar.Views;assembly=BookAStar"
xmlns:extensions="clr-namespace:BookAStar.Extensions;assembly=BookAStar"
x:Class="ZicMoove.Pages.UserProfile.UserProfilePage"
xmlns:local="clr-namespace:ZicMoove;assembly=ZicMoove"
xmlns:views="clr-namespace:ZicMoove.Views;assembly=ZicMoove"
xmlns:extensions="clr-namespace:ZicMoove.Extensions;assembly=ZicMoove"
xmlns:controls="clr-namespace:XLabs.Forms.Controls;assembly=XLabs.Forms"
Style="{StaticResource PageStyle}">

View file

@ -1,12 +1,12 @@

using BookAStar.ViewModels.UserProfile;
using ZicMoove.ViewModels.UserProfile;
using Plugin.Media;
using Plugin.Media.Abstractions;
using System;
using Xamarin.Forms;
namespace BookAStar.Pages.UserProfile
namespace ZicMoove.Pages.UserProfile
{
public partial class UserProfilePage : ContentPage
{