X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4395564bb09e6b7d74cae3421f6342dd546b5619..bb956c627f85fbb4bcbe152caea77cc0cbabd5f6:/redakcja/static/js/wiki/wikiapi.js

diff --git a/redakcja/static/js/wiki/wikiapi.js b/redakcja/static/js/wiki/wikiapi.js
index 1234c985..d901e847 100644
--- a/redakcja/static/js/wiki/wikiapi.js
+++ b/redakcja/static/js/wiki/wikiapi.js
@@ -50,6 +50,9 @@
 		if (vname == "ajax_document_pubmark")
 			return base_path + "/pubmark/" + arguments[1] + '/';
 
+		if (vname == "ajax_cover_preview")
+			return "/cover/preview/";
+
 		console.log("Couldn't reverse match:", vname);
 		return "/404.html";
 	};
@@ -343,33 +346,6 @@
         });
     };
 
-	WikiDocument.prototype.publish = function(params) {
-		params = $.extend({}, noops, params);
-		var self = this;
-		$.ajax({
-			url: reverse("ajax_publish", self.id),
-			type: "POST",
-			dataType: "json",
-			success: function(data) {
-				params.success(self, data);
-			},
-			error: function(xhr) {
-				if (xhr.status == 403 || xhr.status == 401) {
-					params.failure(self, "Nie masz uprawnień lub nie jesteś zalogowany.");
-				}
-				else {
-					try {
-						params.failure(self, xhr.responseText);
-					}
-					catch (e) {
-						params.failure(self, "Nie udało się - błąd serwera.");
-					};
-				};
-
-			}
-		});
-	};
-
 	WikiDocument.prototype.pubmark = function(params) {
 		params = $.extend({}, noops, params);
 		var self = this;
@@ -410,6 +386,25 @@
 		});
 	};
 
+	WikiDocument.prototype.refreshCover = function(params) {
+        var self = this;
+		var data = {
+			xml: self.text // TODO: send just DC
+		};
+        $.ajax({
+            url: reverse("ajax_cover_preview"),
+            type: "POST",
+            data: data,
+            success: function(data) {
+                params.success(data);
+            },
+            error: function(xhr) {
+                // params.failure("Nie udało się odświeżyć okładki - błąd serwera.");
+            }
+        });
+ 	};
+
+
     WikiDocument.prototype.getLength = function(params) {
         var xml = this.text.replace(/\/(\s+)/g, '<br />$1');
         var parser = new DOMParser();