Thread: [Fb-contrib-commit] SF.net SVN: fb-contrib: [641] trunk/fb-contrib/htdocs/index.html (Page 2)
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2006-09-10 16:19:17
|
Revision: 641
http://svn.sourceforge.net/fb-contrib/?rev=641&view=rev
Author: dbrosius
Date: 2006-09-10 09:18:57 -0700 (Sun, 10 Sep 2006)
Log Message:
-----------
document PIS
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2006-09-10 03:54:51 UTC (rev 640)
+++ trunk/fb-contrib/htdocs/index.html 2006-09-10 16:18:57 UTC (rev 641)
@@ -65,6 +65,10 @@
<li><b>[URV] Unrelated Return Values</b><br/>
Looks for methods that return Object, and who's code body returns two or more
different types of objects that are unrelated (other than by Object).</li>
+ <li><b>[PIS] Possible Incomplete Synchronization</b><br/>
+ Looks for classes that don't handle serialization of parent class member fields
+ when the class in question is serializable but is derived from non serializable
+ classes.</b><br/>
</ul>
</div>
<hr/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2006-09-11 05:18:02
|
Revision: 644
http://svn.sourceforge.net/fb-contrib/?rev=644&view=rev
Author: dbrosius
Date: 2006-09-10 22:17:55 -0700 (Sun, 10 Sep 2006)
Log Message:
-----------
doc Tailrecursion
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2006-09-11 05:10:23 UTC (rev 643)
+++ trunk/fb-contrib/htdocs/index.html 2006-09-11 05:17:55 UTC (rev 644)
@@ -64,6 +64,10 @@
Looks for methods that pass single character string constants as parameters to
methods that alternatively have an overridden method that accepts a character instead.
It is easier for the method to handle a single character than a String.</li>
+ <li><b>[TR] Tail Recursion</b><br/>
+ Looks for methods that make a recursive call to itself as the last statement in
+ the method. This tail recursion could be converted into a simple loop which would
+ improve the performance and stack requirements.</li>
<li><b>[URV] Unrelated Return Values</b><br/>
Looks for methods that return Object, and who's code body returns two or more
different types of objects that are unrelated (other than by Object).</li>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2006-11-19 03:58:21
|
Revision: 688
http://svn.sourceforge.net/fb-contrib/?rev=688&view=rev
Author: dbrosius
Date: 2006-11-18 19:58:19 -0800 (Sat, 18 Nov 2006)
Log Message:
-----------
doc SPP
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2006-11-19 03:56:31 UTC (rev 687)
+++ trunk/fb-contrib/htdocs/index.html 2006-11-19 03:58:19 UTC (rev 688)
@@ -56,6 +56,8 @@
Looks for classes that implement Comparator or Comparable, and whose compare or compareTo
methods return constant values only, but that don't represent the three possible choices
(a negative number, 0, and a positive number).</li>
+ <li><b>[SPP] Sillyness Pot Pourri</b><br/>
+ Looks for various small problems that don't fall into any particular category.</li>
</ul>
</div>
<hr/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2006-12-09 00:00:40
|
Revision: 713
http://svn.sourceforge.net/fb-contrib/?rev=713&view=rev
Author: dbrosius
Date: 2006-12-08 16:00:18 -0800 (Fri, 08 Dec 2006)
Log Message:
-----------
fix it better
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2006-12-08 23:50:08 UTC (rev 712)
+++ trunk/fb-contrib/htdocs/index.html 2006-12-09 00:00:18 UTC (rev 713)
@@ -63,7 +63,7 @@
<hr/>
<img id="v3_0_0_image" src="flip1.gif" onClick="toggleBlock('v3_0_0', 'v3_0_0_image');" align="top"/>
Detectors added in v3.0.0<br/>
- <div id="svn" style="display:none;">
+ <div id="v3_0_0" style="display:none;">
<ul>
<li><b>[LEST] Lost Exception Stack Trace</b><br/>
Looks for methods that catch exceptions, and rethrow another exception without encapsulating
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2006-12-10 05:06:06
|
Revision: 716
http://svn.sourceforge.net/fb-contrib/?rev=716&view=rev
Author: dbrosius
Date: 2006-12-09 21:05:56 -0800 (Sat, 09 Dec 2006)
Log Message:
-----------
document SCII
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2006-12-10 05:04:14 UTC (rev 715)
+++ trunk/fb-contrib/htdocs/index.html 2006-12-10 05:05:56 UTC (rev 716)
@@ -58,6 +58,10 @@
(a negative number, 0, and a positive number).</li>
<li><b>[SPP] Sillyness Pot Pourri</b><br/>
Looks for various small problems that don't fall into any particular category.</li>
+ <li><b>[SCII] Spoiled Child Interface Implementor</b><br/>
+ Looks for classes that implement interfaces by relying on methods being
+ implemented in superclasses, even though the superclass knows nothing about
+ the interface being implemented by the child.</li>
</ul>
</div>
<hr/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2007-09-15 04:34:29
|
Revision: 901
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=901&view=rev
Author: dbrosius
Date: 2007-09-14 21:34:33 -0700 (Fri, 14 Sep 2007)
Log Message:
-----------
doc UAA and MRC
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2007-09-15 04:31:29 UTC (rev 900)
+++ trunk/fb-contrib/htdocs/index.html 2007-09-15 04:34:33 UTC (rev 901)
@@ -52,6 +52,14 @@
Detectors add in svn<br/>
<div id="svn" style="display:none;">
<ul>
+ <li><b>[MRC] Method returns Constant</b><br/>
+ Looks for private methods that can only return one constant value.
+ Either the class should return a value, or perhaps a branch was missed.
+ <li><b>[UAA] Use Add All</b><br/>
+ Looks for loops that transfers the contents of one collection to another. These collection sources
+ might be local variables or member fields, including sets, maps key/values, lists, or arrays.
+ It is simpler to just use the addAll method of the collection class. In the case where the
+ source is an array, you can use Arrays.asList(array), and use that as the source to addAll.</li>
<li><b>[SJVU] Suspicious JDK Version Use</b><br/>
Looks for calls to classes and methods that do not exist in the JDK for which this class is
compiled. This can happen if you specify the -source and -target options of the javac compiler, and
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2007-09-15 04:36:08
|
Revision: 902
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=902&view=rev
Author: dbrosius
Date: 2007-09-14 21:36:12 -0700 (Fri, 14 Sep 2007)
Log Message:
-----------
expand svn now
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2007-09-15 04:34:33 UTC (rev 901)
+++ trunk/fb-contrib/htdocs/index.html 2007-09-15 04:36:12 UTC (rev 902)
@@ -48,28 +48,28 @@
<a href="bugdescriptions.html">Bug Descriptions</a>
<hr/>
- <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
+ <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
Detectors add in svn<br/>
- <div id="svn" style="display:none;">
+ <div id="svn" style="display:block;">
<ul>
- <li><b>[MRC] Method returns Constant</b><br/>
- Looks for private methods that can only return one constant value.
- Either the class should return a value, or perhaps a branch was missed.
+ <li><b>[SJVU] Suspicious JDK Version Use</b><br/>
+ Looks for calls to classes and methods that do not exist in the JDK for which this class is
+ compiled. This can happen if you specify the -source and -target options of the javac compiler, and
+ specify a target that is less than the jdk version of the javac compiler.</li>
<li><b>[UAA] Use Add All</b><br/>
Looks for loops that transfers the contents of one collection to another. These collection sources
might be local variables or member fields, including sets, maps key/values, lists, or arrays.
It is simpler to just use the addAll method of the collection class. In the case where the
source is an array, you can use Arrays.asList(array), and use that as the source to addAll.</li>
- <li><b>[SJVU] Suspicious JDK Version Use</b><br/>
- Looks for calls to classes and methods that do not exist in the JDK for which this class is
- compiled. This can happen if you specify the -source and -target options of the javac compiler, and
- specify a target that is less than the jdk version of the javac compiler.</li>
+ <li><b>[MRC] Method returns Constant</b><br/>
+ Looks for private methods that can only return one constant value.
+ Either the class should return a value, or perhaps a branch was missed.
</ul>
</div>
<hr/>
- <img id="v3_2_0_image" src="flip2.gif" onClick="toggleBlock('v3_2_0', 'v3_2_0_image');" align="top"/>
+ <img id="v3_2_0_image" src="flip1.gif" onClick="toggleBlock('v3_2_0', 'v3_2_0_image');" align="top"/>
Detectors added in v3.2.0<br/>
- <div id="v3_2_0" style="display:block;">
+ <div id="v3_2_0" style="display:none;">
<ul>
<li><b>[SCRV] Suspicious Comparator Return Values</b><br/>
Looks for classes that implement Comparator or Comparable, and whose compare or compareTo
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2007-09-16 02:41:22
|
Revision: 908
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=908&view=rev
Author: dbrosius
Date: 2007-09-15 19:41:19 -0700 (Sat, 15 Sep 2007)
Log Message:
-----------
document NCS
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2007-09-16 00:27:48 UTC (rev 907)
+++ trunk/fb-contrib/htdocs/index.html 2007-09-16 02:41:19 UTC (rev 908)
@@ -63,7 +63,11 @@
source is an array, you can use Arrays.asList(array), and use that as the source to addAll.</li>
<li><b>[MRC] Method returns Constant</b><br/>
Looks for private methods that can only return one constant value.
- Either the class should not return a value, or perhaps a branch was missed.
+ Either the class should not return a value, or perhaps a branch was missed.</li>
+ <li><b>[NCS] Needless Custom Serialization</b><br/>
+ Looks for classes that implement Serializable and implements readObject and writeObject
+ by just calling the readDefaultObject or writeDefaultObject of the stream parameter.
+ As this is the standard behavior, implementing these methods is not needed.</li>
</ul>
</div>
<hr/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2007-11-01 04:04:50
|
Revision: 947
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=947&view=rev
Author: dbrosius
Date: 2007-10-31 21:04:52 -0700 (Wed, 31 Oct 2007)
Log Message:
-----------
update svn to 3.4.0
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2007-11-01 03:50:44 UTC (rev 946)
+++ trunk/fb-contrib/htdocs/index.html 2007-11-01 04:04:52 UTC (rev 947)
@@ -48,9 +48,9 @@
<a href="bugdescriptions.html">Bug Descriptions</a>
<hr/>
- <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
- Detectors add in svn<br/>
- <div id="svn" style="display:block;">
+ <img id="v3_4_0_image" src="flip2.gif" onClick="toggleBlock('v3_4_0', 'v3_4_0_image');" align="top"/>
+ Detectors add in v3.4.0<br/>
+ <div id="v3_4_0" style="display:block;">
<ul>
<li><b>[SJVU] Suspicious JDK Version Use</b><br/>
Looks for calls to classes and methods that do not exist in the JDK for which this class is
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2007-11-10 03:30:08
|
Revision: 967
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=967&view=rev
Author: dbrosius
Date: 2007-11-09 19:30:12 -0800 (Fri, 09 Nov 2007)
Log Message:
-----------
better engrish
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2007-11-10 03:26:09 UTC (rev 966)
+++ trunk/fb-contrib/htdocs/index.html 2007-11-10 03:30:12 UTC (rev 967)
@@ -54,7 +54,7 @@
<ul>
<li><b>[CFS] Confusing Function Semantics</b><br/>
Looks for methods that return a parameter after making what looks like
- modifications to that parameter. This leads to confusing on the user of this
+ modifications to that parameter. This leads to confusion for the user of this
method as it isn't obvious that the 'original' object is modified. If the
point of this method is to modify the parameter, it is probably better just
to have the method be a void method, to avoid confusion.</li>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-03-12 05:19:41
|
Revision: 995
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=995&view=rev
Author: dbrosius
Date: 2008-03-11 22:16:00 -0700 (Tue, 11 Mar 2008)
Log Message:
-----------
document SCA
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2008-03-09 04:04:07 UTC (rev 994)
+++ trunk/fb-contrib/htdocs/index.html 2008-03-12 05:16:00 UTC (rev 995)
@@ -58,6 +58,10 @@
method as it isn't obvious that the 'original' object is modified. If the
point of this method is to modify the parameter, it is probably better just
to have the method be a void method, to avoid confusion.</li>
+ <li><b>[SCA] Suspicious Clone Algorithm</b><br/>
+ Looks for implementation of clone where an assignment is made to a field of the
+ source object. It is likely that that store should have occurred on the cloned object, as
+ the clone operation is almost always considered read only.</li>
</ul>
</div>
<hr/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-03-16 18:24:52
|
Revision: 1009
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1009&view=rev
Author: dbrosius
Date: 2008-03-16 11:24:54 -0700 (Sun, 16 Mar 2008)
Log Message:
-----------
document JAO and WEM
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2008-03-16 17:35:14 UTC (rev 1008)
+++ trunk/fb-contrib/htdocs/index.html 2008-03-16 18:24:54 UTC (rev 1009)
@@ -48,9 +48,9 @@
<a href="bugdescriptions.html">Bug Descriptions</a>
<hr/>
- <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
+ <img id="svn_image" src="flip2.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
Detectors added in svn<br/>
- <div id="svn" style="display:none;">
+ <div id="svn" style="display:block;">
<ul>
<li><b>[CFS] Confusing Function Semantics</b><br/>
Looks for methods that return a parameter after making what looks like
@@ -62,12 +62,21 @@
Looks for implementation of clone where an assignment is made to a field of the
source object. It is likely that that store should have occurred on the cloned object, as
the clone operation is almost always considered read only.</li>
+ <li><b>[JAO] JUnit Assertion Oddities</b><br/>
+ Looks for junit test case methods that use assertions with odd parameters. Things such as,
+ passing a constant as the second (actual) parameter, not using the three parameter version of
+ asserts for doubles, or passing true or false as the first parameter instead of using assertTrue,
+ or assertFalse.</li>
+ <li><b>[WEM] Weak Exception Messaging</b><br/>
+ Looks for exceptions that are thrown with static strings as messages. Using static strings
+ doesn't differentiate one use of this method versus another, and so it may be difficult
+ to determine how this exception occurred without showing context.</li>
</ul>
</div>
<hr/>
- <img id="v3_4_0_image" src="flip2.gif" onClick="toggleBlock('v3_4_0', 'v3_4_0_image');" align="top"/>
+ <img id="v3_4_0_image" src="flip1.gif" onClick="toggleBlock('v3_4_0', 'v3_4_0_image');" align="top"/>
Detectors add in v3.4.0<br/>
- <div id="v3_4_0" style="display:block;">
+ <div id="v3_4_0" style="display:none;">
<ul>
<li><b>[SJVU] Suspicious JDK Version Use</b><br/>
Looks for calls to classes and methods that do not exist in the JDK for which this class is
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-06-02 17:57:57
|
Revision: 1035
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1035&view=rev
Author: dbrosius
Date: 2008-06-02 10:57:08 -0700 (Mon, 02 Jun 2008)
Log Message:
-----------
document SCSS
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2008-06-02 15:35:27 UTC (rev 1034)
+++ trunk/fb-contrib/htdocs/index.html 2008-06-02 17:57:08 UTC (rev 1035)
@@ -48,6 +48,17 @@
<a href="bugdescriptions.html">Bug Descriptions</a>
<hr/>
+ <img id="svn_image" src="flip1.gif" onClick="toggleBlock('svn', 'svn_image');" align="top"/>
+ Detectors added in svn<br/>
+ <div id="svn" style="display:none;">
+ <ul>
+ <li><b>[SCSS] Suspicious Clustered Session Support</b><br/>
+ Looks for methods that access objects in http sessions, that are complex objects,
+ modifies those objects, but does not call setAttribute to signify a change so that
+ cluster replication can happens correctly.</li>
+ </ul>
+ </div>
+ <hr/>
<img id="v3_6_0_image" src="flip2.gif" onClick="toggleBlock('v3_6_0', 'v3_6_0_image');" align="top"/>
Detectors added in v3.6.0<br/>
<div id="v3_6_0" style="display:block;">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dbr...@us...> - 2008-07-05 05:28:33
|
Revision: 1055
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1055&view=rev
Author: dbrosius
Date: 2008-07-04 22:28:32 -0700 (Fri, 04 Jul 2008)
Log Message:
-----------
google analytics new
Modified Paths:
--------------
trunk/fb-contrib/htdocs/index.html
Modified: trunk/fb-contrib/htdocs/index.html
===================================================================
--- trunk/fb-contrib/htdocs/index.html 2008-07-05 05:23:29 UTC (rev 1054)
+++ trunk/fb-contrib/htdocs/index.html 2008-07-05 05:28:32 UTC (rev 1055)
@@ -443,14 +443,11 @@
</span>
</div>
-<script type="text/javascript">
-var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
-var pageTracker = _gat._getTracker("UA-xxxxxx-x");
-pageTracker._initData();
-pageTracker._trackPageview();
+_uacct = "UA-249537-3";
+urchinTracker();
</script>
</body>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|