hi Tom--

couple of notes in response...

the cauth thing...you need to go to your slimserver server settings,
click on the security link, and select 'none' for CSRF security (should
be at the bottom of that page). After that, there is no need for a cauth
param on your URL.

on your code to add wm and rm support-- instead of making three matches
and corresponding js blocks, I would instead making a one line change to
the script--
this:
var match = thisElement.src.match(/mp\.gif/);
to this:
var match = thisElement.src.match(/(mp|wm|rm)\.gif/);

the updated line matches on all three gifs, rather than just the one.
(For those that haven't hacked in real support, remove the |rm part)

cheers,
#!/ben


-- 
bklaas
------------------------------------------------------------------------
bklaas's Profile: http://forums.slimdevices.com/member.php?userid=58
View this thread: http://forums.slimdevices.com/showthread.php?t=19751

_______________________________________________
Discuss mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/discuss

Reply via email to