зеркало из https://github.com/mono/mail-archives.git
165 строки
6.2 KiB
HTML
165 строки
6.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Monodevelop-patches-list] r1266 - trunk/MonoDevelop
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1266%20-%20trunk/MonoDevelop&In-Reply-To=">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
|
<LINK REL="Previous" HREF="000872.html">
|
|
<LINK REL="Next" HREF="000874.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Monodevelop-patches-list] r1266 - trunk/MonoDevelop</H1>
|
|
<B>commit-watcher at mono-cvs.ximian.com</B>
|
|
<A HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1266%20-%20trunk/MonoDevelop&In-Reply-To="
|
|
TITLE="[Monodevelop-patches-list] r1266 - trunk/MonoDevelop">commit-watcher at mono-cvs.ximian.com
|
|
</A><BR>
|
|
<I>Sat Mar 27 00:01:13 EST 2004</I>
|
|
<P><UL>
|
|
<LI>Previous message: <A HREF="000872.html">[Monodevelop-patches-list] r1265 - in trunk/MonoDevelop/src/Main/Base: . Gui/Pads/HelpBrowser Gui/Pads/ProjectBrowser
|
|
</A></li>
|
|
<LI>Next message: <A HREF="000874.html">[Monodevelop-patches-list] r1267 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding AddIns/BackendBindings/CSharpBinding/Parser AddIns/BackendBindings/CSharpBinding/Parser/SharpDevelopTree AddIns/BackendBindings/CSharpBinding/Project AddIns/DisplayBindings/SourceEditor AddIns/DisplayBindings/SourceEditor/CodeCompletion AddIns/DisplayBindings/SourceEditor/InsightWindow Libraries/MonoDevelop.Gui.Widgets Libraries/MonoDevelop.Gui.Widgets/Tree Main/Base Main/Base/Commands Main/Base/Gui/CompletionDatabaseWizard Main/Base/Gui/ContentInterfaces Main/Base/Gui/Pads/ClassScout/NodeBuilder Main/Base/Internal/CollectionUtilities Main/Base/Internal/Parser Main/Base/Internal/Parser/Collections Main/Base/Internal/Parser/Implementations Main/Base/Internal/Parser/PersistenceLayer Main/Base/Internal/Parser/ReflectionLayer Main/Base/Internal/Parser/SharpAssemblyLayer Main/Base/Services/AmbienceService Main/Base/Services/ClassBrowserIcons Main/Base/Services/ParserService Main/Base/Services/Project
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#873">[ date ]</a>
|
|
<a href="thread.html#873">[ thread ]</a>
|
|
<a href="subject.html#873">[ subject ]</a>
|
|
<a href="author.html#873">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE>Author: jluke
|
|
Date: 2004-03-27 00:01:13 -0500 (Sat, 27 Mar 2004)
|
|
New Revision: 1266
|
|
|
|
Added:
|
|
trunk/MonoDevelop/FixmeTodo.pl
|
|
Modified:
|
|
trunk/MonoDevelop/
|
|
Log:
|
|
add FIXME TODO search tool
|
|
|
|
|
|
|
|
Property changes on: trunk/MonoDevelop
|
|
___________________________________________________________________
|
|
Name: svn:ignore
|
|
- depcomp
|
|
install-sh
|
|
aclocal.m4
|
|
missing
|
|
autom4te.cache
|
|
libtool
|
|
config.status
|
|
mkinstalldirs
|
|
Makefile
|
|
COPYING
|
|
INSTALL
|
|
ltmain.sh
|
|
config.sub
|
|
config.guess
|
|
monodevelop
|
|
config.log
|
|
Makefile.in
|
|
configure
|
|
monodevelop*.tar.gz
|
|
monodevelop*.spec
|
|
*.diff
|
|
|
|
+ depcomp
|
|
install-sh
|
|
aclocal.m4
|
|
missing
|
|
autom4te.cache
|
|
libtool
|
|
config.status
|
|
mkinstalldirs
|
|
Makefile
|
|
COPYING
|
|
INSTALL
|
|
ltmain.sh
|
|
config.sub
|
|
config.guess
|
|
monodevelop
|
|
config.log
|
|
Makefile.in
|
|
configure
|
|
monodevelop*.tar.gz
|
|
monodevelop*.spec
|
|
*.diff
|
|
FixmeTodo.list
|
|
|
|
|
|
Added: trunk/MonoDevelop/FixmeTodo.pl
|
|
===================================================================
|
|
--- trunk/MonoDevelop/FixmeTodo.pl 2004-03-27 03:59:39 UTC (rev 1265)
|
|
+++ trunk/MonoDevelop/FixmeTodo.pl 2004-03-27 05:01:13 UTC (rev 1266)
|
|
@@ -0,0 +1,40 @@
|
|
+#!/usr/bin/perl -w
|
|
+use strict;
|
|
+
|
|
+my $results = "FixmeTodo.list";
|
|
+
|
|
+# remove old run
|
|
+system "rm $results";
|
|
+
|
|
+print "Autogenerating list of TODO's and FIXME's\n";
|
|
+
|
|
+my $cmd = 'find . -name \'*.cs\' > tmp.list';
|
|
+system $cmd;
|
|
+
|
|
+open LIST, "tmp.list";
|
|
+chomp (my @list = <LIST>);
|
|
+
|
|
+# ugly output
|
|
+foreach my $source (@list) {
|
|
+ my $grepcmd = "grep -n TODO $source >> $results";
|
|
+ my $tmp = system $grepcmd;
|
|
+
|
|
+ if ($tmp == 0)
|
|
+ {
|
|
+ system "echo \"end of $source\" >> $results";
|
|
+ }
|
|
+
|
|
+ $grepcmd = "grep -n FIXME $source >> $results";
|
|
+ $tmp = system $grepcmd;
|
|
+
|
|
+ if ($tmp == 0)
|
|
+ {
|
|
+ system "echo \"end of $source\" >> $results";
|
|
+ }
|
|
+
|
|
+}
|
|
+
|
|
+# remove temp file
|
|
+system "rm tmp.list";
|
|
+print "done\n";
|
|
+
|
|
|
|
|
|
</PRE>
|
|
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI>Previous message: <A HREF="000872.html">[Monodevelop-patches-list] r1265 - in trunk/MonoDevelop/src/Main/Base: . Gui/Pads/HelpBrowser Gui/Pads/ProjectBrowser
|
|
</A></li>
|
|
<LI>Next message: <A HREF="000874.html">[Monodevelop-patches-list] r1267 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding AddIns/BackendBindings/CSharpBinding/Parser AddIns/BackendBindings/CSharpBinding/Parser/SharpDevelopTree AddIns/BackendBindings/CSharpBinding/Project AddIns/DisplayBindings/SourceEditor AddIns/DisplayBindings/SourceEditor/CodeCompletion AddIns/DisplayBindings/SourceEditor/InsightWindow Libraries/MonoDevelop.Gui.Widgets Libraries/MonoDevelop.Gui.Widgets/Tree Main/Base Main/Base/Commands Main/Base/Gui/CompletionDatabaseWizard Main/Base/Gui/ContentInterfaces Main/Base/Gui/Pads/ClassScout/NodeBuilder Main/Base/Internal/CollectionUtilities Main/Base/Internal/Parser Main/Base/Internal/Parser/Collections Main/Base/Internal/Parser/Implementations Main/Base/Internal/Parser/PersistenceLayer Main/Base/Internal/Parser/ReflectionLayer Main/Base/Internal/Parser/SharpAssemblyLayer Main/Base/Services/AmbienceService Main/Base/Services/ClassBrowserIcons Main/Base/Services/ParserService Main/Base/Services/Project
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#873">[ date ]</a>
|
|
<a href="thread.html#873">[ thread ]</a>
|
|
<a href="subject.html#873">[ subject ]</a>
|
|
<a href="author.html#873">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
|
|
<hr>
|
|
<a href="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">More information about the Monodevelop-patches-list
|
|
mailing list</a><br>
|
|
</body></html>
|