[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r8712: make mouseovers of our language flags show you the name of t (website/trunk/include)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r8712: make mouseovers of our language flags show you the name of t (website/trunk/include)
- From: arma@xxxxxxxx
- Date: Fri, 13 Oct 2006 22:48:07 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Fri, 13 Oct 2006 22:48:19 -0400
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Author: arma
Date: 2006-10-13 22:48:05 -0400 (Fri, 13 Oct 2006)
New Revision: 8712
Modified:
website/trunk/include/head.wmi
Log:
make mouseovers of our language flags show you the name of the language
Modified: website/trunk/include/head.wmi
===================================================================
--- website/trunk/include/head.wmi 2006-10-13 23:35:48 UTC (rev 8711)
+++ website/trunk/include/head.wmi 2006-10-14 02:48:05 UTC (rev 8712)
@@ -62,9 +62,9 @@
for my $dir (@LANGUAGES) {
if (-e "$dir/$WML_SRC_FILENAME") {
if ($dir eq '$(LANG)') {
- printf('<img src="$(IMGROOT)/%s.png" alt="%s" /> ', $dir, $LANGUAGES{$dir});
+ printf('<acronym title="%s"><img src="$(IMGROOT)/%s.png" alt="%s" /></acronym> ', $LANGUAGES{$dir}, $dir, $LANGUAGES{$dir});
} else {
- printf('<a href="%s.html.%s"><img src="$(IMGROOT)/%s.png" alt="%s" /></a> ', $page, $dir, $dir, $LANGUAGES{$dir});
+ printf('<a href="%s.html.%s"><acronym title="%s"><img src="$(IMGROOT)/%s.png" alt="%s" /></acronym></a> ', $page, $dir, $LANGUAGES{$dir}, $dir, $LANGUAGES{$dir});
};
} else {
printf('<img src="$(IMGROOT)/green-flagspace.png"/> ');