* .gitignore: une typo
* Web.config: Ajoute le paramètre obligatoire "Themes" au fichier de configuration * WorkFlowManager.cs: une note à faire : envoyer le lieu de la prestation à la demande de devis * YavscHelpers.cs: fixe l'absence de configuration des thèmes disponibles
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -16,7 +16,7 @@ web/Web.Debug.config
|
||||
web/Web.Release.config
|
||||
web/Web.Lua.config
|
||||
web/Web.TotemPre.config
|
||||
web/Web.TotemProd.config
|
||||
web/Web.Totemprod.config
|
||||
.nuget
|
||||
.gitignore
|
||||
web/Web.YavscPre.config
|
||||
|
@ -1,3 +1,7 @@
|
||||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* .gitignore: une typo
|
||||
|
||||
2015-12-15 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* Makefile: utilise le fichier de conf généré pour débugger.
|
||||
|
@ -1,3 +1,11 @@
|
||||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* Web.config: Ajoute le paramètre obligatoire "Themes" au
|
||||
fichier de configuration
|
||||
|
||||
* YavscHelpers.cs: fixe l'absence de configuration des thèmes
|
||||
disponibles
|
||||
|
||||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* blanc.png:
|
||||
|
@ -406,8 +406,8 @@ namespace Yavsc.Helpers
|
||||
/// <param name="baseName">Base name.</param>
|
||||
public static IHtmlString ThemeCSSLinks (
|
||||
this System.Web.Mvc.HtmlHelper html, string theme, string baseName) {
|
||||
|
||||
if (!AvailableThemes.Contains (theme))
|
||||
if (AvailableThemes==null) return null;
|
||||
if (!AvailableThemes.Contains (theme))
|
||||
if (AvailableThemes.Length > 0)
|
||||
theme = AvailableThemes [0];
|
||||
else
|
||||
|
@ -273,13 +273,14 @@ http://msdn2.microsoft.com/en-us/library/b5ysx397.aspx
|
||||
<add key="AdminEMail" value="[YOUR_ADMIN_EMAIL]" />
|
||||
<add key="OwnerEMail" value="[YOUR_OWNER_EMAIL]" />
|
||||
<add key="Name" value="[YOUR_SITE_NAME]" />
|
||||
<add key="Themes" value="clear,dark,itdark,itclear,blue,green,base" />
|
||||
<add key="DefaultAvatar" value="/App_Themes/images/noavatar.png;image/png" />
|
||||
<add key="RegistrationMessage" value="/RegistrationMail.txt" />
|
||||
<!-- <add key="ClientValidationEnabled" value="true" />
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> -->
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> -->
|
||||
<add key="PayPalLogger" value="PayPal.Log.Log4netLogger" />
|
||||
<add key="GOOGLE_API_KEY" value="[YOUR_GOOGLE_API_KEY]" />
|
||||
<add key="GOOGLE_CLIENT_ID" value="[YOUR_GOOGLE_CLIENT_ID.apps.googleusercontent.com]" />
|
||||
<add key="GOOGLE_CLIENT_SECRET" value="[YOUR_GOOGLE_CLIENT_SECRET]" />
|
||||
</appSettings>
|
||||
</configuration>
|
||||
</configuration>
|
@ -1,3 +1,8 @@
|
||||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* WorkFlowManager.cs: une note à faire : envoyer le lieu de la
|
||||
prestation à la demande de devis
|
||||
|
||||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* EventCirclesPub.cs:
|
||||
|
@ -84,6 +84,7 @@ namespace Yavsc.Model.WorkFlow
|
||||
NominativeEventPub ev = new NominativeEventPub ();
|
||||
ev.PerformerName = cmdn.PerformerName;
|
||||
ev.Description = com.GetDescription ();
|
||||
// TODO send a location
|
||||
GoogleHelpers.NotifyEvent (ev);
|
||||
}
|
||||
return cmdid;
|
||||
|
Reference in New Issue
Block a user