X-Git-Url: https://dev.renevier.net/gitweb.cgi?p=syp.git;a=blobdiff_plain;f=js%2Fadmin.js;h=03214a000f4f2fbc102a95920f5b6fd04843aa3b;hp=c7be3dbb00abedaf53790952a4459e23bee1ea39;hb=538e9c7fc6b55272d4599e05d1bc4bb25f17f849;hpb=57511b4efd7402ef58de66ac1fe2c01ed1b1d7b5 diff --git a/js/admin.js b/js/admin.js index c7be3db..03214a0 100644 --- a/js/admin.js +++ b/js/admin.js @@ -123,7 +123,7 @@ var Admin = { this.moveFeatureControl.deactivate(); this.selFeatureControl.activate(); this.checkForFeatures(); - $("#newfeature_button").show().val("ajouter un emplacement"); + $("#newfeature_button").show().val(SypStrings.AddItem); $("#newfeature_button").unbind("click").click(function () { Admin.addNewFeature(); }); @@ -230,7 +230,7 @@ var Admin = { this.currentFeature = feature; this.currentFeatureLocation = new OpenLayers.Pixel(feature.geometry.x, feature.geometry.y); $("#editor").show(); - $("#instructions").text("Vous pouvez déplacer le marqueur en effectuant un glisser-déposer."); + $("#instructions").text(SypStrings.DragDropHowto); $("#title").val(feature.attributes.name); var fullDesc = $(feature.attributes.description).parent(); $("#description").val(fullDesc.find('p').text()); @@ -250,11 +250,13 @@ var Admin = { checkForFeatures: function () { if (this.dataLayer.features.length != 0) { - $("#instructions").text("Pour modifier les données d'une image, sélectionnez le marqueur correspondant."); + $("#instructions").text(SypStrings.SelectHowto); } }, addNewFeature: function () { + alert (SypStrings.DisabledForDemo); + return; function cancel() { $(document).unbind("keydown"); Admin.reset() @@ -269,7 +271,7 @@ var Admin = { $("#newfeature_button").val("annuler"); $("#newfeature_button").unbind("click").click(cancel); - $("#instructions").text("Cliquez sur la carte pour ajouter un marqueur."); + $("#instructions").text(SypStrings.AddHowto); this.selFeatureControl.deactivate(); this.addFeatureControl.activate(); FeatureMgr.reset(); @@ -358,6 +360,8 @@ var FeatureMgr = { }, del: function (feature) { + alert (SypStrings.DisabledForDemo); + return; var form = $("#feature_delete"); form.find('input[name="fid"]').val(feature.fid); AjaxMgr.add({ @@ -395,7 +399,7 @@ var FeatureMgr = { ajaxReply: function (data) { if (!data) { - this.commError("Il s'est produit une erreur serveur."); + this.commError(SypStrings.ServerError); return; } @@ -406,38 +410,40 @@ var FeatureMgr = { switch (xml.documentElement.getAttribute("reason")) { case "unauthorized": $("#login_area").show(); + $("#cookie_warning").show(); this.reset(); + Admin.cancelCurrentFeature(); Admin.reset(); break; case "server": - this.commError("Il s'est produit une erreur serveur."); + this.commError(SypStrings.ServerError); $("title").focus(); break; case "unreferenced": - this.commError("La fiche n'était pas référencée sur le serveur."); + this.commError(SypStrings.UnreferencedError); Admin.reloadLayer(Admin.dataLayer); Admin.closeEditor(); break; case "nochange": - this.commError("Aucun changement n'a été effectué."); + this.commError(SypStrings.NochangeError); Admin.closeEditor(); break; case "request": - this.commError("Le serveur n'a pas compris la requête. Il s'agit probablement d'un bug dans SYP."); + this.commError(SypStrings.RequestError); $("title").focus(); break; case "toobig": - this.commError("L'image est trop grande et n'a pas été acceptée par le serveur."); + this.commError(SypStrings.ToobigError); $("#image_file").parent().html($("#image_file").parent().html()); $("#image_file").focus(); break; case "notimage": - this.commError("Le fichier ne semble pas être une image."); + this.commError(SypStrings.NotimageError); $("#image_file").parent().html($("#image_file").parent().html()); $("#image_file").focus(); break; default: - this.commError("Il s'est produit une erreur inconnue."); + this.commError(SypStrings.UnknownError); $("title").focus(); break; } @@ -445,7 +451,7 @@ var FeatureMgr = { case "success": switch (xml.documentElement.getAttribute("request")) { case "del": - this.commSuccess("La suppression s'est déroulée correctement."); + this.commSuccess(SypStrings.DelSucces); var someFeature = false; var self = this; $.each($(xml).find("FEATURE,feature"), function () { @@ -462,7 +468,7 @@ var FeatureMgr = { } }); if (someFeature == false) { - this.commError("Le serveur a fait une réponse incohérente."); + this.commError(SypStrings.UnconsistentError); } else { Admin.closeEditor(); } @@ -503,20 +509,20 @@ var FeatureMgr = { }); if (someFeature == false) { - this.commError("Le serveur a fait une réponse incohérente."); + this.commError(SypStrings.UnconsistentError); } else { - this.commSuccess("La sauvegarde s'est déroulée correctement."); + this.commSuccess(SypStrings.UpdateSucces); Admin.closeEditor(); } break; default: - this.commError("Le serveur a fait une réponse incohérente."); + this.commError(SypStrings.UnconsistentError); break; } break; default: - this.commError("Le serveur a fait une réponse incohérente."); + this.commError(SypStrings.UnconsistentError); break; } }, @@ -529,10 +535,6 @@ var FeatureMgr = { commError: function (message) { $("#server_comm").text(message); $("#server_comm").removeClass().addClass("error"); - if (message.length) { - // this.move(Admin.currentFeature, Admin.currentFeatureLocation); - // Admin.reset(); - } } } @@ -637,7 +639,7 @@ var pwdMgr = { }, 0); if (!data) { - this.commError("Il s'est produit une erreur serveur."); + this.commError(SypStrings.ServerError); $("#login_error").show(); window.setTimeout(function() { $("#password").focus().select(); @@ -650,16 +652,16 @@ var pwdMgr = { case "error": switch (xml.documentElement.getAttribute("reason")) { case "server": - this.commError("Il s'est produit une erreur serveur."); + this.commError(SypStrings.ServerError); break; case "unauthorized": - this.commError("Le mot de passe n'est pas correct."); + this.commError(SypStrings.UnauthorizedError); break; case "request": - this.commError("Le serveur n'a pas compris la requête. Il s'agit probablement d'un bug dans SYP."); + this.commError(SypStrings.RequestError); break; default: - this.commError("Il s'est produit une erreur inconnue."); + this.commError(SypStrings.UnknownError); break; } $("#login_error").show(); @@ -672,7 +674,7 @@ var pwdMgr = { $("#login_area").hide(); break; default: - this.commError("Le serveur a fait une réponse incohérente."); + this.commError(SypStrings.UnconsistentError); break; } }, @@ -710,6 +712,8 @@ $(window).load(function () { return false; }); $("#image_delete").click(function() { + alert (SypStrings.DisabledForDemo); + return; $("#img").removeAttr('src'); // needs to rebuild element otherwise some browsers still // display image.