Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Web.config @ 91:9dfbe4e29c6a
Imagen del boton de sign-in con twitter
author | Nelo@Kenia.neluz.int |
---|---|
date | Fri, 03 Jun 2011 23:57:39 -0300 |
parents | d1688622fa88 |
children | 1eb5a0e531bf |
rev | line source |
---|---|
10 | 1 <?xml version="1.0"?> |
2 <!-- | |
3 For more information on how to configure your ASP.NET application, please visit | |
4 http://go.microsoft.com/fwlink/?LinkId=152368 | |
5 --> | |
43 | 6 |
10 | 7 <configuration> |
30 | 8 <connectionStrings> |
9 <add name="ApplicationServices" | |
10 connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" | |
11 providerName="System.Data.SqlClient" /> | |
67
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
43
diff
changeset
|
12 <add name="AltNetHispano" connectionString="Data Source=.\sqlexpress;Initial Catalog=AltNetHispano;Integrated Security=SSPI"/> |
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
43
diff
changeset
|
13 |
30 | 14 </connectionStrings> |
10 | 15 |
30 | 16 <appSettings> |
90
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
82
diff
changeset
|
17 <add key="consumerKey" value="uUSzC5EZ2LCNoBmaQXcUFA"/> |
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
82
diff
changeset
|
18 <add key="consumerSecret" value="CNN2uUwza4nGNoZf3FlAqC0xoUEKXKFWxZn3Frow"/> |
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
82
diff
changeset
|
19 |
30 | 20 <add key="ClientValidationEnabled" value="true"/> |
21 <add key="UnobtrusiveJavaScriptEnabled" value="true"/> | |
22 </appSettings> | |
10 | 23 |
30 | 24 <system.web> |
90
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
82
diff
changeset
|
25 <customErrors mode="Off"/> |
30 | 26 <compilation debug="true" targetFramework="4.0"> |
27 <assemblies> | |
28 <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
29 <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
30 <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
31 <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
32 <add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
33 </assemblies> | |
34 </compilation> | |
10 | 35 |
30 | 36 <authentication mode="Forms"> |
37 <forms loginUrl="~/Account/LogOn" timeout="2880" /> | |
38 </authentication> | |
10 | 39 |
30 | 40 <membership> |
41 <providers> | |
42 <clear/> | |
43 <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" | |
44 enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" | |
45 maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" | |
46 applicationName="altnet-hispano.agenda" /> | |
47 </providers> | |
48 </membership> | |
10 | 49 |
30 | 50 <profile> |
51 <providers> | |
52 <clear/> | |
53 <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" /> | |
54 </providers> | |
55 </profile> | |
10 | 56 |
30 | 57 <roleManager enabled="false"> |
58 <providers> | |
59 <clear/> | |
60 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" /> | |
61 <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" /> | |
62 </providers> | |
63 </roleManager> | |
10 | 64 |
30 | 65 <pages> |
66 <namespaces> | |
67 <clear/> | |
68 <add namespace="System.Web.Helpers" /> | |
69 <add namespace="System.Web.Mvc" /> | |
70 <add namespace="System.Web.Mvc.Ajax" /> | |
71 <add namespace="System.Web.Mvc.Html" /> | |
72 <add namespace="System.Web.Routing" /> | |
73 <add namespace="System.Web.WebPages"/> | |
74 </namespaces> | |
75 </pages> | |
76 </system.web> | |
10 | 77 |
30 | 78 <system.webServer> |
79 <validation validateIntegratedModeConfiguration="false"/> | |
80 <modules runAllManagedModulesForAllRequests="true"/> | |
81 </system.webServer> | |
10 | 82 |
30 | 83 <runtime> |
84 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
85 <dependentAssembly> | |
86 <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> | |
87 <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" /> | |
88 </dependentAssembly> | |
89 </assemblyBinding> | |
90 </runtime> | |
91 </configuration> |