From: <ro...@us...> - 2006-07-25 21:17:17
|
Revision: 219 Author: rouquin Date: 2006-07-25 14:15:20 -0700 (Tue, 25 Jul 2006) ViewCVS: http://svn.sourceforge.net/tcdb/?rev=219&view=rev Log Message: ----------- Worked on the Remember me issue. I think I may just have been misunderstanding how it works. I expected it to have all my information when I come back, but it seems more like it will just let you be logged in when you come back. If you have to login it will still require you to type everything in. Anyhow, I increased the auth/session timeout from 30 minutes to 1440 (the entire day). Maybe that will help. Modified Paths: -------------- Website/App_Code/Assignments.cs Website/App_Code/Common.cs Website/App_Themes/Python/python.css Website/web.config Modified: Website/App_Code/Assignments.cs =================================================================== --- Website/App_Code/Assignments.cs 2006-07-25 19:58:26 UTC (rev 218) +++ Website/App_Code/Assignments.cs 2006-07-25 21:15:20 UTC (rev 219) @@ -106,7 +106,7 @@ { string subject = ConfigDB.GetConfigString("assignment_new_subject") + " " + ai.NAME; string body = ai.CREATOR.FULLNAME + " " + ConfigDB.GetConfigString("assignment_new_body") + - "<a href=\"" + ConfigDB.GetConfigString("site_url") + "Assignments.aspx?" + + "<a href=\"" + ConfigDB.GetConfigString("site_url") + "ActionItem.aspx?" + Constants.CODE_AI + "=" + ai.ID.ToString() + "\"> " + ai.NAME + "</a><br><br>-----------------------------------<br><br>" + ai.DESCRIPTION; @@ -133,7 +133,7 @@ { string subject = ConfigDB.GetConfigString("assignment_updated_subject") + " " + ai.NAME; string body = updatingUser.FULLNAME + " " + ConfigDB.GetConfigString("assignment_updated_body") + - "<a href=\"" + ConfigDB.GetConfigString("site_url") + "Assignments.aspx?" + + "<a href=\"" + ConfigDB.GetConfigString("site_url") + "ActionItem.aspx?" + Constants.CODE_AI + "=" + ai.ID.ToString() + "\"> " + ai.NAME + "</a><br><br>-------------------------------------------------------<br><br>" + ai.DESCRIPTION; bool result = true; @@ -178,7 +178,7 @@ string subject = ConfigDB.GetConfigString("assignment_completed_subject") + " " + ai.NAME; string body = updatingUser.FULLNAME + " " + ConfigDB.GetConfigString("assignment_completed_body") + - "<a href=\"" + ConfigDB.GetConfigString("site_url") + "Assignments.aspx?" + + "<a href=\"" + ConfigDB.GetConfigString("site_url") + "ActionItem.aspx?" + Constants.CODE_AI + "=" + ai.ID.ToString() + "\"> " + ai.NAME + "</a><br><br>-----------------------------------------------------------<br><br>" + ai.DESCRIPTION; Modified: Website/App_Code/Common.cs =================================================================== --- Website/App_Code/Common.cs 2006-07-25 19:58:26 UTC (rev 218) +++ Website/App_Code/Common.cs 2006-07-25 21:15:20 UTC (rev 219) @@ -162,19 +162,6 @@ "mail", "Specify the AD attribute that stores the users' email address")); - // uidnumber_attribute - values = new Dictionary<String, String>(); - group.Add(new Config("uidnumber_attribute", - "uidNumber AD Attribute Name", - "textbox", - values, - "", - false, - 1, - "schema", - "uidNumber", - "Specify the AD attribute that stores the users' ID")); - // homephone_attribute values = new Dictionary<String, String>(); group.Add(new Config("homephone_attribute", Modified: Website/App_Themes/Python/python.css =================================================================== --- Website/App_Themes/Python/python.css 2006-07-25 19:58:26 UTC (rev 218) +++ Website/App_Themes/Python/python.css 2006-07-25 21:15:20 UTC (rev 219) @@ -323,7 +323,7 @@ #Login label, #Login A { text-align: right; - width: 120px; + width: 0px; padding-right: 5px; } @@ -331,7 +331,7 @@ { position: relative; top: -4px; - left: 0px; + left: 80px; text-align: left; } Modified: Website/web.config =================================================================== --- Website/web.config 2006-07-25 19:58:26 UTC (rev 218) +++ Website/web.config 2006-07-25 21:15:20 UTC (rev 219) @@ -7,7 +7,7 @@ machine.config.comments usually located in \Windows\Microsoft.Net\Framework\v2.x\Config --> -<configuration> +<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <!-- The configSections define a section for ASP.NET Atlas. --> @@ -90,7 +90,7 @@ <rollingStyle value="Size" /> <staticLogFileName value="true" /> <layout type="log4net.Layout.PatternLayout"> - <header value="[Opening log file] " /> + <header value="[Opening log file]
" /> <!--<footer value="[Footer] " />--> <conversionPattern value="%date [%thread] %5level [%logger] %message%newline%exception" /> <!--<conversionPattern value="%date [%thread] %5level %logger [%location] %message%newline %exception" />--> @@ -132,10 +132,7 @@ providerName="System.Data.SqlClient" /> </connectionStrings> <system.web> - <authentication mode="Forms"> - <forms loginUrl="login.aspx"/> - </authentication> - <sessionState mode="InProc" cookieless="false" timeout="30"/> + <sessionState mode="InProc" cookieless="false" timeout="1440"/> <pages styleSheetTheme="Python"> <!-- TODO: Make sure the theme is being pulled dynamically --> <controls> @@ -201,6 +198,7 @@ <authentication mode="Windows"/> --> + <authentication mode="Forms" /> <!-- The <customErrors> section enables configuration of what to do if/when an unhandled error occurs @@ -229,4 +227,11 @@ </system.web> </location> --> + <system.net> + <mailSettings> + <smtp from="tcdb.vintela.com"> + <network host="relay.quest.com" password="" userName="" /> + </smtp> + </mailSettings> + </system.net> </configuration> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |