* hallo.js: Use a forked Hallo.js * showdown.js: * to-markdown.js: * mdd_gripper.png: * mdd_toolbar.png: * mdd_modal_background.png: The client side Markdown is now implemented using Hallo.js * FontAwesome.otf: * fontawesome-webfont.eot: * fontawesome-webfont.svg: * fontawesome-webfont.ttf: * fontawesome-webfont.woff: * fontawesome-webfont.woff2: awesome * MarkdownDeep.dll: a modified version to render video and audio tags * NpgsqlBlogProvider.cs: * CalendarController.cs: * WorkFlowController.cs: refactoring: The `UserName` property from the `BlogEntry` class is renamed to `Author` * InputUserName.cs: formatting * BlogsController.cs: * refactoring: The `UserName` property from the `BlogEntry` class is renamed to `Author` * Fixes pandoc process on file named with some spaces * BlogsController.cs: UserName became Author on BlogEntry objects * Global.asax.cs: route /fonts is now ignored. * MarkdownHelper.cs: transform Markdown using a given base url * App.master: jquery was not needed on all pages. * Edit.aspx: using Hallo.js * BlogEntry.cs: * UserPost.aspx: * UserPosts.aspx: * BlogManager.cs: * RemoveTitle.aspx: * BlogEntryCollection.cs: * UUBlogEntryCollection.cs: * UUTBlogEntryCollection.cs: refactoring * Web.config: ? * Web.csproj: * use my local assembly for MarkdownDeep.dll * fontawesome integration * Hallo.js, to-markdown.js, showdowwn.js integration * packages.config: Now use forked MarkdownDeep * MarkdownDeepLib.min.js: * MarkdownDeep License.txt: * MarkdownDeep Quick Reference.txt: using my local revision * mdd_ajax_loader.gif: The client side Markdown is now implemented using Hallo.js
42 lines
No EOL
2 KiB
XML
42 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> |