1 /* Copyright (c) 2009 Arnaud Renevier, Inc, published under the modified BSD
4 // drag feature with tolerance
5 OpenLayers.Control.SypDragFeature = OpenLayers.Class (OpenLayers.Control.DragFeature, {
11 downFeature: function(pixel) {
12 OpenLayers.Control.DragFeature.prototype.downFeature.apply(this, arguments);
13 this.dragStart = (new Date()).getTime();
14 this.startPixel = pixel;
17 doneDragging: function(pixel) {
18 OpenLayers.Control.DragFeature.prototype.doneDragging.apply(this, arguments);
20 var passesTimeTolerance =
21 (new Date()).getTime() > this.dragStart + this.timeTolerance;
23 var xDiff = this.startPixel.x - pixel.x;
24 var yDiff = this.startPixel.y - pixel.y;
26 var passesPixelTolerance =
27 Math.sqrt(Math.pow(xDiff,2) + Math.pow(yDiff,2)) > this.pixelTolerance;
29 if(passesTimeTolerance && passesPixelTolerance){
30 this.onComplete(this.feature, pixel);
32 var feature = this.feature;
33 var res = this.map.getResolution();
34 this.feature.geometry.move(res * (this.startPixel.x - this.lastPixel.x),
35 res * (this.lastPixel.y - this.startPixel.y));
36 this.layer.drawFeature(this.feature);
38 this.layer.drawFeature(this.feature, "select");
41 moveFeature: function(pixel) {
42 OpenLayers.Control.DragFeature.prototype.moveFeature.apply(this, arguments);
43 this.layer.drawFeature(this.feature, "temporary");
46 overFeature: function (feature) {
47 // can only drag and drop currently selected feature
48 if (feature != Admin.currentFeature) {
51 OpenLayers.Control.DragFeature.prototype.overFeature.apply(this, arguments);
54 CLASS_NAME: "OpenLayers.Control.SypDragFeature"
59 ICON: "media/marker-normal.png",
60 SELECT_ICON: "media/marker-selected.png",
61 TEMPORARY_ICON: "media/marker-temp.png",
68 selFeatureControl: null,
69 moveFeatureControl: null,
70 addFeatureControl: null,
73 currentFeatureLocation: null,
76 this.map = new OpenLayers.Map ("map", {
78 new OpenLayers.Control.Navigation (),
79 new OpenLayers.Control.PanZoom ()
81 projection: new OpenLayers.Projection("EPSG:900913"),
82 displayProjection: new OpenLayers.Projection("EPSG:4326")
85 this.baseLayer = this.createBaseLayer ();
86 this.map.addLayer(this.baseLayer);
88 this.map.setCenter(new OpenLayers.LonLat(0, 0), 0);
89 if (sypSettings.loggedUser) {
90 this.dataLayer = this.createDataLayer (sypSettings.loggedUser);
91 this.map.addLayer(this.dataLayer);
97 this.addFeatureControl.deactivate();
98 this.moveFeatureControl.deactivate();
99 this.selFeatureControl.activate();
100 this.checkForFeatures();
101 $("#newfeature_button").show().val(SypStrings.AddItem);
102 $("#newfeature_button").unbind("click").click(function () {
103 Admin.addNewFeature();
107 createBaseLayer: function () {
108 return new OpenLayers.Layer.OSM("OSM");
111 createDataLayer: function (user) {
112 var styleMap = new OpenLayers.StyleMap (
114 externalGraphic: this.Markers.ICON,
115 graphicHeight: this.Markers.HEIGHT || 32
118 externalGraphic: this.Markers.TEMPORARY_ICON,
119 graphicHeight: this.Markers.HEIGHT || 32
122 externalGraphic: this.Markers.SELECT_ICON,
123 graphicHeight: this.Markers.HEIGHT || 32
126 var layer = new OpenLayers.Layer.GML("KML", "items.php?from_user=" + encodeURIComponent(user),
129 format: OpenLayers.Format.KML,
130 projection: this.map.displayProjection,
131 eventListeners: { scope: this,
132 loadend: this.dataLayerEndLoad
137 this.selFeatureControl = this.createSelectFeatureControl(layer)
138 this.map.addControl(this.selFeatureControl);
139 this.moveFeatureControl = this.createMoveFeatureControl(layer)
140 this.map.addControl(this.moveFeatureControl);
141 this.addFeatureControl = this.createNewfeatureControl();
142 this.map.addControl(this.addFeatureControl);
147 createMoveFeatureControl: function (layer) {
148 var control = new OpenLayers.Control.SypDragFeature(
154 createSelectFeatureControl: function (layer) {
155 var control = new OpenLayers.Control.SelectFeature(
157 onSelect: OpenLayers.Function.bind(this.onFeatureSelect, this)
162 createNewfeatureControl: function () {
163 var control = new OpenLayers.Control ();
164 var handler = new OpenLayers.Handler.Click(control, {
165 'click': OpenLayers.Function.bind(FeatureMgr.add, FeatureMgr)
167 control.handler = handler;
171 onFeatureSelect: function (feature) {
172 this.showEditor(feature);
174 this.selFeatureControl.deactivate();
175 this.moveFeatureControl.activate();
178 closeEditor: function() {
179 if ($("#editor").css("display") == "none") {
182 if (this.currentFeature && this.currentFeature.layer) {
183 this.selFeatureControl.unselect(this.currentFeature);
185 this.currentFeature = null;
186 this.currentFeatureLocation = null;
187 $("#img").removeAttr('src');
188 $("#img").parent().html($("#img").parent().html());
189 $("#img").parent().show();
190 $("#title, #description").val("");
192 // do it once before hidding and once after hidding to work in all cases
193 $("#title, #description").val("");
194 $("#image_file").parent().html($("#image_file").parent().html());
195 $(document).unbind("keydown");
196 this.checkForFeatures();
200 showEditor: function (feature) {
201 $("#newfeature_button").hide();
209 $(document).unbind("keydown").keydown(function(e) {
210 if (e.keyCode == 27) {
211 Admin.cancelCurrentFeature()
215 this.currentFeature = feature;
216 this.currentFeatureLocation = new OpenLayers.Pixel(feature.geometry.x, feature.geometry.y);
218 $("#instructions").text(SypStrings.DragDropHowto);
219 $("#title").val(feature.attributes.name);
220 var fullDesc = $(feature.attributes.description).parent();
221 $("#description").val(fullDesc.find('p').text());
222 var src = fullDesc.find('img').attr('src');
224 $("#img").parent().show();
225 $("#img").attr('src', src);
226 $("#image_file").parent().hide();
227 $("#image_delete").show();
229 $("#img").parent().hide();
230 $("#image_file").parent().show();
231 $("#image_delete").hide();
233 $("#title").select().focus();
236 dataLayerEndLoad: function() {
237 // only set zoom extent once
238 this.dataLayer.events.unregister('loadend', this, this.dataLayerEndLoad);
239 this.dataLayer.events.register('loadend', this, this.checkForFeatures);
241 if (!this.checkForFeatures()) {
246 var orig = this.Utils.mbr (this.dataLayer);
247 var centerBounds = new OpenLayers.Bounds();
249 var mapProj = map.getProjectionObject();
250 var sypOrigProj = new OpenLayers.Projection("EPSG:4326");
252 var bottomLeft = new OpenLayers.LonLat(orig[0],orig[1]);
253 bottomLeft = bottomLeft.transform(sypOrigProj, mapProj);
254 var topRight = new OpenLayers.LonLat(orig[2],orig[3])
255 topRight = topRight.transform(sypOrigProj, mapProj);
257 centerBounds.extend(bottomLeft);
258 centerBounds.extend(topRight);
259 map.zoomToExtent(centerBounds);
262 checkForFeatures: function () {
263 var features = this.dataLayer.features;
264 if (features.length != 0) {
265 $("#instructions").text(SypStrings.SelectHowto);
267 return !!features.length;
270 addNewFeature: function () {
274 $(document).unbind("keydown");
277 $(document).unbind("keydown").keydown(function(e) {
278 if (e.keyCode == 27) {
284 $("#newfeature_button").val("annuler");
285 $("#newfeature_button").unbind("click").click(cancel);
287 $("#instructions").text(SypStrings.AddHowto);
288 this.selFeatureControl.deactivate();
289 this.addFeatureControl.activate();
293 cancelCurrentFeature: function() {
294 if (AjaxMgr.running) {
297 var feature = this.currentFeature;
300 FeatureMgr.move (feature, this.currentFeatureLocation);
302 this.dataLayer.removeFeatures([feature]);
309 reloadLayer: function (layer) {
310 layer.destroyFeatures();
311 layer.loaded = false;
316 /* minimum bounds rectangle containing all feature locations.
317 * FIXME: if two features are close, but separated by 180th meridian,
318 * their mbr will span the whole earth. Actually, 179° lon and -170°
319 * lon are considerated very near.
321 mbr: function (layer) {
325 var mapProj = map.getProjectionObject();
326 var sypOrigProj = new OpenLayers.Projection("EPSG:4326");
328 for (var i =0; i < layer.features.length; i++) {
329 if (layer.features[i].cluster) {
330 features = features.concat(layer.features[i].cluster);
332 features = features.concat(layer.features);
341 if (features.length == 0) {
342 // keep default values
343 } else if (features.length == 1) {
344 // in case there's only one feature, we show an area of at least
346 var pos = features[0].geometry.getBounds().getCenterLonLat().clone();
347 var lonlat = pos.transform(mapProj, sypOrigProj);
349 minlon = Math.max (lonlat.lon - 2, -180);
350 maxlon = Math.min (lonlat.lon + 2, 180);
351 minlat = Math.max (lonlat.lat - 2, -90);
352 maxlat = Math.min (lonlat.lat + 2, 90);
354 for (var i = 0; i < features.length; i++) {
355 var pos = features[i].geometry.getBounds().getCenterLonLat().clone();
356 var lonlat = pos.transform(mapProj, sypOrigProj);
357 minlon = Math.min (lonlat.lon, minlon);
358 minlat = Math.min (lonlat.lat, minlat);
359 maxlon = Math.max (lonlat.lon, maxlon);
360 maxlat = Math.max (lonlat.lat, maxlat);
364 return [minlon, minlat, maxlon, maxlat];
369 escapeHTML: function (str) {
374 replace(/&/gm, '&').
375 replace(/'/gm, ''').
376 replace(/"/gm, '"').
377 replace(/>/gm, '>').
378 replace(/</gm, '<');
381 startsWith: function (str, prefix) {
382 return (str.slice(0, prefix.length) == prefix);
385 indexOf: function (array, item) {
386 if (array.indexOf !== undefined) {
387 return array.indexOf(item);
389 return OpenLayers.Util.indexOf(array, item);
402 var pos = map.getLonLatFromViewPortPx(evt.xy);
403 feature = this.update (null, pos, "", "", "");
404 Admin.addFeatureControl.deactivate();
405 Admin.selFeatureControl.select(feature);
408 move: function (feature, aLocation) {
409 if (!feature || !aLocation) {
412 var curLoc = feature.geometry;
413 feature.geometry.move(aLocation.x - curLoc.x, aLocation.y - curLoc.y);
414 feature.layer.drawFeature(feature);
417 update: function(feature, lonlat, imgurl, title, description) {
418 var point = new OpenLayers.Geometry.Point(lonlat.lon, lonlat.lat);
420 feature = new OpenLayers.Feature.Vector(point);
421 Admin.dataLayer.addFeatures([feature]);
423 this.move (feature, point);
425 feature.attributes.name = title;
426 feature.attributes.description = "<p>" + Admin.Utils.escapeHTML(description) + "</p>"
427 + "<img src=\"" + imgurl + "\">"
431 del: function (feature) {
432 var form = $("#feature_delete");
433 form.find('input[name="fid"]').val(feature.fid);
436 oncomplete: OpenLayers.Function.bind(this.ajaxReply, this),
437 throbberid: "editor_throbber"
441 save: function (feature) {
442 var x = feature.geometry.x;
443 var y = feature.geometry.y;
445 var mapProj = feature.layer.map.getProjectionObject();
446 var lonlat = new OpenLayers.LonLat(x, y).
448 new OpenLayers.Projection("EPSG:4326"));
449 var form = $("#feature_update");
450 form.find('input[name="lon"]').val(lonlat.lon);
451 form.find('input[name="lat"]').val(lonlat.lat);
452 form.find('input[name="fid"]').val(feature.fid);
453 form.find('input[name="keep_img"]').val(
454 $("#img").attr("src") ? "yes": "no"
458 form.find('input[name="request"]').val("update");
460 form.find('input[name="request"]').val("add");
464 oncomplete: OpenLayers.Function.bind(this.ajaxReply, this),
465 throbberid: "editor_throbber"
469 ajaxReply: function (data) {
471 this.commError(SypStrings.ServerError);
475 var xml = new OpenLayers.Format.XML().read(data);
477 switch (xml.documentElement.nodeName.toLowerCase()) {
479 switch (xml.documentElement.getAttribute("reason")) {
482 $("#cookie_warning").show();
484 Admin.cancelCurrentFeature();
489 this.commError(SypStrings.ServerError);
493 this.commError(SypStrings.UnreferencedError);
494 Admin.reloadLayer(Admin.dataLayer);
498 this.commError(SypStrings.NochangeError);
502 this.commError(SypStrings.RequestError);
506 this.commError(SypStrings.ToobigError);
507 $("#image_file").parent().html($("#image_file").parent().html());
508 $("#image_file").focus();
511 this.commError(SypStrings.NotimageError);
512 $("#image_file").parent().html($("#image_file").parent().html());
513 $("#image_file").focus();
516 this.commError(SypStrings.UnconsistentError);
522 switch (xml.documentElement.getAttribute("request")) {
524 this.commSuccess(SypStrings.DelSucces);
525 var someFeature = false;
527 $.each($(xml).find("FEATURE,feature"), function () {
529 var id = parseFloat($(this).find("ID:first,id:first").text());
530 if ((id === null) || isNaN (id)) {
533 var features = Admin.dataLayer.features;
534 for (var idx = 0; idx < features.length; idx++) {
535 if (features[idx].fid == id) {
536 Admin.dataLayer.removeFeatures([features[idx]]);
540 if (someFeature == false) {
541 this.commError(SypStrings.UnconsistentError);
548 var someFeature = false;
550 $.each($(xml).find("FEATURE,feature"), function () {
552 var id = parseFloat($(this).find("ID:first,id:first").text());
553 if ((id === null) || isNaN (id)) {
557 var lon = parseFloat($(this).find("LON:first,lon:first").text());
558 if ((typeof (lon) != "number") || isNaN (lon) ||
559 (lon < -180) || (lon > 180)) {
563 var lat = parseFloat($(this).find("LAT:first,lat:first").text());
564 if ((typeof (lat) != "number") || isNaN (lat) ||
565 (lat < -90) || (lat > 90)) {
569 var mapProj = Admin.map.getProjectionObject();
570 var lonlat = new OpenLayers.LonLat (lon, lat).
571 transform( new OpenLayers.Projection("EPSG:4326"), mapProj);
573 var imgurl = $(this).find("IMGURL:first,imgurl:first").text();
574 var title = $(this).find("HEADING:first,heading:first").text();
575 var description = $(this).find("DESCRIPTION:first,description:first").text();
577 feature = self.update (Admin.currentFeature, lonlat, imgurl, title, description);
581 if (someFeature == false) {
582 this.commError(SypStrings.UnconsistentError);
584 this.commSuccess(SypStrings.UpdateSucces);
590 this.commError(SypStrings.UnconsistentError);
595 this.commError(SypStrings.UnconsistentError);
600 commSuccess: function (message) {
601 $("#server_comm").text(message);
602 $("#server_comm").removeClass("error success").addClass("success");
605 commError: function (message) {
606 $("#server_comm").text(message);
607 $("#server_comm").removeClass("error success").addClass("error");
611 /* maintains a queue of ajax queries, so I'm sure they all execute in the same
612 * order they were defined */
618 add: function(query) {
619 this._queue.push(query);
620 if (this._queue.length > 1) {
623 this._runQuery(query);
627 _runQuery: function(query) {
629 $('#api_frame').one("load", function() {
630 self.running = false;
632 if (query.throbberid) {
633 $("#" + query.throbberid).css("visibility", "hidden");
635 if (typeof (query.oncomplete) == "function") {
638 if (this.contentDocument) {
639 body = this.contentDocument.body;
640 } else if (this.contentWindow) {
641 body = this.contentWindow.document.body;
643 body = document.frames[this.id].document.body;
647 query.oncomplete(body.innerHTML);
649 query.oncomplete(null);
653 query.form.attr("action", "api.php");
654 query.form.attr("target", "api_frame");
655 query.form.attr("method", "post");
657 query.form.get(0).submit();
658 if (query.throbberid) {
659 $("#" + query.throbberid).css("visibility", "visible");
661 if (typeof (query.onsend) == "function") {
666 _reqEnd: function() {
668 if (this._queue.length > 0) {
669 this._reqEnd(this._queue[0]);
677 $("#login_form").submit(this.submit);
678 $("#user").focus().select();
683 $("#login_area").show();
684 $("#password").val("");
685 $("#user").val(sypSettings.loggedUser).focus().select();
688 submit: function () {
690 pwdMgr.commError("");
692 form: $("#login_form"),
693 throbberid: "pwd_throbber",
695 $("#login_error").hide();
697 // we need a timeout; otherwise those fields will not be submitted
698 window.setTimeout(function() {
699 // removes focus from #password before disabling it. Otherwise, opera
700 // prevents re-focusing it after re-enabling it.
701 $("#user, #password").blur();
702 $("#login_submit, #user, #password").attr("disabled", "disabled");
705 oncomplete: OpenLayers.Function.bind(pwdMgr.ajaxReply, pwdMgr)
712 ajaxReply: function (data) {
713 // here, we need a timeout because onsend timeout sometimes has not been triggered yet
714 window.setTimeout(function() {
715 $("#login_submit, #user, #password").removeAttr("disabled");
719 this.commError(SypStrings.ServerError);
720 $("#login_error").show();
721 window.setTimeout(function() {
722 $("#user").focus().select();
726 var xml = new OpenLayers.Format.XML().read(data);
728 switch (xml.documentElement.nodeName.toLowerCase()) {
730 switch (xml.documentElement.getAttribute("reason")) {
732 this.commError(SypStrings.ServerError);
735 this.commError(SypStrings.UnauthorizedError);
738 this.commError(SypStrings.RequestError);
741 this.commError(SypStrings.UnconsistentError);
744 $("#login_error").show();
745 window.setTimeout(function() {
746 $("#user").focus().select();
750 $("#login_area").hide();
752 user = $(xml).find("USER,user").text();
753 sypSettings.loggedUser = user;
755 if (sypSettings.loggedUser == "admin") {
759 if (Admin.selFeatureControl) {
760 Admin.selFeatureControl.destroy();
762 if (Admin.moveFeatureControl) {
763 Admin.moveFeatureControl.destroy();
765 if (Admin.addFeatureControl) {
766 Admin.addFeatureControl.destroy();
768 if (Admin.dataLayer) {
769 Admin.dataLayer.destroy();
772 Admin.dataLayer = Admin.createDataLayer(user);
773 Admin.map.addLayer(Admin.dataLayer);
778 this.commError(SypStrings.UnconsistentError);
783 commError: function (message) {
784 $("#login_error").text(message);
786 $("#login_error").show();
788 $("#login_error").hide();
794 _adduserDisplayed: false,
795 _changepassDisplayed: false,
798 $("#user_close").unbind("click").click(function () {
802 $("#change_pass").unbind("click").click(function() {
803 userMgr.toggleChangePass();
806 $("#changepass").unbind("submit").submit(function() {
808 userMgr.changepass();
813 if (sypSettings.loggedUser != "admin") {
817 $("#add_user").show();
818 $("#add_user").unbind("click").click(function () {
819 userMgr.toggleAddUser();
822 $("#newuser").unbind("submit").submit(function() {
831 disableForms: function() {
832 $("#newuser_name, #newuser_password, #newuser_password_confirm, #newuser_submit").attr("disabled", "disabled");
833 $("#pass_current, #pass_new, #pass_new_confirm, #pass_submit").attr("disabled", "disabled");
836 enableForms: function() {
837 $("#newuser_name, #newuser_password, #newuser_password_confirm, #newuser_submit").removeAttr("disabled");
838 $("#pass_current, #pass_new, #pass_new_confirm, #pass_submit").removeAttr("disabled");
841 resetForms: function() {
842 $("#newuser_name, #newuser_password, #newuser_password_confirm").val("");
843 $("#pass_current, #pass_new, #pass_new_confirm").val("");
848 $("#add_user").unbind("click");
849 $("#add_user").hide();
850 $("#change_pass").unbind("click");
851 $("#user_close").unbind("click");
852 $("#newuser").unbind("submit");
853 $("#changepass").unbind("submit");
857 this.closeChangePass();
861 toggleChangePass: function() {
862 if (this._changepassDisplayed) {
863 this.closeChangePass();
865 this.showChangePass();
869 showChangePass: function() {
870 if (!Admin.cancelCurrentFeature()) {
875 $(document).unbind("keydown").keydown(function(e) {
876 if (e.keyCode == 27) {
877 userMgr.closeChangePass()
884 $("#user_area, #changepass").show();
887 // XXX: setTimeout needed because otherwise, map becomes hidden in IE. Why ??
888 window.setTimeout(function() {
889 $("#pass_current").focus();
892 this._changepassDisplayed = true;
895 closeChangePass: function() {
896 if (!this._changepassDisplayed) {
899 $("#user_area, #changepass").hide();
900 $(document).unbind("keydown");
901 this._changepassDisplayed = false;
904 changepass: function() {
905 var newpass = $("#pass_new").val();
906 var newpass_confirm = $("#pass_new_confirm").val();
907 if (newpass != newpass_confirm) {
908 this.commError(SypStrings.userPasswordmatchError);
909 $("#pass_new").focus().select();
913 var curpass = $("#pass_current").val();
914 if (newpass == curpass) {
915 this.commError(SypStrings.changeSamePass);
916 $("#pass_new").focus().select();
923 form: $("#changepass"),
924 oncomplete: OpenLayers.Function.bind(this.ajaxReply, this),
925 throbberid: "user_throbber",
927 // we need a timeout; otherwise those fields will not be submitted
928 window.setTimeout(function() {
929 // removes focus from #password before disabling it. Otherwise, opera
930 // prevents re-focusing it after re-enabling it.
931 $("#pass_current, #pass_new, #pass_new_confirm").blur();
932 userMgr.disableForms();
938 toggleAddUser: function() {
939 if (this._adduserDisplayed) {
946 showAddUser: function() {
947 if (!Admin.cancelCurrentFeature()) {
951 this.closeChangePass();
953 $(document).unbind("keydown").keydown(function(e) {
954 if (e.keyCode == 27) {
955 userMgr.closeAddUser()
960 $("#user_area, #newuser").show();
965 // XXX: setTimeout needed because otherwise, map becomes hidden in IE. Why ??
966 window.setTimeout(function() {
967 $("#newuser_name").focus();
970 this._adduserDisplayed = true;
973 closeAddUser: function() {
974 if (!this._adduserDisplayed) {
977 $("#user_area, #newuser").hide();
978 $(document).unbind("keydown");
979 this._adduserDisplayed = false;
983 var newuser_name = $("#newuser_name").val();
985 this.commError(SypStrings.newUserNonameError);
986 $("#newuser_name").focus();
990 var newuser_pass = $("#newuser_password").val();
991 var newuser_pass_confirm = $("#newuser_password_confirm").val();
992 if (newuser_pass != newuser_pass_confirm) {
993 this.commError(SypStrings.userPasswordmatchError);
994 $("#newuser_password").focus().select();
1001 form: $("#newuser"),
1002 oncomplete: OpenLayers.Function.bind(this.ajaxReply, this),
1003 throbberid: "user_throbber",
1004 onsend: function() {
1005 // we need a timeout; otherwise those fields will not be submitted
1006 window.setTimeout(function() {
1007 // removes focus from #password before disabling it. Otherwise, opera
1008 // prevents re-focusing it after re-enabling it.
1009 $("#newuser_name, #newuser_password, #newuser_password_confirm").blur();
1010 userMgr.disableForms();
1016 ajaxReply: function (data) {
1018 // here, we need a timeout because onsend timeout sometimes has not been triggered yet
1020 window.setTimeout(function() {
1023 this.commError(SypStrings.ServerError);
1027 var needFormEnabling = true;
1030 var xml = new OpenLayers.Format.XML().read(data);
1031 switch (xml.documentElement.nodeName.toLowerCase()) {
1033 switch (xml.documentElement.getAttribute("reason")) {
1034 case "unauthorized":
1036 $("#cookie_warning").show();
1041 this.commError(SypStrings.ServerError);
1042 if (this._adduserDisplayed) {
1043 focusEl = $("#newuser_name");
1044 } else if (this._changepassDisplayed) {
1045 focusEl = $("#pass_current");
1049 this.commError(SypStrings.RequestError);
1050 if (this._adduserDisplayed) {
1051 focusEl = $("#newuser_name");
1052 } else if (this._changepassDisplayed) {
1053 focusEl = $("#pass_current");
1057 this.commError(SypStrings.changePassBadPass);
1058 focusEl = $("#pass_current");
1060 case "newuser_exists":
1061 this.commError(SypStrings.newUserExistsError);
1062 focusEl = $("#newuser_name");
1065 this.commError(SypStrings.UnconsistentError);
1066 if (this._adduserDisplayed) {
1067 focusEl = $("#newuser_name");
1068 } else if (this._changepassDisplayed) {
1069 focusEl = $("#pass_current");
1075 switch (xml.documentElement.getAttribute("request")) {
1077 this.commSuccess(SypStrings.newUserSuccess);
1078 needFormEnabling = false;
1081 this.commSuccess(SypStrings.changePassSuccess);
1082 needFormEnabling = false;
1085 this.commError(SypStrings.UnconsistentError);
1086 focusEl = $("newuser_name");
1091 this.commError(SypStrings.UnconsistentError);
1092 focusEl = $("newuser_name");
1096 if (needFormEnabling) {
1097 // here, we need a timeout because onsend timeout sometimes has not been triggered yet
1099 window.setTimeout(function() {
1102 focusEl.select().focus();
1107 focusEl.focus().select();
1113 commSuccess: function (message) {
1114 $("#user_comm").text(message);
1115 $("#user_comm").removeClass("error success").addClass("success");
1118 commError: function (message) {
1119 $("#user_comm").text(message);
1120 $("#user_comm").removeClass("error success").addClass("error");
1124 $(window).load(function () {
1125 // if using .ready, ie triggers an error when trying to access
1126 // document.namespaces
1128 $("#newfeature_button").click(function () {
1129 Admin.addNewFeature();
1131 $("#editor_close").click(function () {
1132 Admin.cancelCurrentFeature()
1134 $("#feature_update").submit(function() {
1136 FeatureMgr.save(Admin.currentFeature);
1140 $("#feature_delete").submit(function() {
1142 FeatureMgr.del(Admin.currentFeature);
1146 $("#image_delete").click(function() {
1147 $("#img").removeAttr('src');
1148 // needs to rebuild element otherwise some browsers still
1150 $("#img").parent().html($("#img").parent().html());
1151 $("#img").parent().hide();
1152 $("#image_delete").hide();
1153 $("#image_file").parent().show();