Personal tools
You are here: Home   Bugs   Kss Attribute-Values with Spaces  
 
Document Actions

#13 — Kss Attribute-Values with Spaces

State Unconfirmed
Release: 1.2 (Zope 2.10)
Area Client side framework and general
Issue type Bug
Severity Medium
Submitted by (anonymous)
Submitted on 2007-10-15
Responsible
Target release:
Return to tracker
Last modified on 2007-10-15
Kss Attribute Values with Spaces are not recognized (at least in the HTML-class hack I testet)

like: kssattr-fullname-George Miller
gives: George
should be: George Miller

kssattr-fullname-'George Miller'
gives: 'George
should be: 'George Miller'

Possible Solution: URL-Quoting/Unquoting on Kss Attributes
Steps to reproduce:
Put this in a HTML-page

<b id="georg" class="kssattr-fullname-George Miller" >George Miller</b>

And use this KSS:

#georg:click {
   action-client: alert;
   alert-message: kssAttr('fullname', none);
}