[ok] Pouvoir modifier la css (dark/light)\r
* Créer le style lite\r
* Créer le style old (avec le style de l'ancien site) \r
-[ok] Ne pas afficher la css dans le profile\r
+[ok] Ne pas afficher la css dans le profile
+[ok] Ne pas effacer le message (dans le <input>) si l'on recoit un "pas ok" lors de l'envoie\r
* Utiliser une listbox pour la liste de css
-* Ne pas effacer le message (dans le <input>) si l'on recoit un "pas ok" lors de l'envoie
* Ralentir volontairement le connexion lors d'un mauvais login \r
* Shift-enter pour ajouter une ligne dans la ligne de saisie (retour à la ligne)\r
* Crée un <br /> XHTML\r
{\r
if (document.implementation && document.implementation.createDocument)\r
{\r
- return document.implementation.createDocument("", "action", null)\r
+ // var doc = document.implementation.createDocument("", "action", null)
+ var parser = new DOMParser();
+ var doc = parser.parseFromString("<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<action/>", "text/xml")
+ //alert(this.serializeXML(doc))
+ return doc\r
}\r
else if (window.ActiveXObject)\r
{\r
Util.prototype.xmlVersAction = function(xml)
{
- return {action: this.to_utf8(this.serializeXML(xml /*, "UTF-8"*/))}
+ //return {action: this.to_utf8(this.serializeXML(xml /*, "UTF-8"*/))}
+ return {action: this.serializeXML(xml)}
}
-
-// voir : http://homepage3.nifty.com/aokura/jscript/utf8.html
-// et : http://www1.tip.nl/~t876506/utf8tbl.html
-Util.prototype.to_utf8 = function(s)
-{\r
- if (!s) return ""\r
-
- var c, d = ""
- for (var i = 0; i < s.length; i++)
- {
- c = s.charCodeAt(i);
- if (c <= 0x7f) {
- d += s.charAt(i);
- } else if (c >= 0x80 && c <= 0x7ff) {
- d += String.fromCharCode(((c >> 6) & 0x1f) | 0xc0);
- d += String.fromCharCode((c & 0x3f) | 0x80);
- } else {
- d += String.fromCharCode((c >> 12) | 0xe0);
- d += String.fromCharCode(((c >> 6) & 0x3f) | 0x80);
- d += String.fromCharCode((c & 0x3f) | 0x80);
- }
- }
- return d;
-}\r
\r
Util.prototype.md5 = function(chaine)\r
{\r
jQuery(document).ready(
function()
{
+ /* FIXME : ce code pose problème sur konqueror, voir : http://www.kde-forum.org/thread.php?threadid=17993
+ var p = new DOMParser();
+ var doc = p.parseFromString("<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<action/>", "text/xml")
+ var s = new XMLSerializer()
+ alert(s.serializeToString(doc)) */
+
var util = new Util()
var client = new Client(util)
var pages = new Pages()
data : this.util.xmlVersAction(this.getXMLMessage(pseudo, message, repondA)),\r
dataType : "xml",\r
success : function(data, textStatus)\r
- {\r
- // TODO : traiter les erreurs\r
- //alert(data)\r
- jQuery("form input.message").val("")\r
+ {
+ if(jQuery("statut", data.documentElement).text() == "ok")\r
+ jQuery("form input.message").val("")\r
}\r
}\r
)
var thisMessages = this // caisupair javacrypte\r
//this.util.log(this.util.serializer.serializeToString(this.getXMLrafraichirMessages()))
+ //alert(this.util.xmlVersAction(this.getXMLrafraichirMessages()).action)
this.attenteCourante = jQuery.ajax({
type: "POST",
url: "request",