Autor Beitrag
BenBE
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 8721
Erhaltene Danke: 191

Win95, Win98SE, Win2K, WinXP
D1S, D3S, D4S, D5E, D6E, D7E, D9PE, D10E, D12P, DXEP, L0.9\FPC2.0
BeitragVerfasst: Mo 06.04.09 17:36 
Ich weiß nicht, inwiefern andere auch dieses Problem haben, aber seit kurzem funktioniert bei mir die Beitragspreview in der Suche nicht mehr. Er zeigt zwar das Uhr-Symbol an, das war's aber auch schon. Danach passiert nichts weiter.

Im IE6 auf meinem und einem anderen System gehts.

Ich hab zwar im FF den EdgeApe mit arbeiten, der hängt jedoch an der stelle nirgends drin (auch wenn der bereits einiges prototyped). Zudem tritt der Fehler selbst dann noch auf, wenn GreaseMonkey deaktiviert ist.

user profile iconMartok hatte zudem im Äffchen einen Fehler beim AJAX behoben, bei dem der FF 3.1.b3 keine OnStateChanged-Events mehr liefert, sondern direkte Handler aufruft. Ich weiß nicht, inwiefern das die Ursache sein könnte.

Andere AJAX-Funktionen (Letzten 10 blättern z.B.) funktioneren tadellos.

_________________
Anyone who is capable of being elected president should on no account be allowed to do the job.
Ich code EdgeMonkey - In dubio pro Setting.
Martok
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 3661
Erhaltene Danke: 604

Win 8.1, Win 10 x64
Pascal: Lazarus Snapshot, Delphi 7,2007; PHP, JS: WebStorm
BeitragVerfasst: Mo 06.04.09 17:59 
user profile iconBenBE hat folgendes geschrieben Zum zitierten Posting springen:
user profile iconMartok hatte zudem im Äffchen einen Fehler beim AJAX behoben, bei dem der FF 3.1.b3 keine OnStateChanged-Events mehr liefert, sondern direkte Handler aufruft. Ich weiß nicht, inwiefern das die Ursache sein könnte.

Ich find den Satz grade etwas diffus, daher hier mal ein Schnipselchen aus dem entsprechenden Patch:
ausblenden Quelltext
1:
2:
3:
4:
     var request = this.prepareRequest(url,postData,true);
-    request.onreadystatechange = readyEvent;
+    request.addEventListener('load',readyEvent,false);
     return request.send(request.postBody);


Nur, dass das wahrscheinlich nix ändern wird, da alles hier auf Ajax.sendRequest hinausläuft.

_________________
"The phoenix's price isn't inevitable. It's not part of some deep balance built into the universe. It's just the parts of the game where you haven't figured out yet how to cheat."
jaenicke
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 19315
Erhaltene Danke: 1747

W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
BeitragVerfasst: Mo 06.04.09 19:10 
Das liegt an dir. :nixweiss:

Weder in der 3.1b3 build 2 noch in der aktuellen normalen Version 3.0.8 tritt das Problem bei mir auf, es funktioniert tadellos.
Regan
ontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic starofftopic star
Beiträge: 2157
Erhaltene Danke: 72


Java (Eclipse), Python (Sublimetext 3)
BeitragVerfasst: Mo 06.04.09 19:45 
user profile iconjaenicke hat folgendes geschrieben Zum zitierten Posting springen:
Das liegt an dir. user defined image

Dito. Mit meinem Affen (0.18) geht es auch.
BenBE Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 8721
Erhaltene Danke: 191

Win95, Win98SE, Win2K, WinXP
D1S, D3S, D4S, D5E, D6E, D7E, D9PE, D10E, D12P, DXEP, L0.9\FPC2.0
BeitragVerfasst: Mo 06.04.09 19:57 
k, hat sich erledigt. Irgendwie hat sich ein Fehler im Äffchen da etwas zu sehr auf der Seite verankert, so dass auch bei deaktiviertem Schmieraffen, der Fehler noch bestand.

Ist zumindest in der aktuellen Dev-Version jetzt raus; Update sollte aber bald kommen.

_________________
Anyone who is capable of being elected president should on no account be allowed to do the job.
Ich code EdgeMonkey - In dubio pro Setting.