Just downloaded prototype 1.5.1.1 and noticed that Selector.patterns.attr (line 2268) messes up the syntax highlighting in Dreamweaver. Haven't tested any other editors, but the problem is easily fixed (in theory, i'm no regex expert) by changing it from:
/\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\]]*?)\4|([^'"][^ \]]*?)))?\]/ to /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\]]*?)\4|([^"'][^ \]]*?)))?\]/ (changing the order of the single quote and double quote in the square brackets after the \4| ) Again, not a huge issue, but an easy fix --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype: Core" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/prototype-core?hl=en -~----------~----~----~----~------~----~------~--~---
