I've just modified my previous patch for the file browse.xml in the requests of the legacy HTTP interface including the function to escape html special characters.<br><br>When you tell me about the lua interface I've just tried to make it work in Windows nightly build of 30 June. After that just tried a nightly built from May for MacOS X. And the lua interface doesn't complaint about don't finding the http script.<br>
<br>After a bit of learning Lua and reading about. I just realized that the information returned about the directory element of both interfaces are differents<br><br>The legacy C code HTTP interface returns:<br>type, size, basename (as name), name (as path), date and ext.<br>
<br>but the lua's HTTP interface returns:<br>type, size, path, name, access_time, creation_time, modification_time, uid, gid, mode.<br><br>basically name, path and the table returned by vlc.net.stat(). For that reason I'm not shure if the table returned is not architecture dependant. For example the access_time is normally deactivated for performance issues. I've adapted the code to return whatever the vlc.net.stat function returns as keys values.<br>
<br>Where do I found more information about the vlc extension to the lua language? I've noticed for example that the modules changes from vlc.fd to <a href="http://vlc.net">vlc.net</a> from May to June, so I supose that this could be not well documented as this is still work in progress. I can read code if that is the only place to find information.<br>
<br>I just finished a few files for the legacy HTTP interface to work with JSON and JSONP, and I want to do the same for the lua's HTTP interface.<br><br>vice<br>