|
16 | 16 | <blogFileSystemProvider defaultProvider="XmlBlogProvider"> |
17 | 17 | <providers> |
18 | 18 | <add description="Xml Blog Provider" name="XmlBlogProvider" type="BlogEngine.Core.Providers.XmlFileSystemProvider, BlogEngine.Core" /> |
19 | | - <add storageVariable="BlogEngine" description="Sql Database Provider" name="DbBlogProvider" type="BlogEngine.Core.Providers.DbFileSystemProvider, BlogEngine.Core" /> |
20 | | - <!--<add storageVariable="\\UNCPath\BlogFiles" description="UNC Path Provider" name="UNCBlogProvider" type="BlogEngine.Core.Providers.UNCFileSystemProvider, BlogEngine.Core"/>--> |
21 | 19 | </providers> |
22 | 20 | </blogFileSystemProvider> |
23 | 21 | </BlogEngine> |
|
26 | 24 | <add name="BlogEngine" connectionString="Data Source=|DataDirectory|\BlogEngine.s3db;Version=3;BinaryGUID=False;" providerName="System.Data.SQLite"/> |
27 | 25 | </connectionStrings> |
28 | 26 | <appSettings> |
29 | | - <!-- Set to WebForms causes some jQuery dependant scripts throw errors --> |
30 | | - <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" /> |
31 | | - <add key="BlogEngine.FileExtension" value=".aspx" /> |
32 | | - <!-- You can e.g. use "~/blog/" if BlogEngine.NET is not located in the root of the application --> |
33 | | - <add key="BlogEngine.VirtualPath" value="~/" /> |
34 | | - <!-- The regex used to identify mobile devices so a different theme can be shown --> |
35 | | - <add key="BlogEngine.MobileDevices" value="(iemobile|iphone|ipod|android|nokia|sonyericsson|blackberry|samsung|sec\-|windows ce|motorola|mot\-|up.b|midp\-)" /> |
36 | | - <!-- The name of the role with administrator permissions --> |
37 | | - <add key="BlogEngine.AdminRole" value="Administrators" /> |
38 | | - <!-- The name of the role for anonymous(non-authenticated) users. --> |
39 | | - <add key="BlogEngine.AnonymousRole" value="Anonymous" /> |
40 | | - <!-- The name of the role for Editors --> |
41 | | - <add key="BlogEngine.EditorsRole" value="Editors" /> |
42 | | - <!--This value is to provide an alternative location for storing data.--> |
43 | | - <add key="StorageLocation" value="~/App_Data/" /> |
44 | | - <!--This value is the folder name under the StorageLocation that data for blog instances will be stored in.--> |
45 | | - <add key="BlogInstancesFolderName" value="blogs" /> |
46 | | - <!--A comma separated list of script names to hard minify. It's case-sensitive. --> |
47 | | - <add key="BlogEngine.HardMinify" value="blog.js,widget.js,WebResource.axd" /> |
48 | | - <!--Any data grid in the admin panel should use this value for default number of items per page.--> |
49 | | - <add key="BlogEngine.GenericPageSize" value="15" /> |
50 | | - <!--Single Sign On Support.--> |
51 | | - <add key="BlogEngine.SingleSignOn" value="false" /> |
52 | | - <!--Sitemap schema URL.--> |
53 | | - <add key="BlogEngine.SiteMapUrlSet" value="http://www.sitemaps.org/schemas/sitemap/0.9" /> |
54 | | - <!--Default admin editor (~/admin/editors/summernote/editor.cshtml is default) --> |
55 | | - <add key="BlogEngine.DefaultEditor" value="~/admin/editors/summernote/editor.cshtml" /> |
| 27 | + <!-- Override default application settings here --> |
| 28 | + <!-- blog usage scenario: singleblog, multiusers or multiblogs --> |
| 29 | + <add key="BlogEngine.UsageScenario" value="multiusers" /> |
56 | 30 | </appSettings> |
57 | 31 | <system.serviceModel> |
58 | 32 | <services> |
|
145 | 119 | <providers> |
146 | 120 | <clear /> |
147 | 121 | <add name="XmlMembershipProvider" type="BlogEngine.Core.Providers.XmlMembershipProvider, BlogEngine.Core" description="XML membership provider" passwordFormat="Hashed" /> |
148 | | - <add name="SqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="BlogEngine" applicationName="BlogEngine" /> |
149 | 122 | <add name="DbMembershipProvider" type="BlogEngine.Core.Providers.DbMembershipProvider, BlogEngine.Core" passwordFormat="Hashed" connectionStringName="BlogEngine" /> |
150 | 123 | </providers> |
151 | 124 | </membership> |
152 | 125 | <roleManager defaultProvider="DbRoleProvider" enabled="true" cacheRolesInCookie="false"> |
153 | 126 | <providers> |
154 | 127 | <clear /> |
155 | 128 | <add name="XmlRoleProvider" type="BlogEngine.Core.Providers.XmlRoleProvider, BlogEngine.Core" description="XML role provider" /> |
156 | | - <add name="SqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="BlogEngine" applicationName="BlogEngine" /> |
157 | 129 | <add name="DbRoleProvider" type="BlogEngine.Core.Providers.DbRoleProvider, BlogEngine.Core" connectionStringName="BlogEngine" /> |
158 | 130 | </providers> |
159 | 131 | </roleManager> |
|
184 | 156 | <add verb="*" path="pingback.axd" type="BlogEngine.Core.Web.HttpHandlers.PingbackHandler, BlogEngine.Core" validate="false" /> |
185 | 157 | <add verb="*" path="opensearch.axd" type="BlogEngine.Core.Web.HttpHandlers.OpenSearchHandler, BlogEngine.Core" validate="false" /> |
186 | 158 | <add verb="*" path="metaweblog.axd" type="BlogEngine.Core.API.MetaWeblog.MetaWeblogHandler, BlogEngine.Core" validate="false" /> |
187 | | - <add verb="*" path="rsd.axd" type="BlogEngine.Core.Web.HttpHandlers.RsdHandler, BlogEngine.Core" validate="false" /> |
188 | | - <!--<add verb="*" path="css.axd" type="BlogEngine.Core.Web.HttpHandlers.CssHandler, BlogEngine.Core" validate="false"/>--> |
189 | 159 | <add verb="*" path="*.js.axd" type="BlogEngine.Core.Web.HttpHandlers.JavaScriptHandler, BlogEngine.Core" validate="false" /> |
190 | 160 | <add verb="*" path="*.res.axd" type="BlogEngine.Core.Web.HttpHandlers.ResourceHandler, BlogEngine.Core" validate="false" /> |
191 | 161 | <add verb="*" path="rating.axd" type="BlogEngine.Core.Web.HttpHandlers.RatingHandler, BlogEngine.Core" validate="false" /> |
192 | | - <add verb="*" path="opml.axd" type="BlogEngine.Core.Web.HttpHandlers.OpmlHandler, BlogEngine.Core" validate="false" /> |
193 | 162 | <add verb="*" path="blogml.axd" type="BlogEngine.Core.Web.HttpHandlers.BlogMLExportHandler, BlogEngine.Core" validate="false" /> |
194 | | - <add verb="*" path="sioc.axd" type="BlogEngine.Core.Web.HttpHandlers.Sioc, BlogEngine.Core" validate="false" /> |
| 163 | + <add verb="*" path="opml.axd" type="BlogEngine.Core.Web.HttpHandlers.OpmlHandler, BlogEngine.Core" validate="false" /> |
195 | 164 | <add verb="*" path="apml.axd" type="BlogEngine.Core.Web.HttpHandlers.Apml, BlogEngine.Core" validate="false" /> |
| 165 | + <add verb="*" path="rsd.axd" type="BlogEngine.Core.Web.HttpHandlers.RsdHandler, BlogEngine.Core" validate="false" /> |
| 166 | + <add verb="*" path="sioc.axd" type="BlogEngine.Core.Web.HttpHandlers.Sioc, BlogEngine.Core" validate="false" /> |
196 | 167 | <add verb="*" path="foaf*.axd" type="BlogEngine.Core.Web.HttpHandlers.Foaf, BlogEngine.Core" validate="false" /> |
197 | 168 | <add verb="*" path="*.htm" type="System.Web.StaticFileHandler" /> |
198 | 169 | </httpHandlers> |
|
225 | 196 | <add name="Pingback" verb="*" path="pingback.axd" type="BlogEngine.Core.Web.HttpHandlers.PingbackHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
226 | 197 | <add name="OpenSearch" verb="*" path="opensearch.axd" type="BlogEngine.Core.Web.HttpHandlers.OpenSearchHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
227 | 198 | <add name="MetaWeblog" verb="*" path="metaweblog.axd" type="BlogEngine.Core.API.MetaWeblog.MetaWeblogHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
228 | | - <add name="RSD" verb="*" path="rsd.axd" type="BlogEngine.Core.Web.HttpHandlers.RsdHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
229 | | - <!--<add name="CssHandler" verb="*" path="css.axd" type="BlogEngine.Core.Web.HttpHandlers.CssHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode"/>--> |
230 | 199 | <add name="WebResource" path="*.js.axd" verb="*" type="BlogEngine.Core.Web.HttpHandlers.JavaScriptHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
231 | 200 | <add name="Resource" verb="*" path="*.res.axd" type="BlogEngine.Core.Web.HttpHandlers.ResourceHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
232 | 201 | <add name="Rating" verb="*" path="rating.axd" type="BlogEngine.Core.Web.HttpHandlers.RatingHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
233 | | - <add name="Opml" verb="*" path="opml.axd" type="BlogEngine.Core.Web.HttpHandlers.OpmlHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
234 | 202 | <add name="BlogML" verb="*" path="blogml.axd" type="BlogEngine.Core.Web.HttpHandlers.BlogMLExportHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
235 | | - <add name="SIOC" verb="*" path="sioc.axd" type="BlogEngine.Core.Web.HttpHandlers.Sioc, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
| 203 | + <add name="Opml" verb="*" path="opml.axd" type="BlogEngine.Core.Web.HttpHandlers.OpmlHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
236 | 204 | <add name="Apml" verb="*" path="apml.axd" type="BlogEngine.Core.Web.HttpHandlers.Apml, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
| 205 | + <add name="RSD" verb="*" path="rsd.axd" type="BlogEngine.Core.Web.HttpHandlers.RsdHandler, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
| 206 | + <add name="SIOC" verb="*" path="sioc.axd" type="BlogEngine.Core.Web.HttpHandlers.Sioc, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
237 | 207 | <add name="Foaf" verb="*" path="foaf*.axd" type="BlogEngine.Core.Web.HttpHandlers.Foaf, BlogEngine.Core" resourceType="Unspecified" requireAccess="Script" preCondition="integratedMode" /> |
238 | 208 | <add name="Html" path="*.htm" verb="*" type="System.Web.StaticFileHandler" resourceType="Unspecified" preCondition="integratedMode" /> |
239 | 209 | <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> |
|
267 | 237 | <mimeMap fileExtension=".ico" mimeType="image/x-icon" /> |
268 | 238 | <remove fileExtension=".woff" /> |
269 | 239 | <mimeMap fileExtension=".woff" mimeType="font/x-woff" /> |
| 240 | + <remove fileExtension=".svg" /> |
| 241 | + <mimeMap fileExtension=".svg" mimeType="image/svg+xml" /> |
270 | 242 | </staticContent> |
271 | 243 | </system.webServer> |
272 | 244 | <runtime> |
|
284 | 256 | <bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0" /> |
285 | 257 | </dependentAssembly> |
286 | 258 | <dependentAssembly> |
287 | | - <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
288 | | - <bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0" /> |
| 259 | + <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> |
| 260 | + <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" /> |
289 | 261 | </dependentAssembly> |
290 | 262 | <dependentAssembly> |
291 | | - <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> |
292 | | - <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
| 263 | + <assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
| 264 | + <bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> |
293 | 265 | </dependentAssembly> |
294 | 266 | <dependentAssembly> |
295 | | - <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> |
296 | | - <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
| 267 | + <assemblyIdentity name="SimpleInjector" publicKeyToken="984cb50dea722e99" culture="neutral" /> |
| 268 | + <bindingRedirect oldVersion="0.0.0.0-3.0.5.0" newVersion="3.0.5.0" /> |
297 | 269 | </dependentAssembly> |
298 | 270 | <dependentAssembly> |
299 | | - <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> |
300 | | - <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> |
| 271 | + <assemblyIdentity name="SimpleInjector.Extensions.ExecutionContextScoping" publicKeyToken="984cb50dea722e99" culture="neutral" /> |
| 272 | + <bindingRedirect oldVersion="0.0.0.0-3.0.5.0" newVersion="3.0.5.0" /> |
301 | 273 | </dependentAssembly> |
302 | 274 | </assemblyBinding> |
303 | 275 | </runtime> |
|
0 commit comments