fixes last commit
This commit is contained in:
parent
be3087fff6
commit
05e5970bef
197 changed files with 2203 additions and 2204 deletions
|
|
@ -11,7 +11,7 @@ using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using Android.Accounts;
|
using Android.Accounts;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Accounts
|
namespace ZicMoove.Droid.Accounts
|
||||||
{
|
{
|
||||||
class YavscAccountAuthenticator : AbstractAccountAuthenticator
|
class YavscAccountAuthenticator : AbstractAccountAuthenticator
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
using Plugin.Settings;
|
using Plugin.Settings;
|
||||||
using Plugin.Settings.Abstractions;
|
using Plugin.Settings.Abstractions;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Helpers
|
namespace ZicMoove.Droid.Helpers
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This is the Settings static class that can be used in your Core solution or in any
|
/// This is the Settings static class that can be used in your Core solution or in any
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ using System.Threading.Tasks;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using BookAStar;
|
using ZicMoove;
|
||||||
|
|
||||||
namespace Yavsc.Helpers
|
namespace Yavsc.Helpers
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@ using System.Collections.Specialized;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Runtime.Serialization.Json;
|
using System.Runtime.Serialization.Json;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using BookAStar.Model.Auth.Account;
|
using ZicMoove.Model.Auth.Account;
|
||||||
|
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
|
|
||||||
public static class YavscHelpers
|
public static class YavscHelpers
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ using Android.Runtime;
|
||||||
using Android.Views;
|
using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Interfaces
|
namespace ZicMoove.Droid.Interfaces
|
||||||
{
|
{
|
||||||
interface IGCMessageHandler
|
interface IGCMessageHandler
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -35,12 +35,12 @@ using XLabs.Serialization.JsonNET;
|
||||||
using Yavsc.Helpers;
|
using Yavsc.Helpers;
|
||||||
using Yavsc.Models.Identity;
|
using Yavsc.Models.Identity;
|
||||||
|
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
using Android.Runtime;
|
using Android.Runtime;
|
||||||
using Android.Support.V4.App;
|
using Android.Support.V4.App;
|
||||||
using Android.Support.V4.Content;
|
using Android.Support.V4.Content;
|
||||||
using BookAStar.Interfaces;
|
using ZicMoove.Interfaces;
|
||||||
using Data;
|
using Data;
|
||||||
using Droid.OAuth;
|
using Droid.OAuth;
|
||||||
using Helpers;
|
using Helpers;
|
||||||
|
|
@ -48,7 +48,7 @@ namespace BookAStar.Droid
|
||||||
using Model.Auth.Account;
|
using Model.Auth.Account;
|
||||||
using static Android.Manifest;
|
using static Android.Manifest;
|
||||||
|
|
||||||
[Activity(Name = "fr.pschneider.bas.MainActivity", Label = "BookAStar", Theme = "@style/MainTheme", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
|
[Activity(Name = "fr.pschneider.bas.MainActivity", Label = "ZicMoove", Theme = "@style/MainTheme", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
|
||||||
public class MainActivity :
|
public class MainActivity :
|
||||||
|
|
||||||
// global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity,
|
// global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity,
|
||||||
|
|
@ -103,7 +103,7 @@ namespace BookAStar.Droid
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var fapp = new BookAStar.App(this);
|
var fapp = new ZicMoove.App(this);
|
||||||
|
|
||||||
|
|
||||||
LoadApplication(fapp);
|
LoadApplication(fapp);
|
||||||
|
|
@ -307,7 +307,7 @@ namespace BookAStar.Droid
|
||||||
using (var reader = new StreamReader(exception.Response.GetResponseStream()))
|
using (var reader = new StreamReader(exception.Response.GetResponseStream()))
|
||||||
{
|
{
|
||||||
responseText = reader.ReadToEnd();
|
responseText = reader.ReadToEnd();
|
||||||
Log.Debug("BookAStar", responseText);
|
Log.Debug("ZicMoove", responseText);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ using Android.Widget;
|
||||||
using Android.Webkit;
|
using Android.Webkit;
|
||||||
using Java.Interop;
|
using Java.Interop;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Markdown
|
namespace ZicMoove.Droid.Markdown
|
||||||
{
|
{
|
||||||
public class JsBridgeMarkdown : Java.Lang.Object
|
public class JsBridgeMarkdown : Java.Lang.Object
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ using XLabs.Platform.Mvvm;
|
||||||
using XLabs.Forms;
|
using XLabs.Forms;
|
||||||
using static Android.Views.View;
|
using static Android.Views.View;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Markdown
|
namespace ZicMoove.Droid.Markdown
|
||||||
{
|
{
|
||||||
class MDContextMenu : AppCompatDialog
|
class MDContextMenu : AppCompatDialog
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using Android.Webkit;
|
using Android.Webkit;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Markdown
|
namespace ZicMoove.Droid.Markdown
|
||||||
{
|
{
|
||||||
class MDWebView : WebView
|
class MDWebView : WebView
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace BookAStar.Droid.Markdown
|
namespace ZicMoove.Droid.Markdown
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
@ -17,7 +17,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
|
|
||||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("RazorTemplatePreprocessor", "4.2.1.62")]
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("RazorTemplatePreprocessor", "4.2.2.11")]
|
||||||
public partial class MarkdownEditor : MarkdownEditorBase
|
public partial class MarkdownEditor : MarkdownEditorBase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
@ -171,23 +171,23 @@ WriteLiteral(">\r\n var toolbarOptions = [\r\n [\'bold\', \'ital
|
||||||
"\'header\': 1 }, { \'header\': 2 }, { \'header\': 3 }], // custom button" +
|
"\'header\': 1 }, { \'header\': 2 }, { \'header\': 3 }], // custom button" +
|
||||||
" values\r\n [{ \'list\': \'ordered\' }, { \'list\': \'bullet\' }],\r\n [{ \'indent\'" +
|
" values\r\n [{ \'list\': \'ordered\' }, { \'list\': \'bullet\' }],\r\n [{ \'indent\'" +
|
||||||
": \'-1\' }, { \'indent\': \'+1\' }], // outdent/indent\r\n [\'link\', \'image" +
|
": \'-1\' }, { \'indent\': \'+1\' }], // outdent/indent\r\n [\'link\', \'image" +
|
||||||
"\', \'video\'],\r\n [\'clean\'] // remove " +
|
"\', \'audio\', \'video\'],\r\n [\'clean\'] /" +
|
||||||
"formatting button\r\n ];\r\n\r\n var showImageUI = function (val" +
|
"/ remove formatting button\r\n ];\r\n\r\n var showImageUI = func" +
|
||||||
"ue) {\r\n if (value) {\r\n var href = prompt(\'Ente" +
|
"tion (value) {\r\n if (value) {\r\n var href = pro" +
|
||||||
"r the URL\');\r\n this.quill.format(\'image\', href);\r\n " +
|
"mpt(\'Enter the URL\');\r\n this.quill.format(\'image\', href);\r\n " +
|
||||||
" } else {\r\n this.quill.format(\'image\', false);\r\n " +
|
" } else {\r\n this.quill.format(\'image\', false);\r\n" +
|
||||||
" }\r\n };\r\n\r\n $(document).ready(function () {\r\n " +
|
" }\r\n };\r\n\r\n $(document).ready(function () {" +
|
||||||
" var quill = new Quill(\'#bubble-container\', {\r\n modul" +
|
"\r\n var quill = new Quill(\'#bubble-container\', {\r\n " +
|
||||||
"es: {\r\n toolbar: toolbarOptions\r\n },\r\n" +
|
" modules: {\r\n toolbar: toolbarOptions\r\n " +
|
||||||
" placeholder: \'Composez votre texte ...\',\r\n " +
|
" },\r\n placeholder: \'Composez votre texte ...\',\r\n " +
|
||||||
" theme: \'snow\'\r\n });\r\n\r\n function getMD() {\r\n " +
|
" theme: \'snow\'\r\n });\r\n\r\n function getMD(" +
|
||||||
" return markdownize($(\'#bubble-container div.ql-editor\').html())\r" +
|
") {\r\n return markdownize($(\'#bubble-container div.ql-editor\')" +
|
||||||
"\n }\r\n quill.on(\'text-change\', function (delta, old" +
|
".html())\r\n }\r\n quill.on(\'text-change\', function (d" +
|
||||||
"Delta, source) {\r\n if (source === \"user\") {\r\n " +
|
"elta, oldDelta, source) {\r\n if (source === \"user\") {\r\n " +
|
||||||
" contentEdited(getMD());\r\n }\r\n });\r\n " +
|
" contentEdited(getMD());\r\n }\r\n " +
|
||||||
" var toolbar = quill.getModule(\'toolbar\');\r\n toolbar." +
|
" });\r\n var toolbar = quill.getModule(\'toolbar\');\r\n " +
|
||||||
"addHandler(\'image\', showImageUI);\r\n jsLoaded();\r\n });\r" +
|
" toolbar.addHandler(\'image\', showImageUI);\r\n jsLoaded();\r\n " +
|
||||||
"\n </script>\r\n");
|
" });\r\n </script>\r\n");
|
||||||
|
|
||||||
|
|
||||||
#line 86 "MarkdownEditor.cshtml"
|
#line 86 "MarkdownEditor.cshtml"
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
[{ 'header': 1 }, { 'header': 2 }, { 'header': 3 }], // custom button values
|
[{ 'header': 1 }, { 'header': 2 }, { 'header': 3 }], // custom button values
|
||||||
[{ 'list': 'ordered' }, { 'list': 'bullet' }],
|
[{ 'list': 'ordered' }, { 'list': 'bullet' }],
|
||||||
[{ 'indent': '-1' }, { 'indent': '+1' }], // outdent/indent
|
[{ 'indent': '-1' }, { 'indent': '+1' }], // outdent/indent
|
||||||
['link', 'image', 'video'],
|
['link', 'image', 'audio', 'video'],
|
||||||
['clean'] // remove formatting button
|
['clean'] // remove formatting button
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using Android.Graphics;
|
using Android.Graphics;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Markdown
|
namespace ZicMoove.Droid.Markdown
|
||||||
{
|
{
|
||||||
public class MarkdownViewModel
|
public class MarkdownViewModel
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
|
|
||||||
using BookAStar.Views;
|
using ZicMoove.Views;
|
||||||
using Android.Webkit;
|
using Android.Webkit;
|
||||||
using Xamarin.Forms.Platform.Android;
|
using Xamarin.Forms.Platform.Android;
|
||||||
using BookAStar.Droid;
|
using ZicMoove.Droid;
|
||||||
using System;
|
using System;
|
||||||
using Java.Interop;
|
using Java.Interop;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using Android.Views;
|
using Android.Views;
|
||||||
|
|
||||||
[assembly: Xamarin.Forms.ExportRenderer(typeof(MarkdownView), typeof(MarkdownViewRenderer))]
|
[assembly: Xamarin.Forms.ExportRenderer(typeof(MarkdownView), typeof(MarkdownViewRenderer))]
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
using Markdown;
|
using Markdown;
|
||||||
using XLabs.Forms;
|
using XLabs.Forms;
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using Android.Webkit;
|
using Android.Webkit;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Markdown
|
namespace ZicMoove.Droid.Markdown
|
||||||
{
|
{
|
||||||
class MarkdownWebChromeClient : WebChromeClient
|
class MarkdownWebChromeClient : WebChromeClient
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ using Xamarin.Utilities;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Xamarin.Auth;
|
using Xamarin.Auth;
|
||||||
using BookAStar.Droid.OAuth.Xamarin.Utilities;
|
using ZicMoove.Droid.OAuth.Xamarin.Utilities;
|
||||||
namespace BookAStar.Droid.OAuth {
|
namespace ZicMoove.Droid.OAuth {
|
||||||
public class YaOAuth2Authenticator : WebRedirectAuthenticator
|
public class YaOAuth2Authenticator : WebRedirectAuthenticator
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="fr.pschneider.bas" android:installLocation="auto">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="fr.pschneider.bas" android:installLocation="auto">
|
||||||
<uses-sdk android:minSdkVersion="15" />
|
<uses-sdk android:minSdkVersion="15" />
|
||||||
<application android:allowBackup="true" android:label="Booking Star" android:icon="@drawable/icon" android:theme="@style/MainTheme" android:configChanges="navigation|screenLayout|orientation|screenSize|smallestScreenSize">
|
<application android:allowBackup="true" android:label="@string/app_name" android:icon="@drawable/icon" android:theme="@style/MainTheme" android:configChanges="navigation|screenLayout|orientation|screenSize|smallestScreenSize">
|
||||||
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyBLSEDhZixwpHDsWmO2pKwgGDJReoTuQ7A" />
|
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyBLSEDhZixwpHDsWmO2pKwgGDJReoTuQ7A" />
|
||||||
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
|
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
|
||||||
<receiver android:name="com.google.android.gms.gcm.GcmReceiver" android:exported="true" android:permission="com.google.android.c2dm.permission.SEND">
|
<receiver android:name="com.google.android.gms.gcm.GcmReceiver" android:exported="true" android:permission="com.google.android.c2dm.permission.SEND">
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,11 @@ using Android.App;
|
||||||
// General Information about an assembly is controlled through the following
|
// General Information about an assembly is controlled through the following
|
||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("BookAStar.Droid")]
|
[assembly: AssemblyTitle("ZicMoove.Droid")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
[assembly: AssemblyProduct("BookAStar.Droid")]
|
[assembly: AssemblyProduct("ZicMoove.Droid")]
|
||||||
[assembly: AssemblyCopyright("Copyright © Paul Albert Schneider 2016")]
|
[assembly: AssemblyCopyright("Copyright © Paul Albert Schneider 2016")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("fr")]
|
[assembly: AssemblyCulture("fr")]
|
||||||
|
|
|
||||||
|
|
@ -29,18 +29,18 @@ using XLabs.Enums;
|
||||||
using XLabs.Forms.Extensions;
|
using XLabs.Forms.Extensions;
|
||||||
using Color = Xamarin.Forms.Color;
|
using Color = Xamarin.Forms.Color;
|
||||||
using View = Android.Views.View;
|
using View = Android.Views.View;
|
||||||
using BookAStar.Rendering;
|
using ZicMoove.Rendering;
|
||||||
using BookAStar.Views;
|
using ZicMoove.Views;
|
||||||
using Xamarin.Forms.Platform.Android.AppCompat;
|
using Xamarin.Forms.Platform.Android.AppCompat;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
using Xamarin.Forms.Platform.Android;
|
using Xamarin.Forms.Platform.Android;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using BookAStar.Helpers;
|
using ZicMoove.Helpers;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
[assembly: ExportRenderer(typeof(ImageButton), typeof(ImageButtonRenderer))]
|
[assembly: ExportRenderer(typeof(ImageButton), typeof(ImageButtonRenderer))]
|
||||||
namespace BookAStar.Rendering
|
namespace ZicMoove.Rendering
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Draws a button on the Android platform with the image shown in the right
|
/// Draws a button on the Android platform with the image shown in the right
|
||||||
|
|
|
||||||
3664
ZicMoove/ZicMoove.Droid/Resources/Resource.Designer.cs
generated
3664
ZicMoove/ZicMoove.Droid/Resources/Resource.Designer.cs
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">Booking star</string>
|
<string name="app_name">ZicMoove</string>
|
||||||
<string name="send_to_app_name">Vers les étoiles</string>
|
<string name="send_to_app_name">Vers les étoiles</string>
|
||||||
<string name="yavscIdentRemoved">Identification supprimée</string>
|
<string name="yavscIdentRemoved">Identification supprimée</string>
|
||||||
<string name="yavscAccountTypeName">Booking star</string>
|
<string name="yavscAccountTypeName">ZicMoove</string>
|
||||||
<string name="cancel">Annuler</string>
|
<string name="cancel">Annuler</string>
|
||||||
<string name="Settings">Paramètres</string>
|
<string name="Settings">Paramètres</string>
|
||||||
<string name="Title">Title</string>
|
<string name="Title">Title</string>
|
||||||
|
|
@ -15,8 +15,8 @@
|
||||||
<string name="url_hint">url_hint</string>
|
<string name="url_hint">url_hint</string>
|
||||||
<string name="picture">picture</string>
|
<string name="picture">picture</string>
|
||||||
<string name="google_app_id">325408689282</string>
|
<string name="google_app_id">325408689282</string>
|
||||||
<string name="pref_screen_title">Comptes Booking Star</string>
|
<string name="pref_screen_title">Comptes ZicMoove</string>
|
||||||
<string name="account_authenticator_label">Comptes Booking Star</string>
|
<string name="account_authenticator_label">Comptes ZicMoove</string>
|
||||||
|
|
||||||
<string name="copy">Copier</string>
|
<string name="copy">Copier</string>
|
||||||
<string name="past">Coller</string>
|
<string name="past">Coller</string>
|
||||||
|
|
@ -33,6 +33,6 @@
|
||||||
|
|
||||||
<string name="accounts">Comptes</string>
|
<string name="accounts">Comptes</string>
|
||||||
<string name="bookingstar_accounts_pref_screen_summary">
|
<string name="bookingstar_accounts_pref_screen_summary">
|
||||||
Préférences des comptes Booking Star
|
Préférences des comptes ZicMoove
|
||||||
</string>
|
</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ using Android.Runtime;
|
||||||
using Android.Views;
|
using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
|
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
[Activity(Name= "fr.pschneider.bas.SendFilesActivity", Label = "SendFilesActivity")]
|
[Activity(Name= "fr.pschneider.bas.SendFilesActivity", Label = "SendFilesActivity")]
|
||||||
public class SendFilesActivity : Activity
|
public class SendFilesActivity : Activity
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@ using Android.OS;
|
||||||
using Android.Runtime;
|
using Android.Runtime;
|
||||||
using Android.Views;
|
using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using BookAStar.Droid.OAuth;
|
using ZicMoove.Droid.OAuth;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Services
|
namespace ZicMoove.Droid.Services
|
||||||
{
|
{
|
||||||
[Service(
|
[Service(
|
||||||
Name = "fr.pschneider.bas.AccountChooserService",
|
Name = "fr.pschneider.bas.AccountChooserService",
|
||||||
|
|
|
||||||
|
|
@ -9,13 +9,13 @@ using Android.OS;
|
||||||
using Android.Runtime;
|
using Android.Runtime;
|
||||||
using Android.Views;
|
using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using BookAStar.Droid.Interfaces;
|
using ZicMoove.Droid.Interfaces;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using BookAStar.Model.Social;
|
using ZicMoove.Model.Social;
|
||||||
using BookAStar.Data;
|
using ZicMoove.Data;
|
||||||
using BookAStar.Model;
|
using ZicMoove.Model;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Services.GCMHandlers
|
namespace ZicMoove.Droid.Services.GCMHandlers
|
||||||
{
|
{
|
||||||
class BookQueryGCMHandler : GCMessageHandler
|
class BookQueryGCMHandler : GCMessageHandler
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -10,12 +10,12 @@ using Android.Runtime;
|
||||||
using Android.Views;
|
using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using BookAStar.Model.Social;
|
using ZicMoove.Model.Social;
|
||||||
using BookAStar.Model;
|
using ZicMoove.Model;
|
||||||
using BookAStar.Model.Workflow;
|
using ZicMoove.Model.Workflow;
|
||||||
using BookAStar.Data;
|
using ZicMoove.Data;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Services.GCMHandlers
|
namespace ZicMoove.Droid.Services.GCMHandlers
|
||||||
{
|
{
|
||||||
class EstimateGCMHandler: GCMessageHandler
|
class EstimateGCMHandler: GCMessageHandler
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@ using Android.OS;
|
||||||
using Android.Runtime;
|
using Android.Runtime;
|
||||||
using Android.Views;
|
using Android.Views;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
using BookAStar.Droid.Interfaces;
|
using ZicMoove.Droid.Interfaces;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Services.GCMHandlers
|
namespace ZicMoove.Droid.Services.GCMHandlers
|
||||||
{
|
{
|
||||||
abstract class GCMessageHandler : IGCMessageHandler
|
abstract class GCMessageHandler : IGCMessageHandler
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace BookAStar.Droid.Services
|
namespace ZicMoove.Droid.Services
|
||||||
{
|
{
|
||||||
using Model.Social;
|
using Model.Social;
|
||||||
using Model;
|
using Model;
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ using Android.Gms.Gcm.Iid;
|
||||||
using Android.OS;
|
using Android.OS;
|
||||||
using Android;
|
using Android;
|
||||||
|
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
|
|
||||||
[Service(Exported = false)]
|
[Service(Exported = false)]
|
||||||
|
|
@ -29,7 +29,7 @@ namespace BookAStar.Droid
|
||||||
{
|
{
|
||||||
base.OnCreate();
|
base.OnCreate();
|
||||||
sWakeLock = PowerManager.FromContext(this).NewWakeLock(WakeLockFlags.Partial,
|
sWakeLock = PowerManager.FromContext(this).NewWakeLock(WakeLockFlags.Partial,
|
||||||
"BookAStar");
|
"ZicMoove");
|
||||||
sWakeLock.Acquire();
|
sWakeLock.Acquire();
|
||||||
}
|
}
|
||||||
public override void OnDestroy()
|
public override void OnDestroy()
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using Android.Content;
|
||||||
using Android.Util;
|
using Android.Util;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
|
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
[Service]
|
[Service]
|
||||||
public class MyGcmIntentService : IntentService
|
public class MyGcmIntentService : IntentService
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ using Android.App;
|
||||||
using Android.Gms.Gcm.Iid;
|
using Android.Gms.Gcm.Iid;
|
||||||
using Android.Content;
|
using Android.Content;
|
||||||
|
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
[Service(Exported = false), IntentFilter(new[] { "com.google.android.gms.iid.InstanceID" })]
|
[Service(Exported = false), IntentFilter(new[] { "com.google.android.gms.iid.InstanceID" })]
|
||||||
class MyInstanceIDListenerService : InstanceIDListenerService
|
class MyInstanceIDListenerService : InstanceIDListenerService
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ using Android.Widget;
|
||||||
using Android.Service.Chooser;
|
using Android.Service.Chooser;
|
||||||
using static Android.Manifest;
|
using static Android.Manifest;
|
||||||
|
|
||||||
namespace BookAStar.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
[Service(
|
[Service(
|
||||||
Name = "fr.pschneider.bas.YavscChooserTargetService",
|
Name = "fr.pschneider.bas.YavscChooserTargetService",
|
||||||
|
|
@ -33,7 +33,7 @@ namespace BookAStar.Droid
|
||||||
ChooserTarget t = new ChooserTarget(
|
ChooserTarget t = new ChooserTarget(
|
||||||
new Java.Lang.String(
|
new Java.Lang.String(
|
||||||
Constants.ApplicationName), i,
|
Constants.ApplicationName), i,
|
||||||
.5f, new ComponentName(this, "BookAStar.SendFilesActivity"),
|
.5f, new ComponentName(this, "ZicMoove.SendFilesActivity"),
|
||||||
null);
|
null);
|
||||||
var res = new List<ChooserTarget>();
|
var res = new List<ChooserTarget>();
|
||||||
res.Add(t);
|
res.Add(t);
|
||||||
|
|
|
||||||
|
|
@ -9,8 +9,8 @@
|
||||||
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>BookAStar.Droid</RootNamespace>
|
<RootNamespace>ZicMoove.Droid</RootNamespace>
|
||||||
<AssemblyName>BookAStar.Droid</AssemblyName>
|
<AssemblyName>ZicMoove.Droid</AssemblyName>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<AndroidApplication>true</AndroidApplication>
|
<AndroidApplication>true</AndroidApplication>
|
||||||
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
|
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ using System.Linq;
|
||||||
|
|
||||||
using Foundation;
|
using Foundation;
|
||||||
using UIKit;
|
using UIKit;
|
||||||
using BookAStar;
|
using ZicMoove;
|
||||||
using BookAStar.Interfaces;
|
using ZicMoove.Interfaces;
|
||||||
using Yavsc.Models.Identity;
|
using Yavsc.Models.Identity;
|
||||||
|
|
||||||
namespace App2.iOS
|
namespace App2.iOS
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<Application xmlns="http://xamarin.com/schemas/2014/forms"
|
<Application xmlns="http://xamarin.com/schemas/2014/forms"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="BookAStar.App"
|
x:Class="ZicMoove.App"
|
||||||
xmlns:sys="clr-namespace:System;assembly=mscorlib">
|
xmlns:sys="clr-namespace:System;assembly=mscorlib">
|
||||||
|
|
||||||
<Application.Resources>
|
<Application.Resources>
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ using XLabs.Settings;
|
||||||
using XLabs;
|
using XLabs;
|
||||||
using XLabs.Enums;
|
using XLabs.Enums;
|
||||||
|
|
||||||
namespace BookAStar
|
namespace ZicMoove
|
||||||
{
|
{
|
||||||
using Data;
|
using Data;
|
||||||
using Interfaces;
|
using Interfaces;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Attributes
|
namespace ZicMoove.Attributes
|
||||||
{
|
{
|
||||||
class CurrencyAttribute: Attribute
|
class CurrencyAttribute: Attribute
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Attributes
|
namespace ZicMoove.Attributes
|
||||||
{
|
{
|
||||||
class DisplayAttribute : Attribute
|
class DisplayAttribute : Attribute
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,32 +5,31 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar
|
namespace ZicMoove
|
||||||
{
|
{
|
||||||
public static class Constants
|
public static class Constants
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
#if DEV
|
#if DEV
|
||||||
public const string ApplicationName = "yadev";
|
public const string ApplicationName = "yadev";
|
||||||
public const string YavscHomeUrl = "http://dev.pschneider.fr";
|
public const string YavscHomeUrl = "http://dev.pschneider.fr";
|
||||||
#else
|
#endif
|
||||||
#if WDEV
|
#if WDEV
|
||||||
|
// against a Windows local API
|
||||||
public const string ApplicationName = "yawindev";
|
public const string ApplicationName = "yawindev";
|
||||||
public const string YavscHomeUrl = "http://192.168.0.29:5000";
|
public const string YavscHomeUrl = "http://192.168.0.29:5000";
|
||||||
#else
|
#endif
|
||||||
#if YAVSC
|
#if YAVSC
|
||||||
public const string ApplicationName = "yavsc";
|
public const string ApplicationName = "yavsc";
|
||||||
public const string YavscHomeUrl = "https://yavsc.pschneider.fr";
|
public const string YavscHomeUrl = "https://yavsc.pschneider.fr";
|
||||||
#else
|
#endif
|
||||||
#if LUA
|
#if LUA
|
||||||
public const string ApplicationName = "Luap";
|
public const string ApplicationName = "Luap";
|
||||||
public const string YavscHomeUrl = "https://lua.pschneider.fr";
|
public const string YavscHomeUrl = "https://lua.pschneider.fr";
|
||||||
#else
|
|
||||||
public const string YavscHomeUrl = "https://booking.pschneider.fr";
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
#if ZICMOOVE
|
||||||
|
public const string ApplicationName = "ZicMoove";
|
||||||
|
public const string YavscHomeUrl = "https://zicmoove.pschneider.fr";
|
||||||
#endif
|
#endif
|
||||||
public static readonly string AuthorizeUrl = YavscHomeUrl + "/authorize";
|
public static readonly string AuthorizeUrl = YavscHomeUrl + "/authorize";
|
||||||
public static readonly string RedirectUrl = YavscHomeUrl + "/oauth/success";
|
public static readonly string RedirectUrl = YavscHomeUrl + "/oauth/success";
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class DecimalValidatorBehavior : Behavior<Entry>
|
public class DecimalValidatorBehavior : Behavior<Entry>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class EditorMaxLengthValidator : Behavior<Editor>
|
public class EditorMaxLengthValidator : Behavior<Editor>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class EmailValidatorBehavior : RegexValidatorBehavior
|
public class EmailValidatorBehavior : RegexValidatorBehavior
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class IntegerEntryBehavior : Behavior<Entry>
|
public class IntegerEntryBehavior : Behavior<Entry>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using BookAStar.Views;
|
using ZicMoove.Views;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class MarkdownViewLengthValidator : Behavior<MarkdownView>
|
public class MarkdownViewLengthValidator : Behavior<MarkdownView>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class PickerBehavior : Behavior<Picker>
|
public class PickerBehavior : Behavior<Picker>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class RegexValidatorBehavior : Behavior<Entry>
|
public class RegexValidatorBehavior : Behavior<Entry>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Behaviors
|
namespace ZicMoove.Behaviors
|
||||||
{
|
{
|
||||||
public class StarBehavior : Behavior<View>
|
public class StarBehavior : Behavior<View>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Converters
|
namespace ZicMoove.Converters
|
||||||
{
|
{
|
||||||
public class BooleanToObjectConverter<T> : IValueConverter
|
public class BooleanToObjectConverter<T> : IValueConverter
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Converters
|
namespace ZicMoove.Converters
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// When EnumType:int
|
/// When EnumType:int
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Converters
|
namespace ZicMoove.Converters
|
||||||
{
|
{
|
||||||
class GenderConverter : IValueConverter
|
class GenderConverter : IValueConverter
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Converters
|
namespace ZicMoove.Converters
|
||||||
{
|
{
|
||||||
public class NotValueConverter : IValueConverter
|
public class NotValueConverter : IValueConverter
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Converters
|
namespace ZicMoove.Converters
|
||||||
{
|
{
|
||||||
class RatingText : IValueConverter
|
class RatingText : IValueConverter
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Converters
|
namespace ZicMoove.Converters
|
||||||
{
|
{
|
||||||
public class SignalRConnectionStateToObject<T> : IValueConverter
|
public class SignalRConnectionStateToObject<T> : IValueConverter
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
class ApiCallFailedException : Exception
|
class ApiCallFailedException : Exception
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace BookAStar.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
using Model;
|
using Model;
|
||||||
using Model.Blog;
|
using Model.Blog;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
namespace BookAStar.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
using Helpers;
|
using Helpers;
|
||||||
using Model.Workflow;
|
using Model.Workflow;
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System.Collections.Generic;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace BookAStar.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
public class LocalEntity<V, K> : ObservableCollection<V>, ILocalEntity<V, K> where K : IEquatable<K>
|
public class LocalEntity<V, K> : ObservableCollection<V>, ILocalEntity<V, K> where K : IEquatable<K>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Data.NonCrUD
|
namespace ZicMoove.Data.NonCrUD
|
||||||
{
|
{
|
||||||
using Helpers;
|
using Helpers;
|
||||||
using Model.FileSystem;
|
using Model.FileSystem;
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ using Newtonsoft.Json;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
|
|
||||||
namespace BookAStar.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
using Helpers;
|
using Helpers;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace BookAStar.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
public class RemoteEntityRO<V,K>: RemoteEntity<V,K> where K: IEquatable<K>
|
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;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Reflection;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Extensions
|
namespace ZicMoove.Extensions
|
||||||
{
|
{
|
||||||
public static class EnumExtensions
|
public static class EnumExtensions
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
using Xamarin.Forms.Xaml;
|
using Xamarin.Forms.Xaml;
|
||||||
|
|
||||||
namespace BookAStar.Extensions
|
namespace ZicMoove.Extensions
|
||||||
{
|
{
|
||||||
[ContentProperty("Source")]
|
[ContentProperty("Source")]
|
||||||
public class ImageResourceExtension : IMarkupExtension
|
public class ImageResourceExtension : IMarkupExtension
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using BookAStar.Interfaces;
|
using ZicMoove.Interfaces;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Factories
|
namespace ZicMoove.Factories
|
||||||
{
|
{
|
||||||
public class ViewFactory : IViewFactory
|
public class ViewFactory : IViewFactory
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar
|
namespace ZicMoove
|
||||||
{
|
{
|
||||||
public class NotIdentifiedException : Exception
|
public class NotIdentifiedException : Exception
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Helpers
|
namespace ZicMoove.Helpers
|
||||||
{
|
{
|
||||||
public static class PageHelpers
|
public static class PageHelpers
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Linq.Expressions;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Helpers
|
namespace ZicMoove.Helpers
|
||||||
{
|
{
|
||||||
public static class PropertySupport
|
public static class PropertySupport
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar
|
namespace ZicMoove
|
||||||
{
|
{
|
||||||
public class ServiceNotAvailable : Exception
|
public class ServiceNotAvailable : Exception
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// Helpers/Settings.cs
|
// Helpers/Settings.cs
|
||||||
#if USELESS_but_makes_the_component_removable // this file must exist ^^
|
#if USELESS_but_makes_the_component_removable // this file must exist ^^
|
||||||
|
|
||||||
namespace BookAStar.Helpers
|
namespace ZicMoove.Helpers
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This is the Settings static class that can be used in your Core solution or in any
|
/// 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 System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Helpers
|
namespace ZicMoove.Helpers
|
||||||
{
|
{
|
||||||
using Data.NonCrUD;
|
using Data.NonCrUD;
|
||||||
using Model.FileSystem;
|
using Model.FileSystem;
|
||||||
|
|
@ -16,7 +16,7 @@ namespace BookAStar.Helpers
|
||||||
public static ImageSource Avatar(string avatarPath)
|
public static ImageSource Avatar(string avatarPath)
|
||||||
{
|
{
|
||||||
var result = avatarPath == null ?
|
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)) ;
|
ImageSource.FromUri(new Uri(Constants.YavscHomeUrl+"/Avatars/"+avatarPath)) ;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
@ -24,14 +24,14 @@ namespace BookAStar.Helpers
|
||||||
public static ImageSource SmallAvatar(string avatarPath, string username)
|
public static ImageSource SmallAvatar(string avatarPath, string username)
|
||||||
{
|
{
|
||||||
return avatarPath == null ?
|
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"));
|
ImageSource.FromUri(new Uri($"{Constants.YavscHomeUrl}/Avatars/{username}.s.png"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ImageSource ExtraSmallAvatar(string avatarPath, string username)
|
public static ImageSource ExtraSmallAvatar(string avatarPath, string username)
|
||||||
{
|
{
|
||||||
return avatarPath == null ?
|
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"));
|
ImageSource.FromUri(new Uri($"{Constants.YavscHomeUrl}/Avatars/{username}.xs.png"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Interfaces
|
namespace ZicMoove.Interfaces
|
||||||
{
|
{
|
||||||
public interface IBillingLine
|
public interface IBillingLine
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
using System;
|
using System;
|
||||||
using BookAStar.Model.Social;
|
using ZicMoove.Model.Social;
|
||||||
using BookAStar.Model;
|
using ZicMoove.Model;
|
||||||
|
|
||||||
namespace BookAStar.Interfaces
|
namespace ZicMoove.Interfaces
|
||||||
{
|
{
|
||||||
public interface IBookQueryData
|
public interface IBookQueryData
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Interfaces
|
namespace ZicMoove.Interfaces
|
||||||
{
|
{
|
||||||
public interface IComponentContext
|
public interface IComponentContext
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using BookAStar.Model.Workflow;
|
using ZicMoove.Model.Workflow;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace BookAStar.Model.Interfaces
|
namespace ZicMoove.Model.Interfaces
|
||||||
{
|
{
|
||||||
public interface IEstimate
|
public interface IEstimate
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
namespace BookAStar
|
namespace ZicMoove
|
||||||
{
|
{
|
||||||
public interface ILoadable
|
public interface ILoadable
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Interfaces
|
namespace ZicMoove.Interfaces
|
||||||
{
|
{
|
||||||
public interface IMDEditor
|
public interface IMDEditor
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Interfaces
|
namespace ZicMoove.Interfaces
|
||||||
{
|
{
|
||||||
public interface IModelViewModel : INotifyPropertyChanged
|
public interface IModelViewModel : INotifyPropertyChanged
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
using BookAStar.Model.Auth.Account;
|
using ZicMoove.Model.Auth.Account;
|
||||||
using System;
|
using System;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
using Yavsc.Models.Identity;
|
using Yavsc.Models.Identity;
|
||||||
|
|
||||||
namespace BookAStar.Interfaces
|
namespace ZicMoove.Interfaces
|
||||||
{
|
{
|
||||||
public interface IPlatform
|
public interface IPlatform
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Interfaces
|
namespace ZicMoove.Interfaces
|
||||||
{
|
{
|
||||||
public interface IViewFactory
|
public interface IViewFactory
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
using BookAStar.Model.Access;
|
using ZicMoove.Model.Access;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
@ -6,7 +6,7 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Yavsc.Models;
|
using Yavsc.Models;
|
||||||
|
|
||||||
namespace BookAStar.Model.Access
|
namespace ZicMoove.Model.Access
|
||||||
{
|
{
|
||||||
public class BlackListed : IBlackListed
|
public class BlackListed : IBlackListed
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Model.Auth.Account
|
namespace ZicMoove.Model.Auth.Account
|
||||||
{
|
{
|
||||||
using Yavsc.Models;
|
using Yavsc.Models;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Model.Auth.Account
|
namespace ZicMoove.Model.Auth.Account
|
||||||
{
|
{
|
||||||
public class Tokens
|
public class Tokens
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
using BookAStar.Helpers;
|
using ZicMoove.Helpers;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Model.Auth.Account
|
namespace ZicMoove.Model.Auth.Account
|
||||||
{
|
{
|
||||||
public class User : INotifyPropertyChanged
|
public class User : INotifyPropertyChanged
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Model.Auth.Account
|
namespace ZicMoove.Model.Auth.Account
|
||||||
{
|
{
|
||||||
public partial class passwrecovery
|
public partial class passwrecovery
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using Yavsc.Models;
|
using Yavsc.Models;
|
||||||
|
|
||||||
namespace BookAStar.Model.Blog
|
namespace ZicMoove.Model.Blog
|
||||||
{
|
{
|
||||||
public partial class Blog : IBlog
|
public partial class Blog : IBlog
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
namespace BookAStar.Model.Blog
|
namespace ZicMoove.Model.Blog
|
||||||
{
|
{
|
||||||
public partial class BlogTag
|
public partial class BlogTag
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Model.Social
|
namespace ZicMoove.Model.Social
|
||||||
{
|
{
|
||||||
public class BookQuery
|
public class BookQuery
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
namespace BookAStar.Model.Social
|
namespace ZicMoove.Model.Social
|
||||||
{
|
{
|
||||||
|
|
||||||
public class MusicalPreference : MusicalTendency {
|
public class MusicalPreference : MusicalTendency {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
namespace BookAStar.Model.Social
|
namespace ZicMoove.Model.Social
|
||||||
{
|
{
|
||||||
|
|
||||||
public class MusicalTendency {
|
public class MusicalTendency {
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
using BookAStar.Helpers;
|
using ZicMoove.Helpers;
|
||||||
using BookAStar.Model.Social;
|
using ZicMoove.Model.Social;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Model
|
namespace ZicMoove.Model
|
||||||
{
|
{
|
||||||
public class ClientProviderInfo
|
public class ClientProviderInfo
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Model.FileSystem
|
namespace ZicMoove.Model.FileSystem
|
||||||
{
|
{
|
||||||
public class FileAddress : IEquatable<FileAddress>
|
public class FileAddress : IEquatable<FileAddress>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace BookAStar.Model.FileSystem
|
namespace ZicMoove.Model.FileSystem
|
||||||
{
|
{
|
||||||
public class UserFileInfo
|
public class UserFileInfo
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
using BookAStar.Model.Social;
|
using ZicMoove.Model.Social;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
|
|
||||||
namespace BookAStar
|
namespace ZicMoove
|
||||||
{
|
{
|
||||||
[Obsolete("Use Helpers.DataManager")]
|
[Obsolete("Use Helpers.DataManager")]
|
||||||
public static class Manager
|
public static class Manager
|
||||||
|
|
@ -28,7 +28,7 @@ namespace BookAStar
|
||||||
new LocalizedEvent {
|
new LocalizedEvent {
|
||||||
|
|
||||||
Title = "Yavsc Party",
|
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",
|
ProviderId = "paul",
|
||||||
ProviderName = "Yavsc Fondation",
|
ProviderName = "Yavsc Fondation",
|
||||||
EventWebPage = "http://lua.pschneider.fr/",
|
EventWebPage = "http://lua.pschneider.fr/",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
namespace BookAStar.Model.Workflow
|
namespace ZicMoove.Model.Workflow
|
||||||
{
|
{
|
||||||
public partial class BaseProduct
|
public partial class BaseProduct
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Xamarin.Forms;
|
using Xamarin.Forms;
|
||||||
|
|
||||||
namespace BookAStar.Model.Settings
|
namespace ZicMoove.Model.Settings
|
||||||
{
|
{
|
||||||
class SignatureSettings
|
class SignatureSettings
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Model.Workflow.Calendar
|
namespace ZicMoove.Model.Workflow.Calendar
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Model.Workflow.Calendar
|
namespace ZicMoove.Model.Workflow.Calendar
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Hollydays.
|
/// Hollydays.
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
// You should have received a copy of the GNU Lesser General Public License
|
// 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/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
namespace BookAStar.Model.Workflow.Calendar
|
namespace ZicMoove.Model.Workflow.Calendar
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Periodicity.
|
/// Periodicity.
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
using BookAStar.Model.Social;
|
using ZicMoove.Model.Social;
|
||||||
using BookAStar.Model.Workflow.Marketing;
|
using ZicMoove.Model.Workflow.Marketing;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace BookAStar.Model.Workflow.Calendar
|
namespace ZicMoove.Model.Workflow.Calendar
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A date, between two persons
|
/// A date, between two persons
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
namespace BookAStar.Model.Workflow.Calendar
|
namespace ZicMoove.Model.Workflow.Calendar
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Schedule.
|
/// Schedule.
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
// You should have received a copy of the GNU Lesser General Public License
|
// 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/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
namespace BookAStar.Model.Workflow.Calendar
|
namespace ZicMoove.Model.Workflow.Calendar
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Week day.
|
/// Week day.
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
using BookAStar.Data;
|
using ZicMoove.Data;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace BookAStar.Model.Social.Messaging
|
namespace ZicMoove.Model.Social.Messaging
|
||||||
{
|
{
|
||||||
public class ChatMessage
|
public class ChatMessage
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace BookAStar.Model.Workflow.Messaging
|
namespace ZicMoove.Model.Workflow.Messaging
|
||||||
{
|
{
|
||||||
public enum ChatStatus
|
public enum ChatStatus
|
||||||
{
|
{
|
||||||
|
|
|
||||||
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