* Web.config:
* Web.csproj: * instdbws.sql: * packages.config: * TestByteA.cs: * App.master: * MyClass.cs: * LocalizedText.resx: * Index.aspx: * LocalizedText.fr.resx: * packages.config: * Details.aspx: * packages.config: * packages.config: * packages.config: * EventPub.aspx: * LocalizedText.Designer.cs: * FileSystemController.cs: * FrontOfficeController.cs: * NpgsqlContentProvider.cs: * ITContentProvider.csproj: * FileSystemManager.cs: * Circle.cs: * YaEvent.cs: * NpgsqlBlogProvider.csproj: * NpgsqlMRPProviders.csproj: * EventPub.cs: * NpgsqlContentProvider.csproj: * EventType.cs: * UserPrefs.cs: * CalendarController.cs: * EstablishmentType.cs: * ITCPNpgsqlProvider.cs: * NpgsqlBlogProvider.cs: * NpgsqlRoleProvider.cs: * NpgsqlProfileProvider.cs: * NpgsqlMembershipProvider.cs: Npgsql Command.Parameters.Add is obsolete * Commande.cs: FileSystem ctor needs a format parameter in order to use path by membership * google-services.json: intented to be used to build android application able to receive push notification via GCM
This commit is contained in:
parent
04304ac0c3
commit
31734da129
39 changed files with 777 additions and 469 deletions
|
|
@ -56,11 +56,14 @@ namespace Yavsc.Model.FileSystem
|
|||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="Yavsc.Model.FileSystem.FileSystemManager"/> class.
|
||||
/// </summary>
|
||||
public FileSystemManager (string rootDirectory="~/files", char dirSep = '/')
|
||||
public FileSystemManager (string rootDirectory="~/users/{0}", char dirSep = '/')
|
||||
{
|
||||
prefix = rootDirectory;
|
||||
MembershipUser user = Membership.GetUser ();
|
||||
if (user == null)
|
||||
throw new Exception ("Not membership available");
|
||||
Prefix = HttpContext.Current.Server.MapPath (
|
||||
string.Format (rootDirectory, user.UserName));
|
||||
DirectorySeparator = dirSep;
|
||||
|
||||
}
|
||||
|
||||
string regexFileName = "^[A-Za-z0-9#^!+ _~\\-.]+$";
|
||||
|
|
@ -109,9 +112,6 @@ namespace Yavsc.Model.FileSystem
|
|||
}
|
||||
set {
|
||||
prefix = value;
|
||||
if (value.StartsWith ("~/")) {
|
||||
prefix = HttpContext.Current.Server.MapPath(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -145,7 +145,7 @@ namespace Yavsc.Model.FileSystem
|
|||
{
|
||||
string path = Prefix;
|
||||
if (subdir != null) {
|
||||
checkSubDir (subdir);
|
||||
checkSubDir (subdir); // checks for specification validity
|
||||
path = Path.Combine (Prefix, subdir);
|
||||
}
|
||||
DirectoryInfo di = new DirectoryInfo (path);
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ namespace Yavsc.Model.FrontOffice
|
|||
}
|
||||
|
||||
private FileSystemManager GetFSM() {
|
||||
return new FileSystemManager ("~/commands");
|
||||
return new FileSystemManager ("~/commands/{0}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
54
yavscModel/LocalizedText.Designer.cs
generated
54
yavscModel/LocalizedText.Designer.cs
generated
|
|
@ -64,12 +64,24 @@ namespace Yavsc.Model {
|
|||
}
|
||||
}
|
||||
|
||||
public static string ProviderId {
|
||||
get {
|
||||
return ResourceManager.GetString("ProviderId", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string Welcome {
|
||||
get {
|
||||
return ResourceManager.GetString("Welcome", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string StartDate {
|
||||
get {
|
||||
return ResourceManager.GetString("StartDate", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string My_Estimates {
|
||||
get {
|
||||
return ResourceManager.GetString("My_Estimates", resourceCulture);
|
||||
|
|
@ -94,6 +106,12 @@ namespace Yavsc.Model {
|
|||
}
|
||||
}
|
||||
|
||||
public static string ImgLocator {
|
||||
get {
|
||||
return ResourceManager.GetString("ImgLocator", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string MaxDate {
|
||||
get {
|
||||
return ResourceManager.GetString("MaxDate", resourceCulture);
|
||||
|
|
@ -124,12 +142,36 @@ namespace Yavsc.Model {
|
|||
}
|
||||
}
|
||||
|
||||
public static string Comment {
|
||||
get {
|
||||
return ResourceManager.GetString("Comment", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ProviderName {
|
||||
get {
|
||||
return ResourceManager.GetString("ProviderName", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string User_List {
|
||||
get {
|
||||
return ResourceManager.GetString("User List", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string Circles {
|
||||
get {
|
||||
return ResourceManager.GetString("Circles", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string EndDate {
|
||||
get {
|
||||
return ResourceManager.GetString("EndDate", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string Message_sent {
|
||||
get {
|
||||
return ResourceManager.GetString("Message_sent", resourceCulture);
|
||||
|
|
@ -208,6 +250,12 @@ namespace Yavsc.Model {
|
|||
}
|
||||
}
|
||||
|
||||
public static string Location {
|
||||
get {
|
||||
return ResourceManager.GetString("Location", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string MinDate {
|
||||
get {
|
||||
return ResourceManager.GetString("MinDate", resourceCulture);
|
||||
|
|
@ -220,6 +268,12 @@ namespace Yavsc.Model {
|
|||
}
|
||||
}
|
||||
|
||||
public static string EventWebPage {
|
||||
get {
|
||||
return ResourceManager.GetString("EventWebPage", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
public static string DuplicateEmail {
|
||||
get {
|
||||
return ResourceManager.GetString("DuplicateEmail", resourceCulture);
|
||||
|
|
|
|||
|
|
@ -48,4 +48,14 @@
|
|||
<data name="Item_added_to_basket"><value>Article ajouté au panier</value></data>
|
||||
<data name="Estimate_not_found"><value>Devis non trouvé</value></data>
|
||||
<data name="My_Estimates"><value>Mes estimations</value></data>
|
||||
<data name="User_name"><value>Nom d'utilisateur</value></data>
|
||||
<data name="Circles"><value>Cercles</value></data>
|
||||
<data name="Location"><value>Lieu</value></data>
|
||||
<data name="StartDate"><value>Date de démarrage</value></data>
|
||||
<data name="EndDate"><value>Date de fin</value></data>
|
||||
<data name="ProviderName"><value>Nom du fournisseur</value></data>
|
||||
<data name="ProviderId"><value>Identifiant du fournisseur</value></data>
|
||||
<data name="Comment"><value>Commentaire</value></data>
|
||||
<data name="EventWebPage"><value>Page web de l'événement</value></data>
|
||||
<data name="ImgLocator"><value>URI de l'image</value></data>
|
||||
</root>
|
||||
|
|
|
|||
|
|
@ -44,10 +44,20 @@
|
|||
<data name="was_added_to_the_role"><value>was added to the role</value></data>
|
||||
<data name="was_added_to_the_empty_role"><value>There was no user in the '{1}' role. You ({0}) was just added as firt user in the '{1}' role.</value></data>
|
||||
<data name="younotadmin"><value>You're not administrator</value></data>
|
||||
<data name="role_created"><value>role created</value></data>
|
||||
<data name="role_created"><value>role created</value></data>
|
||||
<data name="Item_added_to_basket"><value>Item added to basket</value></data>
|
||||
<data name="Estimate_not_found"><value>Estimate not found</value></data>
|
||||
<data name="DuplicateEmail"><value>This email adress is already used ({0}).</value></data>
|
||||
<data name="DuplicateUserName"><value>This user name is already used ({0}).</value></data>
|
||||
<data name="My_Estimates"><value>My estimates</value></data>
|
||||
</root>
|
||||
<data name="User_name"><value>User name</value></data>
|
||||
<data name="Circles"><value>Circles</value></data>
|
||||
<data name="Location"><value>Location</value></data>
|
||||
<data name="StartDate"><value>Start date</value></data>
|
||||
<data name="EndDate"><value>End date</value></data>
|
||||
<data name="ProviderName"><value>Provider name</value></data>
|
||||
<data name="ProviderId"><value>Provider identifier</value></data>
|
||||
<data name="Comment"><value>Comment</value></data>
|
||||
<data name="EventWebPage"><value>Event Web page</value></data>
|
||||
<data name="ImgLocator"><value>Image URI</value></data>
|
||||
</root>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue