Revision: 483
          http://svn.sourceforge.net/stripes/?rev=483&view=rev
Author:   bengunter
Date:     2007-03-05 19:26:15 -0800 (Mon, 05 Mar 2007)

Log Message:
-----------
Resolved STS-339: Incorrect XHTML ID attribute. IDs are now "stripes:" with a 
random int appended. This maintains backward compatibility with HTML 4.

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java

Modified: trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java  
2007-03-04 17:13:02 UTC (rev 482)
+++ trunk/stripes/src/net/sourceforge/stripes/tag/InputTagSupport.java  
2007-03-06 03:26:15 UTC (rev 483)
@@ -384,7 +384,7 @@
 
         if ( getId() == null ) {
             this.syntheticId = true;
-            setId(String.valueOf( new Random().nextInt() ));
+            setId("stripes:" + new Random().nextInt());
         }
     }
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to