fixes last commit
This commit is contained in:
parent
be3087fff6
commit
05e5970bef
197 changed files with 2203 additions and 2204 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Application xmlns="http://xamarin.com/schemas/2014/forms"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="BookAStar.App"
|
||||
x:Class="ZicMoove.App"
|
||||
xmlns:sys="clr-namespace:System;assembly=mscorlib">
|
||||
|
||||
<Application.Resources>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ using XLabs.Settings;
|
|||
using XLabs;
|
||||
using XLabs.Enums;
|
||||
|
||||
namespace BookAStar
|
||||
namespace ZicMoove
|
||||
{
|
||||
using Data;
|
||||
using Interfaces;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Attributes
|
||||
namespace ZicMoove.Attributes
|
||||
{
|
||||
class CurrencyAttribute: Attribute
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Attributes
|
||||
namespace ZicMoove.Attributes
|
||||
{
|
||||
class DisplayAttribute : Attribute
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,32 +5,31 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar
|
||||
namespace ZicMoove
|
||||
{
|
||||
public static class Constants
|
||||
{
|
||||
|
||||
|
||||
#if DEV
|
||||
public const string ApplicationName = "yadev";
|
||||
public const string YavscHomeUrl = "http://dev.pschneider.fr";
|
||||
#else
|
||||
#if WDEV
|
||||
#endif
|
||||
#if WDEV
|
||||
// against a Windows local API
|
||||
public const string ApplicationName = "yawindev";
|
||||
public const string YavscHomeUrl = "http://192.168.0.29:5000";
|
||||
#else
|
||||
#endif
|
||||
#if YAVSC
|
||||
public const string ApplicationName = "yavsc";
|
||||
public const string YavscHomeUrl = "https://yavsc.pschneider.fr";
|
||||
#else
|
||||
#endif
|
||||
#if LUA
|
||||
public const string ApplicationName = "Luap";
|
||||
public const string YavscHomeUrl = "https://lua.pschneider.fr";
|
||||
#else
|
||||
public const string YavscHomeUrl = "https://booking.pschneider.fr";
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#if ZICMOOVE
|
||||
public const string ApplicationName = "ZicMoove";
|
||||
public const string YavscHomeUrl = "https://zicmoove.pschneider.fr";
|
||||
#endif
|
||||
public static readonly string AuthorizeUrl = YavscHomeUrl + "/authorize";
|
||||
public static readonly string RedirectUrl = YavscHomeUrl + "/oauth/success";
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class DecimalValidatorBehavior : Behavior<Entry>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class EditorMaxLengthValidator : Behavior<Editor>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Text.RegularExpressions;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class EmailValidatorBehavior : RegexValidatorBehavior
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class IntegerEntryBehavior : Behavior<Entry>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using BookAStar.Views;
|
||||
using ZicMoove.Views;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class MarkdownViewLengthValidator : Behavior<MarkdownView>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class PickerBehavior : Behavior<Picker>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Text.RegularExpressions;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class RegexValidatorBehavior : Behavior<Entry>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Behaviors
|
||||
namespace ZicMoove.Behaviors
|
||||
{
|
||||
public class StarBehavior : Behavior<View>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Converters
|
||||
namespace ZicMoove.Converters
|
||||
{
|
||||
public class BooleanToObjectConverter<T> : IValueConverter
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Globalization;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Converters
|
||||
namespace ZicMoove.Converters
|
||||
{
|
||||
/// <summary>
|
||||
/// When EnumType:int
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Converters
|
||||
namespace ZicMoove.Converters
|
||||
{
|
||||
class GenderConverter : IValueConverter
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Globalization;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Converters
|
||||
namespace ZicMoove.Converters
|
||||
{
|
||||
public class NotValueConverter : IValueConverter
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Converters
|
||||
namespace ZicMoove.Converters
|
||||
{
|
||||
class RatingText : IValueConverter
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Converters
|
||||
namespace ZicMoove.Converters
|
||||
{
|
||||
public class SignalRConnectionStateToObject<T> : IValueConverter
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Data
|
||||
namespace ZicMoove.Data
|
||||
{
|
||||
class ApiCallFailedException : Exception
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace BookAStar.Data
|
||||
namespace ZicMoove.Data
|
||||
{
|
||||
using Model;
|
||||
using Model.Blog;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
namespace BookAStar.Data
|
||||
namespace ZicMoove.Data
|
||||
{
|
||||
using Helpers;
|
||||
using Model.Workflow;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Collections.Generic;
|
|||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
|
||||
namespace BookAStar.Data
|
||||
namespace ZicMoove.Data
|
||||
{
|
||||
public class LocalEntity<V, K> : ObservableCollection<V>, ILocalEntity<V, K> where K : IEquatable<K>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using Newtonsoft.Json;
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Data.NonCrUD
|
||||
namespace ZicMoove.Data.NonCrUD
|
||||
{
|
||||
using Helpers;
|
||||
using Model.FileSystem;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using Newtonsoft.Json;
|
|||
using System.Threading.Tasks;
|
||||
using System.Net;
|
||||
|
||||
namespace BookAStar.Data
|
||||
namespace ZicMoove.Data
|
||||
{
|
||||
using Helpers;
|
||||
using System.Diagnostics;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
|
||||
namespace BookAStar.Data
|
||||
namespace ZicMoove.Data
|
||||
{
|
||||
public class RemoteEntityRO<V,K>: RemoteEntity<V,K> where K: IEquatable<K>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
using BookAStar.Attributes;
|
||||
using ZicMoove.Attributes;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
|
@ -6,7 +6,7 @@ using System.Reflection;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Extensions
|
||||
namespace ZicMoove.Extensions
|
||||
{
|
||||
public static class EnumExtensions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
|||
using Xamarin.Forms;
|
||||
using Xamarin.Forms.Xaml;
|
||||
|
||||
namespace BookAStar.Extensions
|
||||
namespace ZicMoove.Extensions
|
||||
{
|
||||
[ContentProperty("Source")]
|
||||
public class ImageResourceExtension : IMarkupExtension
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
using BookAStar.Interfaces;
|
||||
using ZicMoove.Interfaces;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Factories
|
||||
namespace ZicMoove.Factories
|
||||
{
|
||||
public class ViewFactory : IViewFactory
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
|
||||
namespace BookAStar
|
||||
namespace ZicMoove
|
||||
{
|
||||
public class NotIdentifiedException : Exception
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Helpers
|
||||
namespace ZicMoove.Helpers
|
||||
{
|
||||
public static class PageHelpers
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Linq.Expressions;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Helpers
|
||||
namespace ZicMoove.Helpers
|
||||
{
|
||||
public static class PropertySupport
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
|
||||
namespace BookAStar
|
||||
namespace ZicMoove
|
||||
{
|
||||
public class ServiceNotAvailable : Exception
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
// Helpers/Settings.cs
|
||||
#if USELESS_but_makes_the_component_removable // this file must exist ^^
|
||||
|
||||
namespace BookAStar.Helpers
|
||||
namespace ZicMoove.Helpers
|
||||
{
|
||||
/// <summary>
|
||||
/// This is the Settings static class that can be used in your Core solution or in any
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Net.Http;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Helpers
|
||||
namespace ZicMoove.Helpers
|
||||
{
|
||||
using Data.NonCrUD;
|
||||
using Model.FileSystem;
|
||||
|
|
@ -16,7 +16,7 @@ namespace BookAStar.Helpers
|
|||
public static ImageSource Avatar(string avatarPath)
|
||||
{
|
||||
var result = avatarPath == null ?
|
||||
ImageSource.FromResource( "BookAStar.Images.Users.icon_user.png") :
|
||||
ImageSource.FromResource( "ZicMoove.Images.Users.icon_user.png") :
|
||||
ImageSource.FromUri(new Uri(Constants.YavscHomeUrl+"/Avatars/"+avatarPath)) ;
|
||||
return result;
|
||||
}
|
||||
|
|
@ -24,14 +24,14 @@ namespace BookAStar.Helpers
|
|||
public static ImageSource SmallAvatar(string avatarPath, string username)
|
||||
{
|
||||
return avatarPath == null ?
|
||||
ImageSource.FromResource("BookAStar.Images.Users.icon_user.png") :
|
||||
ImageSource.FromResource("ZicMoove.Images.Users.icon_user.png") :
|
||||
ImageSource.FromUri(new Uri($"{Constants.YavscHomeUrl}/Avatars/{username}.s.png"));
|
||||
}
|
||||
|
||||
public static ImageSource ExtraSmallAvatar(string avatarPath, string username)
|
||||
{
|
||||
return avatarPath == null ?
|
||||
ImageSource.FromResource("BookAStar.Images.Users.icon_user.png") :
|
||||
ImageSource.FromResource("ZicMoove.Images.Users.icon_user.png") :
|
||||
ImageSource.FromUri(new Uri($"{Constants.YavscHomeUrl}/Avatars/{username}.xs.png"));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
|
||||
namespace BookAStar.Interfaces
|
||||
namespace ZicMoove.Interfaces
|
||||
{
|
||||
public interface IBillingLine
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using System;
|
||||
using BookAStar.Model.Social;
|
||||
using BookAStar.Model;
|
||||
using ZicMoove.Model.Social;
|
||||
using ZicMoove.Model;
|
||||
|
||||
namespace BookAStar.Interfaces
|
||||
namespace ZicMoove.Interfaces
|
||||
{
|
||||
public interface IBookQueryData
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Interfaces
|
||||
namespace ZicMoove.Interfaces
|
||||
{
|
||||
public interface IComponentContext
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using BookAStar.Model.Workflow;
|
||||
using ZicMoove.Model.Workflow;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace BookAStar.Model.Interfaces
|
||||
namespace ZicMoove.Model.Interfaces
|
||||
{
|
||||
public interface IEstimate
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
namespace BookAStar
|
||||
namespace ZicMoove
|
||||
{
|
||||
public interface ILoadable
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Interfaces
|
||||
namespace ZicMoove.Interfaces
|
||||
{
|
||||
public interface IMDEditor
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Interfaces
|
||||
namespace ZicMoove.Interfaces
|
||||
{
|
||||
public interface IModelViewModel : INotifyPropertyChanged
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
using BookAStar.Model.Auth.Account;
|
||||
using ZicMoove.Model.Auth.Account;
|
||||
using System;
|
||||
using Xamarin.Forms;
|
||||
using Yavsc.Models.Identity;
|
||||
|
||||
namespace BookAStar.Interfaces
|
||||
namespace ZicMoove.Interfaces
|
||||
{
|
||||
public interface IPlatform
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Interfaces
|
||||
namespace ZicMoove.Interfaces
|
||||
{
|
||||
public interface IViewFactory
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
using BookAStar.Model.Access;
|
||||
using ZicMoove.Model.Access;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using Yavsc.Models;
|
||||
|
||||
namespace BookAStar.Model.Access
|
||||
namespace ZicMoove.Model.Access
|
||||
{
|
||||
public class BlackListed : IBlackListed
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Model.Auth.Account
|
||||
namespace ZicMoove.Model.Auth.Account
|
||||
{
|
||||
using Yavsc.Models;
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Model.Auth.Account
|
||||
namespace ZicMoove.Model.Auth.Account
|
||||
{
|
||||
public class Tokens
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
using BookAStar.Helpers;
|
||||
using ZicMoove.Helpers;
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Model.Auth.Account
|
||||
namespace ZicMoove.Model.Auth.Account
|
||||
{
|
||||
public class User : INotifyPropertyChanged
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
|
||||
namespace BookAStar.Model.Auth.Account
|
||||
namespace ZicMoove.Model.Auth.Account
|
||||
{
|
||||
public partial class passwrecovery
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using Yavsc.Models;
|
||||
|
||||
namespace BookAStar.Model.Blog
|
||||
namespace ZicMoove.Model.Blog
|
||||
{
|
||||
public partial class Blog : IBlog
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
|
||||
|
||||
namespace BookAStar.Model.Blog
|
||||
namespace ZicMoove.Model.Blog
|
||||
{
|
||||
public partial class BlogTag
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
public class BookQuery
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
|
||||
public class MusicalPreference : MusicalTendency {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
|
||||
public class MusicalTendency {
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
using BookAStar.Helpers;
|
||||
using BookAStar.Model.Social;
|
||||
using ZicMoove.Helpers;
|
||||
using ZicMoove.Model.Social;
|
||||
using Newtonsoft.Json;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Model
|
||||
namespace ZicMoove.Model
|
||||
{
|
||||
public class ClientProviderInfo
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Model.FileSystem
|
||||
namespace ZicMoove.Model.FileSystem
|
||||
{
|
||||
public class FileAddress : IEquatable<FileAddress>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BookAStar.Model.FileSystem
|
||||
namespace ZicMoove.Model.FileSystem
|
||||
{
|
||||
public class UserFileInfo
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
using BookAStar.Model.Social;
|
||||
using ZicMoove.Model.Social;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace BookAStar
|
||||
namespace ZicMoove
|
||||
{
|
||||
[Obsolete("Use Helpers.DataManager")]
|
||||
public static class Manager
|
||||
|
|
@ -28,7 +28,7 @@ namespace BookAStar
|
|||
new LocalizedEvent {
|
||||
|
||||
Title = "Yavsc Party",
|
||||
Description = "Lancement en fanfare de la version 1.0 de BookAStar, l'appli des fétards",
|
||||
Description = "Lancement en fanfare de la version 1.0 de ZicMoove, l'appli des fétards",
|
||||
ProviderId = "paul",
|
||||
ProviderName = "Yavsc Fondation",
|
||||
EventWebPage = "http://lua.pschneider.fr/",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
namespace BookAStar.Model.Workflow
|
||||
namespace ZicMoove.Model.Workflow
|
||||
{
|
||||
public partial class BaseProduct
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Linq;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Model.Settings
|
||||
namespace ZicMoove.Model.Settings
|
||||
{
|
||||
class SignatureSettings
|
||||
{
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Model.Workflow.Calendar
|
||||
namespace ZicMoove.Model.Workflow.Calendar
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Model.Workflow.Calendar
|
||||
namespace ZicMoove.Model.Workflow.Calendar
|
||||
{
|
||||
/// <summary>
|
||||
/// Hollydays.
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
namespace BookAStar.Model.Workflow.Calendar
|
||||
namespace ZicMoove.Model.Workflow.Calendar
|
||||
{
|
||||
/// <summary>
|
||||
/// Periodicity.
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using BookAStar.Model.Social;
|
||||
using BookAStar.Model.Workflow.Marketing;
|
||||
using ZicMoove.Model.Social;
|
||||
using ZicMoove.Model.Workflow.Marketing;
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Model.Workflow.Calendar
|
||||
namespace ZicMoove.Model.Workflow.Calendar
|
||||
{
|
||||
/// <summary>
|
||||
/// A date, between two persons
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Calendar
|
||||
namespace ZicMoove.Model.Workflow.Calendar
|
||||
{
|
||||
/// <summary>
|
||||
/// Schedule.
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
namespace BookAStar.Model.Workflow.Calendar
|
||||
namespace ZicMoove.Model.Workflow.Calendar
|
||||
{
|
||||
/// <summary>
|
||||
/// Week day.
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
using BookAStar.Data;
|
||||
using ZicMoove.Data;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
namespace BookAStar.Model.Social.Messaging
|
||||
namespace ZicMoove.Model.Social.Messaging
|
||||
{
|
||||
public class ChatMessage
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace BookAStar.Model.Workflow.Messaging
|
||||
namespace ZicMoove.Model.Workflow.Messaging
|
||||
{
|
||||
public enum ChatStatus
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
|||
using System.Threading.Tasks;
|
||||
using YavscLib;
|
||||
|
||||
namespace BookAStar.Model.Social.Chat
|
||||
namespace ZicMoove.Model.Social.Chat
|
||||
{
|
||||
public class Connection : IConnection
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
public partial class Circle {
|
||||
public long Id { get; set; }
|
||||
|
|
|
|||
|
|
@ -19,10 +19,10 @@
|
|||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
using BookAStar.Model.Workflow.Messaging;
|
||||
using ZicMoove.Model.Workflow.Messaging;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
/// <summary>
|
||||
/// Event pub.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
|
||||
public partial class CircleMember
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
|
||||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
|
||||
public class CompanyInfoMessage
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
public class Contact
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
using System;
|
||||
using Android.Runtime;
|
||||
using BookAStar.Model.Workflow.Messaging;
|
||||
using ZicMoove.Model.Workflow.Messaging;
|
||||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
namespace BookAStar.Model.Social
|
||||
namespace ZicMoove.Model.Social
|
||||
{
|
||||
public class LocationType
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
public class Activity
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
public partial class BaseProduct
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using BookAStar.Model.Social;
|
||||
using ZicMoove.Model.Social;
|
||||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
|
||||
public class PerformerProfile {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
public partial class Product : BaseProduct
|
||||
{
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
using Social;
|
||||
using System;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
|
||||
public enum BillingMode {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
public class Skill {
|
||||
public string Name { get; set; }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Marketing
|
||||
namespace ZicMoove.Model.Workflow.Marketing
|
||||
{
|
||||
public partial class UserSkills
|
||||
{
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Messaging
|
||||
namespace ZicMoove.Model.Workflow.Messaging
|
||||
{
|
||||
/// <summary>
|
||||
/// Base event.
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using BookAStar.Model.Social;
|
||||
using ZicMoove.Model.Social;
|
||||
using System;
|
||||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Messaging
|
||||
namespace ZicMoove.Model.Workflow.Messaging
|
||||
{
|
||||
/// <summary>
|
||||
/// Query, for a date, with a given perfomer, at this given place.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using BookAStar.Model.Social;
|
||||
using ZicMoove.Model.Social;
|
||||
using System;
|
||||
|
||||
namespace BookAStar.Model.Workflow.Messaging
|
||||
namespace ZicMoove.Model.Workflow.Messaging
|
||||
{
|
||||
|
||||
//
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
namespace BookAStar.Model.Workflow.Messaging
|
||||
namespace ZicMoove.Model.Workflow.Messaging
|
||||
{
|
||||
/// <summary>
|
||||
/// A Notification, that mocks the one sent to Google,
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
|
||||
|
||||
|
||||
using BookAStar.Model.Social;
|
||||
using ZicMoove.Model.Social;
|
||||
|
||||
namespace BookAStar.Model.Workflow.Messaging
|
||||
namespace ZicMoove.Model.Workflow.Messaging
|
||||
{
|
||||
/// <summary>
|
||||
/// Position and keyphrase.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
|
||||
namespace BookAStar
|
||||
namespace ZicMoove
|
||||
{
|
||||
public class SearchQuery
|
||||
{
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
namespace BookAStar.Model.Workflow.Messaging
|
||||
namespace ZicMoove.Model.Workflow.Messaging
|
||||
{
|
||||
/// <summary>
|
||||
/// NF event.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace BookAStar.Model.Workflow
|
||||
namespace ZicMoove.Model.Workflow
|
||||
{
|
||||
using Data;
|
||||
using Interfaces;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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}" >
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
|||
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Pages.ClientPages
|
||||
namespace ZicMoove.Pages.ClientPages
|
||||
{
|
||||
public partial class SearchPage : TabbedPage
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.ViewModels.Signing
|
||||
namespace ZicMoove.ViewModels.Signing
|
||||
{
|
||||
public partial class Signing : ContentPage
|
||||
{
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue