[Monodevelop-patches-list] r2112 - in trunk/MonoDevelop: . Core/src/AddIns Core/src/MonoDevelop.Base/Gui/Dialogs build/data/ConversionStyleSheets build/doc
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon Jan 3 15:01:40 EST 2005
Author: tberman
Date: 2005-01-03 15:01:40 -0500 (Mon, 03 Jan 2005)
New Revision: 2112
Removed:
trunk/MonoDevelop/Core/src/AddIns/Misc/
trunk/MonoDevelop/build/data/ConversionStyleSheets/ShowAuthors.xsl
trunk/MonoDevelop/build/doc/AUTHORS.xml
Modified:
trunk/MonoDevelop/Core/src/AddIns/Makefile.am
trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SharpDevelopAboutPanels.cs
trunk/MonoDevelop/configure.in
Log:
removing some unused code, stylesheets, removing StartPage because we wont be using it for a while, and if we do, it needs to be completely rewritten.
Modified: trunk/MonoDevelop/Core/src/AddIns/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/Makefile.am 2005-01-03 19:41:32 UTC (rev 2111)
+++ trunk/MonoDevelop/Core/src/AddIns/Makefile.am 2005-01-03 20:01:40 UTC (rev 2112)
@@ -1 +1 @@
-SUBDIRS = DisplayBindings BackendBindings Misc DebuggerAddIn prj2make-sharp-lib
+SUBDIRS = DisplayBindings BackendBindings DebuggerAddIn prj2make-sharp-lib
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SharpDevelopAboutPanels.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SharpDevelopAboutPanels.cs 2005-01-03 19:41:32 UTC (rev 2111)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/SharpDevelopAboutPanels.cs 2005-01-03 20:01:40 UTC (rev 2112)
@@ -40,7 +40,7 @@
HBox hboxCopyright = new HBox ();
- copyrightLabel.Markup = "<b>Copyright</b>\n (c) 2000-2003 by icsharpcode.net\n (c) 2004 by MonoDevelop contributors";
+ copyrightLabel.Markup = "<b>Copyright</b>\n (c) 2000-2003 by icsharpcode.net\n (c) 2004-2005 by MonoDevelop contributors";
hboxCopyright.PackStart (copyrightLabel, false, false, 5);
this.PackStart (hboxVersion, false, true, 0);
@@ -50,72 +50,6 @@
}
}
- public class AuthorAboutTabPage : MonoDevelop.Gui.HtmlControl.MozillaControl
- {
- public AuthorAboutTabPage()
- {
- try {
- string html = ConvertXml.ConvertToString (Runtime.FileUtilityService.SharpDevelopRootPath +
- System.IO.Path.DirectorySeparatorChar + "doc" +
- System.IO.Path.DirectorySeparatorChar + "AUTHORS.xml",
-
- Runtime.Properties.DataDirectory +
- System.IO.Path.DirectorySeparatorChar + "ConversionStyleSheets" +
- System.IO.Path.DirectorySeparatorChar + "ShowAuthors.xsl");
-
-
- base.Css = Runtime.Properties.DataDirectory + System.IO.Path.DirectorySeparatorChar +
- "resources" + System.IO.Path.DirectorySeparatorChar +
- "css" + System.IO.Path.DirectorySeparatorChar +
- "SharpDevelopStandard.css";
- base.Html = html;
- } catch (Exception e) {
- Runtime.MessageService.ShowError(e);
- }
- }
- }
-
- public class ChangeLogTabPage : MonoDevelop.Gui.HtmlControl.MozillaControl
- {
- public ChangeLogTabPage()
- {
- try {
- string html = ConvertXml.ConvertToString (Runtime.FileUtilityService.SharpDevelopRootPath +
- System.IO.Path.DirectorySeparatorChar + "doc" +
- System.IO.Path.DirectorySeparatorChar + "ChangeLog.xml",
-
- Runtime.Properties.DataDirectory +
- System.IO.Path.DirectorySeparatorChar + "ConversionStyleSheets" +
- System.IO.Path.DirectorySeparatorChar + "ShowChangeLog.xsl");
-
- base.Css = Runtime.Properties.DataDirectory + System.IO.Path.DirectorySeparatorChar +
- "resources" + System.IO.Path.DirectorySeparatorChar +
- "css" + System.IO.Path.DirectorySeparatorChar +
- "SharpDevelopStandard.css";
- //base.Html = html;
-
- // feel free to add your name and email here
- // if you contributed to the port
- // FIXME: make real port credits
- /*base.Html = "<html><body><h3>MonoDevelop port</h3>"
- + "<p>This is a port of SharpDevelop 0.98 to Gtk#.</p>"
- + "<p>by:"
- + "<ul><li>Todd Berman</li>"
- + "<li>Pedro Abelleira Seco</li>"
- + "<li>John Luke</li>"
- + "<li>dkor</li>"
- + "<li>orph</li>"
- + "<li>nricciar</li>"
- + "<li>jba</li>"
- + "</ul></body></html>";*/
-
- } catch (Exception e) {
- Runtime.MessageService.ShowError (e);
- }
- }
- }
-
-
public class VersionInformationTabPage : VBox
{
private TreeView listView;
Deleted: trunk/MonoDevelop/build/data/ConversionStyleSheets/ShowAuthors.xsl
===================================================================
--- trunk/MonoDevelop/build/data/ConversionStyleSheets/ShowAuthors.xsl 2005-01-03 19:41:32 UTC (rev 2111)
+++ trunk/MonoDevelop/build/data/ConversionStyleSheets/ShowAuthors.xsl 2005-01-03 20:01:40 UTC (rev 2112)
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="AuthorData">
- <HTML><HEAD></HEAD><BODY>
-
- <xsl:for-each select="Authors/Category">
- <H1><xsl:value-of select="@name"/></H1>
- <TABLE>
- <xsl:for-each select="Author">
- <TR>
- <TD align="left" class="copy"><xsl:value-of select="@name"/><BR/>(<xsl:value-of select="@mail"/>)</TD>
- <TD align="left" class="copy"><xsl:value-of select="@achievements"/></TD>
- </TR>
- </xsl:for-each>
- </TABLE>
- </xsl:for-each>
-
- <H1>Included Projects:</H1>
- <TABLE>
- <xsl:for-each select="IncludedProjects/Project">
- <TR>
- <TD align="left" class="copy"><xsl:value-of select="@name"/></TD>
- <TD align="left" class="copy"><xsl:value-of select="@url"/></TD>
- </TR>
- <TR>
- <TD align="left" class="copy"><xsl:value-of select="@description"/></TD>
- </TR>
- </xsl:for-each>
- </TABLE>
-
- <H1>Greetings fly out to:</H1>
- <TABLE>
- <xsl:for-each select="Greetings/Person">
- <TR>
- <TD align="left" class="copy"><xsl:value-of select="@name"/>(<xsl:value-of select="@mail"/>)</TD>
- </TR>
- <TR>
- <TD align="left" class="copy"><xsl:value-of select="@text"/></TD>
- </TR>
- </xsl:for-each>
- </TABLE>
- </BODY></HTML>
- </xsl:template>
-</xsl:transform>
Deleted: trunk/MonoDevelop/build/doc/AUTHORS.xml
===================================================================
--- trunk/MonoDevelop/build/doc/AUTHORS.xml 2005-01-03 19:41:32 UTC (rev 2111)
+++ trunk/MonoDevelop/build/doc/AUTHORS.xml 2005-01-03 20:01:40 UTC (rev 2112)
@@ -1,201 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<AuthorData>
- <Authors>
- <Category name = "Coding">
- <Author name = "Mike Krueger"
- mail = "mike at icsharpcode.net"
- achievements = "Main SD coder"/>
- <Author name = "Andrea Paatz"
- mail = "andrea at icsharpcode.net"
- achievements = "C# Parser and much work in Code Completion, Code Review"/>
- <Author name = "Markus Palme"
- mail = "MarkusPalme at gmx.de"
- achievements = "VB.NET backend binding, Assembly Scout, Regular Expression workbench"/>
- <Author name = "Georg Brandl"
- mail = "g.brandl at gmx.net"
- achievements = "Start Page, File type register, Assembly Scout and bugfixes"/>
- <Author name = "Roman Taranchenko"
- mail = "rnt at smtp.ru"
- achievements = "Encoding Support and many Bugfixes"/>
- <Author name = "Shinsaku Nakagawa"
- mail = "shinsaku at users.sourceforge.jp"
- achievements = "IME support for the editor and Bugfixes"/>
- <Author name = "Eddie Sheffield"
- mail = "eddie_sheffield at YAHOO.COM"
- achievements = "Initial implementation of the Forms designer"/>
- <Author name = "Niv Lederer"
- mail = "niv_led at hotmail.com"
- achievements = "Helped with the forms designer: roundtrip, events tab, helpservice and general stuff"/>
- <Author name = "Denis Erchoff"
- mail = "d_erchoff at hotmail.com"
- achievements = "Customizing formsdesigner toolbar"/>
- <Author name = "Jeffrey Huntsman"
- mail = "jhuntsman at oakwoodsys.com"
- achievements = "Web References"/>
- </Category>
-
- <Category name = "Help File">
- <Author name = "Gavin McKay"
- mail = "gavin at dropbears.net"
- achievements = "Help file so far"/>
- </Category>
-
- <Category name = "Translation">
- <Author name = "Bernhard Spuida"
- mail = "bspuida at yahoo.com"
- achievements = "initial translation for Spanish, Portuguese and Italian"/>
- <Author name = "Lubos Bruha"
- mail = "lubos.bruha at centrum.cz"
- achievements = "Czech"/>
- <Author name = "Juan T. Llibre"
- mail = "j.llibre at codetel.net.do"
- achievements = "Spanish"/>
- <Author name = "Magnus Lindberg"
- mail = "magnus.lindberg at csharpsweden.com"
- achievements = "Swedish"/>
- <Author name = "Fredric William-Olsson"
- mail = ""
- achievements = "Swedish"/>
- <Author name = "Stefano Del Furia"
- mail = "delfo at tech-center.com"
- achievements = "Italian"/>
- <Author name = "Fabiano Santos"
- mail = "flsantos at iname.com"
- achievements = "Portuguese"/>
- <Author name = "Christophe Lauer"
- mail = "clauer at free.fr"
- achievements = "French"/>
- <Author name = "JL Ardoin"
- mail = "jlardoin01 at noos.fr"
- achievements = "French"/>
- <Author name = "Bernard Vander Beken"
- mail = "bvb at iname.com"
- achievements = "Dutch"/>
- <Author name = "Tomasz Krol"
- mail = "tkrol at intellinet.pl"
- achievements = "Polish"/>
- <Author name = "Shinsaku Nakagawa"
- mail = "shinsaku at users.sourceforge.jp"
- achievements = "Japanese"/>
- <Author name = "Roman Taranchenko"
- mail = "rnt at smtp.ru"
- achievements = "Russian"/>
- <Author name = "Sin Jeong-hun"
- mail = "museofwind at yahoo.co.jp"
- achievements = "Korean"/>
- <Author name = "Li Jian-fei"
- mail = "pcafei2001 at 163.com"
- achievements = "KunMing,China"/>
- </Category>
-
- <Category name = "Misc Contributions">
- <Author name = "Lutz Roeder"
- mail = "roeder at aisto dot. com"
- text = "XSLT for XML documentation transformation"/>
- <Author name = "Christian Holm"
- mail = "office at holmcs.com"
- achievements = "Syntax Highlighting schemes for various languages"/>
- <Author name = "Jonathan Pierce"
- mail = "jpierce at nyc.rr.com"
- achievements = "Java syntax definition"/>
- <Author name = "Brent R. Matzelle"
- mail = "bmatzelle at yahoo.com"
- achievements = "NSIS installer script"/>
- <Author name = "Jaroslav Suchacek"
- mail = "jaroslav.suchacek at quick.cz"
- achievements = "VB Syntax highlighting"/>
- <Author name = "Marshall Elfstrand"
- mail = "elfstrand at technologist.com"
- achievements = "cool application icon, about image and enhanced splash screen"/>
- </Category>
-
- <Category name = "Beta Testing">
- <Author name = "Christian Holm"
- mail = "office at holmcs.com"
- achievements = "Finds many bugs..."/>
- <Author name = "Christoph Wille"
- mail = "christophw at alphasierrapapa.com"
- achievements = "sponsored SD, and suggested many improvements and helped me a lot :)"/>
- </Category>
-
- <Category name = "Bugfixes">
- <Author name = "Alexandre Semenov"
- mail = "salexru2000 at sympatico.ca"/>
- <Author name = "Timothy Paul Johnson"
- mail = "timothyp at cae.com"/>
- <Author name = "Jeppe Cramon"
- mail = "jeppe at cramon.dk"/>
- <Author name = "Tyson S. Maxwell"
- mail = "tyson_maxwell at yahoo.com"/>
- <Author name = "David Murray"
- mail = "david.murray at techie.com"/>
- <Author name = "Merlyn"
- mail = "merlyn at 352media.com"/>
- <Author name = "Shankara Narayanan"
- mail = "J.Shankar at commerzbank.com"/>
- <Author name = "Kenrick Rawlings"
- mail = "krawling at bluemarble.net"/>
- <Author name = "Roger Rubin"
- mail = "roger.rubin at syngenta.com"/>
- <Author name = "Pierre S. de SACY"
- mail = "pdesacy at keeboo.com"/>
- <Author name = "Patrick Steele"
- mail = "pj_steele at yahoo.com"/>
- <Author name = "Lawrence E. Smithmier, Jr."
- mail = "Larry at Smithmier.com"/>
- <Author name = "Brandon Hunt"
- mail = "brandonh6k at yahoo.com"/>
- </Category>
-
- <Category name = "Former Contributions">
- <Author name = "Svante Lidman"
- mail = "svante_lidman at hotmail.com"
- achievements = "overworked Highlighting engine, tons of good bugfixes and some nice features"/>
- <Author name = "Mark Heath"
- mail = "mark at wordandspirit.co.uk"
- achievements = "Some edit actions and many editor improvements"/>
- <Author name = "Gary Gray"
- mail = "gary at ceit.co.za"
- achievements = "Java, JScript backend binding"/>
- <Author name = "Donald Kackman"
- mail = "don at itsEngineering.com"
- achievements = "New Class Wizard"/>
- </Category>
- </Authors>
-
- <IncludedProjects>
- <Project name = "Magic Library"
- url = "http://www.dotnetmagic.com"
- description = "The GUI library which is used for the tab control and docking inside SharpDevelop"/>
- <Project name = "VBDoc"
- url = "http://vb-doc.sourceforge.net"
- description="VB.NET documentation system"/>
- <Project name = "NAnt"
- url = "http://nant.sourceforge.net"
- description=".NET building tool"/>
- <Project name = "NDoc"
- url = "http://ndoc.sourceforge.net"
- description="C# documentation generator"/>
- <Project name = "NUnit"
- url = "http://nunit.sourceforge.net"
- description="Widely used .NET testing tools"/>
- <Project name = "CommandBar"
- url = "http://www.aisto.com/roeder/DotNet"
- description = "One of the best .NET GUI libraries around. Contains an advanced toolbar and menu system"/>
- </IncludedProjects>
-
- <Greetings>
- <Person name = "Miguel de Icaza"
- mail = "miguel at ximian.com"
- text = "He works on the mono project (free .NET implementation) visit http://www.go-mono.com for more information"/>
- <Person name = "Phil Wright"
- mail = "feedback at dotnetmagic.com"
- text = "For his Magic library, this is the user interface library which is used in sharpdevelop and makes that sharpdevelop looks cool check out http://www.dotnetmagic.com for more about Magic"/>
- <Person name = "Lutz Roeder"
- mail = "roeder at aisto dot.com"
- text = "Suggested many user interface changes. He is the one who build the reflector object browser (and created the nice CommandBar GUI library #Develop uses for menus and toolbars). He is a well known guy in the .NET scene check out his page at http://www.aisto.com/roeder/DotNet"/>
- <Person name = "Gerald Friedland"
- mail = "fland at inf.fu-berlin.de"
- text = "For his ongoing struggle to prove the platform independence of java"/>
- </Greetings>
-</AuthorData>
Modified: trunk/MonoDevelop/configure.in
===================================================================
--- trunk/MonoDevelop/configure.in 2005-01-03 19:41:32 UTC (rev 2111)
+++ trunk/MonoDevelop/configure.in 2005-01-03 20:01:40 UTC (rev 2112)
@@ -176,8 +176,6 @@
Core/src/AddIns/DisplayBindings/Makefile
Core/src/AddIns/DisplayBindings/SourceEditor/Makefile
Core/src/AddIns/DisplayBindings/SourceEditor/MonoDevelop.SourceEditor.dll.config
-Core/src/AddIns/Misc/Makefile
-Core/src/AddIns/Misc/StartPage/Makefile
Core/src/AddIns/DebuggerAddIn/Makefile
Core/src/MonoDevelop.Base/Makefile
Core/src/MonoDevelop.Base/MonoDevelop.Base.dll.config
@@ -200,7 +198,6 @@
build/doc/Makefile
Core/src/AddIns/DebuggerAddIn/AssemblyInfo.cs
Core/src/AddIns/DisplayBindings/SourceEditor/AssemblyInfo.cs
-Core/src/AddIns/Misc/StartPage/AssemblyInfo.cs
Core/src/MonoDevelop.Startup/AssemblyInfo.cs
Core/src/MonoDevelop.Base/AssemblyInfo.cs
Core/src/MonoDevelop.Gui.Widgets/AssemblyInfo.cs
More information about the Monodevelop-patches-list
mailing list