Browse Source

Fixed start page "Team" / "Help wanted" links (they were pointing to the old wiki)

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2608 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 18 years ago
parent
commit
60fe87ccd7
  1. 4
      src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs
  2. 3
      src/Main/StartUp/Project/Dialogs/SplashScreen.cs

4
src/AddIns/Misc/StartPage/Project/Src/ICSharpCodePage.cs

@ -569,7 +569,7 @@ namespace ICSharpCode.StartPage @@ -569,7 +569,7 @@ namespace ICSharpCode.StartPage
public void RenderSectionAuthorBody(StringBuilder builder)
{
try {
builder.Append("<iframe name=\"iframe\" src=\"http://wiki.sharpdevelop.net/default.aspx/SharpDevelop.Contributors\" width=\"100%\" height=\"1400\" />");
builder.Append("<iframe name=\"iframe\" src=\"http://wiki.sharpdevelop.net/Contributors.ashx\" width=\"100%\" height=\"1400\" />");
//
//
//
@ -610,7 +610,7 @@ namespace ICSharpCode.StartPage @@ -610,7 +610,7 @@ namespace ICSharpCode.StartPage
public void RenderSectionHelpWantedBody(StringBuilder builder)
{
try {
builder.Append("<iframe name=\"iframe\" src=\"http://wiki.sharpdevelop.net/default.aspx/SharpDevelop.FeaturesYouCouldHelpUsWith\" width=\"100%\" height=\"1000\" />");
builder.Append("<iframe name=\"iframe\" src=\"http://wiki.sharpdevelop.net/FeaturesWeSolicitHelpFor.ashx\" width=\"100%\" height=\"1000\" />");
//
// string html = ConvertXml.ConvertToString(Application.StartupPath +
// Path.DirectorySeparatorChar + ".." +

3
src/Main/StartUp/Project/Dialogs/SplashScreen.cs

@ -32,9 +32,6 @@ namespace ICSharpCode.SharpDevelop @@ -32,9 +32,6 @@ namespace ICSharpCode.SharpDevelop
public SplashScreenForm()
{
#if !DEBUG
TopMost = true;
#endif
FormBorderStyle = FormBorderStyle.None;
StartPosition = FormStartPosition.CenterScreen;
ShowInTaskbar = false;

Loading…
Cancel
Save