* ICalendarManager.cs: WIP booking TODO a calendar provider
* NpgsqlProfileProvider.cs: Fixes the defaultValue specification from
config file
* BlogsController.cs:
* AccountController.cs:
* CalendarController.cs: refactoring : the Yavsc controller name
* instdbws.sql: a new profile value : a boolean, `AllowCookies` :'{
* style.css: a class to display notification
* HomeController.cs: Notifies users this site uses cookies (what for
an information!)
If authenticated, at dimissing this notification, the user's profile
is updated,
and he'll not mess up anymore with the info.
* App.master:
* YavscHelpers.cs: adds usage of click_action value at
displaying a notification.
* yavsc.js: Implements the notification `click_action`
* Web.config: * enables anonymous profiles
* adds a new `allowcookies` profile property
* Web.csproj: Yavsc controller refactoring
* YaEvent.cs:
* IFreeDateSet.cs: WIP booking
* LocalizedText.resx:
* LocalizedText.fr.resx:
* LocalizedText.Designer.cs:
* LocalizedText.fr.Designer.cs: implements the message "uses cookies"
* YavscModel.csproj: refactoring
* Notification.cs: The Yavsc otification will start as a Google one
...
many properties are not yet used, but all seems usefull.
* Web.config: code prettying
* YavscController.cs: Gives Yavsc a concrete base controller
41 lines
No EOL
2 KiB
XML
41 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<system.web>
|
|
<httpHandlers>
|
|
<add path="*" verb="*" type="System.Web.HttpNotFoundHandler" />
|
|
</httpHandlers>
|
|
<!--
|
|
Enabling request validation in view pages would cause validation to occur
|
|
after the input has already been processed by the controller. By default
|
|
MVC performs request validation before a controller processes the input.
|
|
To change this behavior apply the ValidateInputAttribute to a
|
|
controller or action.
|
|
-->
|
|
<pages validateRequest="true" pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
|
|
<controls>
|
|
<add assembly="System.Web.Mvc" namespace="System.Web.Mvc" tagPrefix="mvc" />
|
|
<add tagPrefix="yavsc" namespace="Yavsc.WebControls" assembly="Yavsc.WebControls" />
|
|
</controls>
|
|
<namespaces>
|
|
<add namespace="Yavsc.Helpers" />
|
|
<add namespace="Yavsc.Admin" />
|
|
<add namespace="Yavsc.CatExts" />
|
|
<add namespace="Yavsc.Model.RolesAndMembers" />
|
|
<add namespace="Yavsc.Model.Admin" />
|
|
<add namespace="Yavsc.Model.Blogs" />
|
|
<add namespace="Yavsc.Model.WorkFlow" />
|
|
<add namespace="Yavsc.Model.Google" />
|
|
<add namespace="Yavsc.Model.FrontOffice" />
|
|
<add namespace="Yavsc.Model.Circles" />
|
|
<add namespace="Yavsc.Model.Calendar" />
|
|
<add namespace="System.Collections.Generic" />
|
|
</namespaces>
|
|
</pages>
|
|
</system.web>
|
|
<system.webServer>
|
|
<!-- <validation validateIntegratedModeConfiguration="false" /> -->
|
|
<handlers>
|
|
<remove name="BlockViewHandler" />
|
|
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
|
|
</handlers>
|
|
</system.webServer></configuration> |