Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Web.config @ 117:7ef7e4bb71f6
manejo de mensajes al usuario
author | Nelo@Kenia.neluz.int |
---|---|
date | Sun, 19 Jun 2011 13:35:34 -0300 |
parents | a456eb519e23 |
children | 3700b77ed455 45be716763c3 |
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> |
96
1eb5a0e531bf
Funcionamiento con cuenta interna y con cuenta de twitter, falta unificar usuarios
Nelo@Kenia.neluz.int
parents:
90
diff
changeset
|
9 <add name="ApplicationServices" connectionString="Data Source=.\sqlexpress;Initial Catalog=AltNetHispano;Integrated Security=SSPI" providerName="System.Data.SqlClient" /> |
67
c8099df941bd
Implementando persistencia con NHibernate en el proyecto web
nelopauselli
parents:
43
diff
changeset
|
10 <add name="AltNetHispano" connectionString="Data Source=.\sqlexpress;Initial Catalog=AltNetHispano;Integrated Security=SSPI"/> |
30 | 11 </connectionStrings> |
10 | 12 |
30 | 13 <appSettings> |
110
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
14 <add key="consumerKeyAppSignIn" value="uUSzC5EZ2LCNoBmaQXcUFA"/> |
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
15 <add key="consumerSecretAppSignIn" value="CNN2uUwza4nGNoZf3FlAqC0xoUEKXKFWxZn3Frow"/> |
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
16 |
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
17 <add key="consumerKeyAppTwitt" value="UpwG7RKRAqQfdsCKnBfHA"/> |
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
18 <add key="consumerSecretAppTwitt" value="HIOb9tMewejyFX97mhsQO2FXSEQN4kzJFF6iQLx4k"/> |
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
19 <add key="accessTokenAppTwitt" value="301500900-1GGyiecfAgmbrJMEcjp4XA9KXEJU2bBLyEQNQL5S" /> |
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
20 <add key="accessTokenSecretAppTwitt" value="46vNqg4djzyh9GRtZoUv0c7uEl7mQ3CjVBeJ4wwRpds"/> |
a456eb519e23
Lanzando twitts desde el sitio con la cuenta de AltNetHispanoDESA
Nelo@Kenia.neluz.int
parents:
96
diff
changeset
|
21 |
30 | 22 <add key="ClientValidationEnabled" value="true"/> |
23 <add key="UnobtrusiveJavaScriptEnabled" value="true"/> | |
24 </appSettings> | |
10 | 25 |
30 | 26 <system.web> |
90
d1688622fa88
Autenticando con twitter (falta emprolijar el código, pero autentica!)
Nelo@Kenia.neluz.int
parents:
82
diff
changeset
|
27 <customErrors mode="Off"/> |
30 | 28 <compilation debug="true" targetFramework="4.0"> |
29 <assemblies> | |
30 <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
31 <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
32 <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
33 <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
34 <add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
35 </assemblies> | |
36 </compilation> | |
10 | 37 |
30 | 38 <authentication mode="Forms"> |
39 <forms loginUrl="~/Account/LogOn" timeout="2880" /> | |
40 </authentication> | |
10 | 41 |
30 | 42 <membership> |
43 <providers> | |
44 <clear/> | |
45 <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" | |
46 enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" | |
47 maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" | |
48 applicationName="altnet-hispano.agenda" /> | |
49 </providers> | |
50 </membership> | |
10 | 51 |
30 | 52 <profile> |
53 <providers> | |
54 <clear/> | |
55 <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" /> | |
56 </providers> | |
57 </profile> | |
10 | 58 |
30 | 59 <roleManager enabled="false"> |
60 <providers> | |
61 <clear/> | |
62 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" /> | |
63 <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" /> | |
64 </providers> | |
65 </roleManager> | |
10 | 66 |
30 | 67 <pages> |
68 <namespaces> | |
69 <clear/> | |
70 <add namespace="System.Web.Helpers" /> | |
71 <add namespace="System.Web.Mvc" /> | |
72 <add namespace="System.Web.Mvc.Ajax" /> | |
73 <add namespace="System.Web.Mvc.Html" /> | |
74 <add namespace="System.Web.Routing" /> | |
75 <add namespace="System.Web.WebPages"/> | |
76 </namespaces> | |
77 </pages> | |
78 </system.web> | |
10 | 79 |
30 | 80 <system.webServer> |
81 <validation validateIntegratedModeConfiguration="false"/> | |
82 <modules runAllManagedModulesForAllRequests="true"/> | |
83 </system.webServer> | |
10 | 84 |
30 | 85 <runtime> |
86 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
87 <dependentAssembly> | |
88 <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> | |
89 <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" /> | |
90 </dependentAssembly> | |
91 </assemblyBinding> | |
92 </runtime> | |
93 </configuration> |