From c4be43daa24d647ce10ad5f85d911e560b955365 Mon Sep 17 00:00:00 2001
From: ARNO* <arno@rezo.net>
Date: Thu, 19 May 2005 12:27:04 +0000
Subject: [PATCH] Win-png a la racine (pour acces depuis site public)

---
 .gitattributes |   1 +
 rien.gif       | Bin 0 -> 63 bytes
 spip_style.css |   5 +----
 win_png.htc    |  47 +++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 49 insertions(+), 4 deletions(-)
 create mode 100755 rien.gif
 create mode 100755 win_png.htc

diff --git a/.gitattributes b/.gitattributes
index e09b6c71cc..d599f2d6ad 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -250,3 +250,4 @@ ecrire/puce.gif -text
 ecrire/puce_rtl.gif -text
 /puce.gif -text
 /puce_rtl.gif -text
+/rien.gif -text
diff --git a/rien.gif b/rien.gif
new file mode 100755
index 0000000000000000000000000000000000000000..73130b9919664ec9d423accc4952083c2cfbddef
GIT binary patch
literal 63
zcmZ?wbhEHblwgoxXkcLY|NlP&1B2pE7Dgb&paUX6G7L;&E&VG`zvW*%XUnbb&G+{F
O=5KrCF)f&p!5RP(JrnQ%

literal 0
HcmV?d00001

diff --git a/spip_style.css b/spip_style.css
index b43daf471f..25674f8f14 100644
--- a/spip_style.css
+++ b/spip_style.css
@@ -156,10 +156,7 @@ input.formrecherche {
  *  Images typographiques (via image_typo)
  */
 .image_typo {
-	display: inline;
-}
-.texte_typo {
-	display: none;
+	behavior: url("win_png.htc");
 }
 
 
diff --git a/win_png.htc b/win_png.htc
new file mode 100755
index 0000000000..cd444ae04c
--- /dev/null
+++ b/win_png.htc
@@ -0,0 +1,47 @@
+<public:component>
+<public:attach event="onpropertychange" onevent="propertyChanged()" />
+<script>
+
+var supported = /MSIE (5\.5)|[6789]/.test(navigator.userAgent) && navigator.platform == "Win32";
+var realSrc;
+var blankSrc = "rien.gif";
+
+if (supported) fixImage();
+
+function propertyChanged() {
+   if (!supported) return;
+   
+   var pName = event.propertyName;
+   if (pName != "src") return;
+   // if not set to blank
+   if ( ! new RegExp(blankSrc).test(src))
+      fixImage();
+};
+
+function fixImage() {
+   // get src
+   var src = element.src;
+   
+   // check for real change
+   if (src == realSrc) {
+      element.src = blankSrc;
+      return;
+   }
+
+   if ( ! new RegExp(blankSrc).test(src)) {
+      // backup old src
+      realSrc = src;
+   }
+   
+   // test for png
+   if ( /\.png$/.test( realSrc.toLowerCase() ) ) {
+      // set blank image
+      element.src = blankSrc;
+      // set filter
+      element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" +
+                                     src + "',sizingMethod='scale')";
+   }
+}
+
+</script>
+</public:component>
\ No newline at end of file
-- 
GitLab