Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8163
Modified Files:
NEWS
Log Message:
hopefully finally fixed the IE-Slash-prefixing for links within the WYSIWYG
editor.
Tested with those URLs:
<a href="uploads/angel.jpg">relative</a><br />
<a href="/serendipity/uploads/angel.jpg">absolute</a><br />
<a href="/index.php">outside absolute</a><br />
<a href="http://www.supergarv.de/">outside full absolute</a><br />
<a href="http://www.supergarv.de/serendipity/index.php">inside full
absolute</a><br /><a
href="http://www.supergarv.de/path/index.php">pathed</a><br /><a
href="http://www.google.de/">google</a><br />
which will all get rewritten to use 'http://www.supergarv.de/' now. Sadly
this introduces a full absolute URL scope, but it's the only way I've gotten
it to work, since IE does some nasty, unasked URL-replacing internally.
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -d -r1.140 -r1.141
--- NEWS 7 Jun 2004 09:49:54 -0000 1.140
+++ NEWS 7 Jun 2004 10:39:24 -0000 1.141
@@ -3,6 +3,10 @@
Version 0.7 ()
------------------------------------------------------------------------
+ * WYSIWYG-Editor: Links were prefixed with '/' wrongly (IE only).
+ Now all entered links will be put to an absolute URL consistently.
+ (garvinhicking)
+
* Minor https fixes, when https is used as links from commenting
users or in referring/exit links. Fix for RPC-ping function submitting
double http://http:// URLs. (garvinhicking)
|