/*
* Return absolute reverse path of given named view. (at least he have it
* hard-coded in one place)
- *
+ *
* TODO: think of a way, not to hard-code it here ;)
- *
+ *
*/
function reverse() {
var vname = arguments[0];
if (vname == "ajax_document_gallery") {
- return base_path + "/gallery/" + arguments[1];
+ return base_path + "/" + arguments[1] + "/gallery";
}
if (vname == "ajax_document_diff")
};
/*
* Fetch history of this document.
- *
+ *
* from - First revision to fetch (default = 0) upto - Last revision to
* fetch (default = tip)
- *
+ *
*/
WikiDocument.prototype.fetchHistory = function(params) {
/* this doesn't modify anything, so no locks */