AjaXplorer 3.0.1 Release Note
AjaXplorer 3.0.1 is mainly a bugfix release of the 3.0, but also introducing a new feature, the Repository Delegation : previously, users could share a file with the world by generating a public link, now they can share a whole folder by creating on-the-fly a sub-repository of their own and associate a temporary user that will have access to this repository only. Some tools were developped to help managing these new « Shared Elements » (files and folders).
For those that have used the auth.remote plugin to create a bridge with your own application, their is a slight change in the glueCode.php file that will need you to readapt your code. Don’t worry, the way it works is always the same, it’s just a depollution of the global scope.
Basically, you had to declare, for each actions, a couple of global variables, like $plugInAction, $secret, and depending on the action, for example, $user, etc… As this global scope can interfere with the external application, there is now only one global variable called $AJXP_GLUE_GLOBALS, that is an array containing the necessary data. The key are exactly the same as before, that is, the previous $plugInAction must now be found in $AJXP_GLUE_GLOBALS["plugInAction"] for example.
See the glueCode and the various released implementations, it should be quite straightforward to make this adaptation.
