Author: crossley
Date: Wed Oct 25 23:07:44 2006
New Revision: 467883
URL: http://svn.apache.org/viewvc?view=rev&rev=467883
Log:
Fix xhtml validation issues. lowercase attributes: onfocus, onblur
Issue: FOR-895
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/resources/stylesheets/common/scripts/getBlank.js
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/js/getBlank.js
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/search-input.ft
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/resources/stylesheets/common/scripts/getBlank.js
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/resources/stylesheets/common/scripts/getBlank.js?view=diff&rev=467883&r1=467882&r2=467883
==============================================================================
---
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/resources/stylesheets/common/scripts/getBlank.js
(original)
+++
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/resources/stylesheets/common/scripts/getBlank.js
Wed Oct 25 23:07:44 2006
@@ -22,7 +22,7 @@
*
* Typical usage:
* <script type="text/javascript" src="getBlank.js"></script>
- * <input type="text" id="query" value="Search the site:" onFocus="getBlank
(this, 'Search the site:');" onBlur="getPrompt (this, 'Search the site:');"/>
+ * <input type="text" id="query" value="Search the site:" onfocus="getBlank
(this, 'Search the site:');" onblur="getPrompt (this, 'Search the site:');"/>
*/
<!--
function getBlank (form, stdValue){
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/js/getBlank.js
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/js/getBlank.js?view=diff&rev=467883&r1=467882&r2=467883
==============================================================================
---
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/js/getBlank.js
(original)
+++
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/common/js/getBlank.js
Wed Oct 25 23:07:44 2006
@@ -22,7 +22,7 @@
*
* Typical usage:
* <script type="text/javascript" src="getBlank.js"></script>
- * <input type="text" id="query" value="Search the site:" onFocus="getBlank
(this, 'Search the site:');" onBlur="getBlank (this, 'Search the site:');"/>
+ * <input type="text" id="query" value="Search the site:" onfocus="getBlank
(this, 'Search the site:');" onblur="getBlank (this, 'Search the site:');"/>
*/
<!--
function getBlank (form, stdValue){
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/search-input.ft
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/search-input.ft?view=diff&rev=467883&r1=467882&r2=467883
==============================================================================
---
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/search-input.ft
(original)
+++
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/search-input.ft
Wed Oct 25 23:07:44 2006
@@ -93,8 +93,8 @@
<div class="search-field">
<input type="text" name="{$search-query}"
size="{$input-size}"
value="{normalize-space($search-prompt)}"
- onFocus="getBlank(this,
'{normalize-space($search-prompt)}');"
- onBlur="getPrompt(this,
'{normalize-space($search-prompt)}');"/>
+ onfocus="getBlank(this,
'{normalize-space($search-prompt)}');"
+ onblur="getPrompt(this,
'{normalize-space($search-prompt)}');"/>
</div>
<div class="search-submit">
<input type="submit" value="Search" name="Search"