this.galleryLink = $("*[data-key='gallery']", meta).text();
this.galleryStart = parseInt($("*[data-key='gallery-start']", meta).text());
+ this.fullUri = $("*[data-key='full-uri']", meta).text();
var diff = $("*[data-key='diff']", meta).text();
if (diff) {
this.galleryImages = [];
this.text = null;
this.has_local_changes = false;
+ this.active = true;
this._lock = -1;
this._context_lock = -1;
this._lock_count = 0;
WikiDocument.prototype.checkRevision = function(params) {
/* this doesn't modify anything, so no locks */
var self = this;
+ let active = self.active;
+ self.active = false;
$.ajax({
method: "GET",
url: reverse("ajax_document_rev", self.id),
+ data: {
+ 'a': active,
+ },
dataType: 'text',
success: function(data) {
if (data == '') {
});
};
- /*
- * Set document's text
- */
- WikiDocument.prototype.setText = function(text) {
- return this.setDocumentProperty('text', text);
- };
+ /*
+ * Set document's text
+ */
+ WikiDocument.prototype.setText = function(text, setter) {
+ if (text == this.text) return;
+
+ this.text = text;
+ this.has_local_changes = true;
- /*
- * Set document's gallery link
- */
- WikiDocument.prototype.setGalleryLink = function(gallery) {
- return this.setDocumentProperty('galleryLink', gallery);
- };
-
- /*
- * Set document's property
- */
- WikiDocument.prototype.setDocumentProperty = function(property, value) {
- if(this[property] !== value) {
- this[property] = value;
- this.has_local_changes = true;
- }
- };
+ };
+
/*
* Save text back to the server
*/