XPath Validation

small one: the current .dtd does not validate if any pin in the patch is set to invisible (value -1, only validates on 0 and 1).

aiaiai…
thank you! we have to add the attribute to the dtd for the next release.

fixed… no text …

thanks gregsn

if you don’t want to wait till next beta release:

open the 33beta15.dtd (which is located in vvvv_33beta15\bin\ )
with a texteditor
and change

from:
ATTLIST PIN
visible (0 | 1) #IMPLIED
to:
ATTLIST PIN
visible (-1|0 | 1) #IMPLIED

furthermore i recommended to add
path CDATA #IMPLIED
to the
ATTLIST NODE

save that file and there you go.

for sure there are more eastereggs… ;)
please add your findings here.

very good find kalle.
this is also already fixed for next beta…

the path attribute is added because of new boygrouping.

with this message sent to the client patches are created at the same place as on the client even if this directory doesn’t exist on the client yet.
so the server is responsible for resolving a relative path into an absolute path and the client just uses that information and doesn’t resolve by its own.

sadly even when i add
bgcolor CDATA #IMPLIED
to
ATTLIST PATCH

my BGcolor module doesn’t work anymore…

:(