From: Jaben C. <ja...@us...> - 2007-02-08 00:48:44
|
Update of /cvsroot/yafdotnet/yafsrc/pages/admin In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25386/yafsrc/pages/admin Modified Files: Tag: v1_0_2_NETv2 hostsettings.ascx hostsettings.ascx.designer.cs Log Message: v1.9.1 updates and fixes... very minor stuff Index: hostsettings.ascx =================================================================== RCS file: /cvsroot/yafdotnet/yafsrc/pages/admin/hostsettings.ascx,v retrieving revision 1.21.2.8 retrieving revision 1.21.2.9 diff -C2 -d -r1.21.2.8 -r1.21.2.9 *** hostsettings.ascx 13 Sep 2006 11:04:53 -0000 1.21.2.8 --- hostsettings.ascx 8 Feb 2007 00:48:42 -0000 1.21.2.9 *************** *** 1,301 **** <%@ Register TagPrefix="yaf" Namespace="yaf.controls" Assembly="yaf" %> ! <%@ Control language="c#" Codebehind="hostsettings.ascx.cs" AutoEventWireup="True" Inherits="yaf.pages.admin.hostsettings" %> ! <yaf:PageLinks runat="server" id="PageLinks" /> ! <yaf:adminmenu runat="server" id="Adminmenu1"> ! <table class="content" cellSpacing="1" cellPadding="0" align="center"> ! <tr> ! <td class="header1" colSpan="2">Forum Settings</td> ! </tr> ! <tr> ! <td class="header2" align="center" colSpan="2">Forum Setup</td> ! </tr> ! <tr> ! <td class="postheader" width="50%"><B>MS SQL Server Version:</B><BR> ! What version of MS SQL Server is running.</td> ! <td class="post" width="50%"> ! <asp:label id="SQLVersion" runat="server" cssclass="smallfont"></asp:label></td> ! </tr> ! <tr> ! <td class="postheader"><B>Time Zone:</B><BR> ! The time zone of the web server.</td> ! <td class="post"> ! <asp:dropdownlist id="TimeZones" runat="server" DataValueField="Value" DataTextField="Name"></asp:dropdownlist></td> ! </tr> ! <tr> ! <td class="postheader"><B>Forum Email:</B><BR> ! The from address when sending emails to users.</td> ! <td class="post"> ! <asp:TextBox id="ForumEmailEdit" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Require Email Verification:</B><BR> ! If unchecked users will not need to verify their email address.</td> ! <td class="post"> ! <asp:checkbox id="EmailVerification" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Show Moved Topics:</B><BR> ! If this is checked, topics that are moved will leave behind a pointer to the ! new topic.</td> ! <td class="post"> ! <asp:checkbox id="ShowMoved" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Links in New Window:</B><BR> ! If this is checked, links in messages will open in a new window.</td> ! <td class="post"> ! <asp:checkbox id="BlankLinks" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Show Groups:</B><BR> ! Should the groups a user is part of be visible on the posts page.</td> ! <td class="post"> ! <asp:checkbox id="ShowGroupsX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Show Groups in profile:</B><BR> ! Should the groups a user is part of be visible on the users profile page.</td> ! <td class="post"> ! <asp:checkbox id="ShowGroupsProfile" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Use File Table:</B><BR> ! Uploaded files will be saved in the database instead of the file system.</td> ! <td class="post"> ! <asp:checkbox id="UseFileTableX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Show RSS Links:</B><BR> ! Enable or disable display of RSS links throughout the forum.</td> ! <td class="post"> ! <asp:checkbox id="ShowRSSLinkX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Show Page Generated Time:</B><BR> ! Enable or disable display of page generation text at the bottom of the page.</td> ! <td class="post"> ! <asp:checkbox id="ShowPageGenerationTime" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Show Forum Jump Box:</B><BR> ! Enable or disable display of the Forum Jump Box throughout the forum.</td> ! <td class="post"> ! <asp:checkbox id="ShowForumJumpX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Display Points System:</B><BR> ! If checked, points for posting will be displayed for each user.</td> ! <td class="post"> ! <asp:checkbox id="DisplayPoints" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Remove Nested Quotes:</B><BR> ! Automatically remove nested [quote] tags from replies.</td> ! <td class="post"> ! <asp:checkbox id="RemoveNestedQuotesX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Poll Votes Dependant on IP:</B><BR> ! By default, poll voting is tracked via username and client-side cookie. (One vote per username. Cookies are used if guest voting is allowed.) ! If this option is enabled, votes also use IP as a reference providing the most security against voter fraud. ! </td> ! <td class="post"> ! <asp:checkbox id="PollVoteTiedToIPX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Max File Size:</B><BR> ! Maximum size of uploaded files. Leave empty for no limit.</td> ! <td class="post"> ! <asp:TextBox id="MaxFileSize" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Smilies Display Grid Size:</B><BR> ! Number of smilies to show by number of rows and columns.</td> ! <td class="post"> ! <asp:TextBox id="SmiliesPerRow" runat="server"></asp:TextBox><B>x</B> ! <asp:TextBox id="SmiliesColumns" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Posts Per Page:</B><BR> ! Number of posts to show per page.</td> ! <td class="post"> ! <asp:TextBox id="PostsPerPage" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Topics Per Page:</B><BR> ! Number of topics to show per page.</td> ! <td class="post"> ! <asp:TextBox id="TopicsPerPage" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Days before posts are locked:</B><BR> ! Number of days until posts are locked and not possible to edit or delete. Set ! to 0 for no limit.</td> ! <td class="post"> ! <asp:textbox id="LockPosts" runat="server"></asp:textbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Post Flood Delay:</B><BR> ! Number of seconds before another post can be entered. (Does not apply to admins or mods.)</td> ! <td class="post"> ! <asp:TextBox id="PostFloodDelay" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Date and time format from language file:</B><BR> ! If this is checked, the date and time format will use settings from the ! language file. Otherwise the browser settings will be used.</td> ! <td class="post"> ! <asp:checkbox id="DateFormatFromLanguage" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Create NNTP user names:</B><BR> ! Check to allow users to automatically be created when downloading usenet ! messages. Only enable this in a test environment, and <EM>NEVER</EM> in a ! production environment. The main purpose of this option is for performance ! testing.</td> ! <td class="post"> ! <asp:checkbox id="CreateNntpUsers" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colspan="2"> ! Forum Ads</td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>2nd post ad:</b><br /> ! Place the code that you wish to be displayed in each thread after the 1st post. ! If you do not want an ad to be displayed, don't put anything in the box. ! </td> ! <td class="post"> ! <asp:TextBox TextMode="MultiLine" runat="server" ID="AdPost" /> ! </td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show ad from above to signed in users:</b><br /> ! If checked, signed in users will see ads. ! </td> ! <td class="post"> ! <asp:CheckBox runat="server" ID="ShowAdsToSignedInUsers" /> ! </td> ! </tr> ! <tr> ! <td class="header2" align="center" colSpan="2">Editing/Formatting Settings</td> ! </tr> ! <tr> ! <td class="postheader"><B>Forum Editor:</B><BR> ! Select global editor type for your forum. To use the HTML editors (FCK and ! FreeTextBox) the .bin file must be in the \bin directory and the proper support ! files must be put in \editors. ! </td> ! <td class="post"> ! <asp:dropdownlist id="ForumEditorList" runat="server" DataValueField="Value" DataTextField="Name"></asp:dropdownlist></td> ! </tr> ! <tr> ! <td class="postheader"><B>Accepted HTML Tags:</B><BR> ! Comma seperated list (no spaces) of HTML tags that are allowed in posts using ! HTML editors.</td> ! <td class="post"> ! <asp:TextBox id="AcceptedHTML" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colSpan="2">Permissions Settings</td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow User Change Theme:</B><BR> ! Should users be able to choose what theme they want to use?</td> ! <td class="post"> ! <asp:checkbox id="AllowUserThemeX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow User Change Language:</B><BR> ! Should users be able to choose what language they want to use?</td> ! <td class="post"> ! <asp:checkbox id="AllowUserLanguageX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow Private Messages:</B><BR> ! Allow users to access and send private messages.</td> ! <td class="post"> ! <asp:checkbox id="AllowPrivateMessagesX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow Private Message Notifications:</B><BR> ! Allow users email notifications when new private messages arrive.</td> ! <td class="post"> ! <asp:checkbox id="AllowPMNotifications" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow Email Sending:</B><BR> ! Allow users to send emails to each other.</td> ! <td class="post"> ! <asp:checkbox id="AllowEmailSendingX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow Signatures:</B><BR> ! Allow users to create signatures.</td> ! <td class="post"> ! <asp:checkbox id="AllowSignaturesX" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Disable New Registrations:</B><BR> ! New users won't be able to register.</td> ! <td class="post"> ! <asp:checkbox id="DisableRegistrations" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colSpan="2">SMTP Server Settings</td> ! </tr> ! <tr> ! <td class="postheader"><B>SMTP Server:</B><BR> ! To be able to send posts you need to enter the name of a valid smtp server.</td> ! <td class="post"> ! <asp:TextBox id="ForumSmtpServer" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>SMTP User Name:</B><BR> ! If you need to be authorized to send email.</td> ! <td class="post"> ! <asp:TextBox id="ForumSmtpUserName" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"><B>SMTP Password:</B><BR> ! If you need to be authorized to send email.</td> ! <td class="post"> ! <asp:TextBox id="ForumSmtpUserPass" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colSpan="2">Avatar Settings</td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow remote avatars:</B><BR> ! Can users use avatars from other websites.</td> ! <td class="post"> ! <asp:checkbox id="AvatarRemote" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Allow avatar uploading:</B><BR> ! Can users upload avatars to their profile.</td> ! <td class="post"> ! <asp:checkbox id="AvatarUpload" runat="server"></asp:checkbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Avatar Width:</B><BR> ! Maximum width for avatars.</td> ! <td class="post"> ! <asp:textbox id="AvatarWidth" runat="server"></asp:textbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Avatar Height:</B><BR> ! Maximum height for avatars.</td> ! <td class="post"> ! <asp:textbox id="AvatarHeight" runat="server"></asp:textbox></td> ! </tr> ! <tr> ! <td class="postheader"><B>Avatar Size:</B><BR> ! Maximum size for avatars in bytes.</td> ! <td class="post"> ! <asp:textbox id="AvatarSize" runat="server"></asp:textbox></td> ! </tr> <!--tr> <td class="header2" colspan="2">Forum Moderator Access</td> </tr> --- 1,344 ---- <%@ Register TagPrefix="yaf" Namespace="yaf.controls" Assembly="yaf" %> ! <%@ Control Language="c#" Codebehind="hostsettings.ascx.cs" AutoEventWireup="True" Inherits="yaf.pages.admin.hostsettings" %> ! <yaf:PageLinks runat="server" ID="PageLinks" /> ! <yaf:AdminMenu runat="server" ID="Adminmenu1"> ! <table class="content" cellspacing="1" cellpadding="0" align="center"> ! <tr> ! <td class="header1" colspan="2"> ! Forum Settings</td> ! </tr> ! <tr> ! <td class="header2" align="center" colspan="2"> ! Forum Setup</td> ! </tr> ! <tr> ! <td class="postheader" width="50%"> ! <b>MS SQL Server Version:</b><br> ! What version of MS SQL Server is running.</td> ! <td class="post" width="50%"> ! <asp:Label ID="SQLVersion" runat="server" CssClass="smallfont"></asp:Label></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Time Zone:</b><br> ! The time zone of the web server.</td> ! <td class="post"> ! <asp:DropDownList ID="TimeZones" runat="server" DataValueField="Value" DataTextField="Name"> ! </asp:DropDownList></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Forum Email:</b><br> ! The from address when sending emails to users.</td> ! <td class="post"> ! <asp:TextBox ID="ForumEmailEdit" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Require Email Verification:</b><br> ! If unchecked users will not need to verify their email address.</td> ! <td class="post"> ! <asp:CheckBox ID="EmailVerification" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show Moved Topics:</b><br> ! If this is checked, topics that are moved will leave behind a pointer to the new topic.</td> ! <td class="post"> ! <asp:CheckBox ID="ShowMoved" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Links in New Window:</b><br> ! If this is checked, links in messages will open in a new window.</td> ! <td class="post"> ! <asp:CheckBox ID="BlankLinks" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show Groups:</b><br> ! Should the groups a user is part of be visible on the posts page.</td> ! <td class="post"> ! <asp:CheckBox ID="ShowGroupsX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show Groups in profile:</b><br> ! Should the groups a user is part of be visible on the users profile page.</td> ! <td class="post"> ! <asp:CheckBox ID="ShowGroupsProfile" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Use File Table:</b><br> ! Uploaded files will be saved in the database instead of the file system.</td> ! <td class="post"> ! <asp:CheckBox ID="UseFileTableX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show RSS Links:</b><br> ! Enable or disable display of RSS links throughout the forum.</td> ! <td class="post"> ! <asp:CheckBox ID="ShowRSSLinkX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show Page Generated Time:</b><br> ! Enable or disable display of page generation text at the bottom of the page.</td> ! <td class="post"> ! <asp:CheckBox ID="ShowPageGenerationTime" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show Forum Jump Box:</b><br> ! Enable or disable display of the Forum Jump Box throughout the forum.</td> ! <td class="post"> ! <asp:CheckBox ID="ShowForumJumpX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Display Points System:</b><br> ! If checked, points for posting will be displayed for each user.</td> ! <td class="post"> ! <asp:CheckBox ID="DisplayPoints" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Remove Nested Quotes:</b><br> ! Automatically remove nested [quote] tags from replies.</td> ! <td class="post"> ! <asp:CheckBox ID="RemoveNestedQuotesX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Poll Votes Dependant on IP:</b><br> ! By default, poll voting is tracked via username and client-side cookie. (One vote per username. Cookies are used if guest voting ! is allowed.) If this option is enabled, votes also use IP as a reference providing the most security against voter fraud. ! </td> ! <td class="post"> ! <asp:CheckBox ID="PollVoteTiedToIPX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Max File Size:</b><br> ! Maximum size of uploaded files. Leave empty for no limit.</td> ! <td class="post"> ! <asp:TextBox ID="MaxFileSize" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Smilies Display Grid Size:</b><br> ! Number of smilies to show by number of rows and columns.</td> ! <td class="post"> ! <asp:TextBox ID="SmiliesPerRow" runat="server"></asp:TextBox><b>x</b> ! <asp:TextBox ID="SmiliesColumns" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Posts Per Page:</b><br> ! Number of posts to show per page.</td> ! <td class="post"> ! <asp:TextBox ID="PostsPerPage" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Topics Per Page:</b><br> ! Number of topics to show per page.</td> ! <td class="post"> ! <asp:TextBox ID="TopicsPerPage" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Days before posts are locked:</b><br> ! Number of days until posts are locked and not possible to edit or delete. Set to 0 for no limit.</td> ! <td class="post"> ! <asp:TextBox ID="LockPosts" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Post Flood Delay:</b><br> ! Number of seconds before another post can be entered. (Does not apply to admins or mods.)</td> ! <td class="post"> ! <asp:TextBox ID="PostFloodDelay" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Date and time format from language file:</b><br> ! If this is checked, the date and time format will use settings from the language file. Otherwise the browser settings will be ! used.</td> ! <td class="post"> ! <asp:CheckBox ID="DateFormatFromLanguage" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Create NNTP user names:</b><br> ! Check to allow users to automatically be created when downloading usenet messages. Only enable this in a test environment, and ! <em>NEVER</em> in a production environment. The main purpose of this option is for performance testing.</td> ! <td class="post"> ! <asp:CheckBox ID="CreateNntpUsers" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colspan="2"> ! Forum Ads</td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>2nd post ad:</b><br /> ! Place the code that you wish to be displayed in each thread after the 1st post. If you do not want an ad to be displayed, don't ! put anything in the box. ! </td> ! <td class="post"> ! <asp:TextBox TextMode="MultiLine" runat="server" ID="AdPost" Columns="75" Rows="10"/> ! </td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Show ad from above to signed in users:</b><br /> ! If checked, signed in users will see ads. ! </td> ! <td class="post"> ! <asp:CheckBox runat="server" ID="ShowAdsToSignedInUsers" /> ! </td> ! </tr> ! <tr> ! <td class="header2" align="center" colspan="2"> ! Editing/Formatting Settings</td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Forum Editor:</b><br> ! Select global editor type for your forum. To use the HTML editors (FCK and FreeTextBox) the .bin file must be in the \bin directory ! and the proper support files must be put in \editors. ! </td> ! <td class="post"> ! <asp:DropDownList ID="ForumEditorList" runat="server" DataValueField="Value" DataTextField="Name"> ! </asp:DropDownList></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Accepted HTML Tags:</b><br> ! Comma seperated list (no spaces) of HTML tags that are allowed in posts using HTML editors.</td> ! <td class="post"> ! <asp:TextBox ID="AcceptedHTML" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colspan="2"> ! Permissions Settings</td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow User Change Theme:</b><br> ! Should users be able to choose what theme they want to use?</td> ! <td class="post"> ! <asp:CheckBox ID="AllowUserThemeX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow User Change Language:</b><br> ! Should users be able to choose what language they want to use?</td> ! <td class="post"> ! <asp:CheckBox ID="AllowUserLanguageX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow Private Messages:</b><br> ! Allow users to access and send private messages.</td> ! <td class="post"> ! <asp:CheckBox ID="AllowPrivateMessagesX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow Private Message Notifications:</b><br> ! Allow users email notifications when new private messages arrive.</td> ! <td class="post"> ! <asp:CheckBox ID="AllowPMNotifications" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow Email Sending:</b><br> ! Allow users to send emails to each other.</td> ! <td class="post"> ! <asp:CheckBox ID="AllowEmailSendingX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow Signatures:</b><br> ! Allow users to create signatures.</td> ! <td class="post"> ! <asp:CheckBox ID="AllowSignaturesX" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Disable New Registrations:</b><br> ! New users won't be able to register.</td> ! <td class="post"> ! <asp:CheckBox ID="DisableRegistrations" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colspan="2"> ! SMTP Server Settings</td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>SMTP Server:</b><br> ! To be able to send posts you need to enter the name of a valid smtp server.</td> ! <td class="post"> ! <asp:TextBox ID="ForumSmtpServer" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>SMTP User Name:</b><br> ! If you need to be authorized to send email.</td> ! <td class="post"> ! <asp:TextBox ID="ForumSmtpUserName" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>SMTP Password:</b><br> ! If you need to be authorized to send email.</td> ! <td class="post"> ! <asp:TextBox ID="ForumSmtpUserPass" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="header2" align="center" colspan="2"> ! Avatar Settings</td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow remote avatars:</b><br> ! Can users use avatars from other websites.</td> ! <td class="post"> ! <asp:CheckBox ID="AvatarRemote" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Allow avatar uploading:</b><br> ! Can users upload avatars to their profile.</td> ! <td class="post"> ! <asp:CheckBox ID="AvatarUpload" runat="server"></asp:CheckBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Avatar Width:</b><br> ! Maximum width for avatars.</td> ! <td class="post"> ! <asp:TextBox ID="AvatarWidth" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Avatar Height:</b><br> ! Maximum height for avatars.</td> ! <td class="post"> ! <asp:TextBox ID="AvatarHeight" runat="server"></asp:TextBox></td> ! </tr> ! <tr> ! <td class="postheader"> ! <b>Avatar Size:</b><br> ! Maximum size for avatars in bytes.</td> ! <td class="post"> ! <asp:TextBox ID="AvatarSize" runat="server"></asp:TextBox></td> ! </tr> ! <!--tr> <td class="header2" colspan="2">Forum Moderator Access</td> </tr> *************** *** 312,320 **** <td class="post">...</td> </tr--> ! <tr> ! <td class="postfooter" align="center" colSpan="2"> ! <asp:Button id="Save" runat="server" Text="Save" onclick="Save_Click"></asp:Button></td> ! </tr> ! </table> ! </yaf:adminmenu> ! <yaf:SmartScroller id="SmartScroller1" runat="server" /> --- 355,363 ---- <td class="post">...</td> </tr--> ! <tr> ! <td class="postfooter" align="center" colspan="2"> ! <asp:Button ID="Save" runat="server" Text="Save" OnClick="Save_Click"></asp:Button></td> ! </tr> ! </table> ! </yaf:AdminMenu> ! <yaf:SmartScroller ID="SmartScroller1" runat="server" /> Index: hostsettings.ascx.designer.cs =================================================================== RCS file: /cvsroot/yafdotnet/yafsrc/pages/admin/hostsettings.ascx.designer.cs,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -C2 -d -r1.1.2.6 -r1.1.2.7 *** hostsettings.ascx.designer.cs 13 Sep 2006 11:04:53 -0000 1.1.2.6 --- hostsettings.ascx.designer.cs 8 Feb 2007 00:48:42 -0000 1.1.2.7 *************** *** 2,6 **** // <auto-generated> // This code was generated by a tool. ! // Runtime Version:2.0.50727.42 // // Changes to this file may cause incorrect behavior and will be lost if --- 2,6 ---- // <auto-generated> // This code was generated by a tool. ! // Runtime Version:2.0.50727.91 // // Changes to this file may cause incorrect behavior and will be lost if |