aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/subsilver2/template/memberlist_im.html
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-09-22 18:31:50 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-09-22 18:31:50 +0000
commite3882844ec985a62ae573bbcf618c08343afc717 (patch)
treef980f059ded6f06bee2bb3597269209be32cdb3a /phpBB/styles/subsilver2/template/memberlist_im.html
parentcbb286420fe5cd82687df99a7f146ffc39408dc7 (diff)
downloadforums-e3882844ec985a62ae573bbcf618c08343afc717.tar
forums-e3882844ec985a62ae573bbcf618c08343afc717.tar.gz
forums-e3882844ec985a62ae573bbcf618c08343afc717.tar.bz2
forums-e3882844ec985a62ae573bbcf618c08343afc717.tar.xz
forums-e3882844ec985a62ae573bbcf618c08343afc717.zip
#i62 - #i65
gone through every javascript invocation and making sure we adhere to our coding guidelines. git-svn-id: file:///svn/phpbb/trunk@8099 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subsilver2/template/memberlist_im.html')
-rw-r--r--phpBB/styles/subsilver2/template/memberlist_im.html55
1 files changed, 27 insertions, 28 deletions
diff --git a/phpBB/styles/subsilver2/template/memberlist_im.html b/phpBB/styles/subsilver2/template/memberlist_im.html
index e3c13efd58..05c53808c6 100644
--- a/phpBB/styles/subsilver2/template/memberlist_im.html
+++ b/phpBB/styles/subsilver2/template/memberlist_im.html
@@ -19,7 +19,7 @@
<!-- IF S_SEND_AIM -->
<tr>
- <td class="row1" colspan="2" align="center"><br /><a class="gen" href="aim:addbuddy?screenname={IM_CONTACT}">{L_IM_ADD_CONTACT}</a><br /><a class="gen" href="aim:goim?screenname={IM_CONTACT}&message={SITENAME}">{L_IM_SEND_MESSAGE}</a><br /><br /><a class="gensmall" href="http://www.aim.com/download.adp">{L_IM_DOWNLOAD_APP}</a> | <a class="gensmall" href="http://aimexpress.oscar.aol.com/aimexpress/launch.adp?Brand=AIM">{L_IM_AIM_EXPRESS}</a> </td>
+ <td class="row1" colspan="2" align="center"><br /><a class="gen" href="{U_AIM_CONTACT}">{L_IM_ADD_CONTACT}</a><br /><a class="gen" href="{U_AIM_MESSAGE}">{L_IM_SEND_MESSAGE}</a><br /><br /><a class="gensmall" href="http://www.aim.com/download.adp">{L_IM_DOWNLOAD_APP}</a> | <a class="gensmall" href="http://aimexpress.oscar.aol.com/aimexpress/launch.adp?Brand=AIM">{L_IM_AIM_EXPRESS}</a> </td>
</tr>
<tr>
<td class="cat" colspan="2" align="center">&nbsp;</td>
@@ -31,60 +31,59 @@
<td class="row1" colspan="2" align="center">
<object classid="clsid:B69003B3-C55E-4B48-836C-BC5946FC3B28" codetype="application/x-oleobject" id="objMessengerApp" width="0" height="0"></object>
<script type="text/javascript">
- <!--
+ // <![CDATA[
var app = document.getElementById('objMessengerApp');
/**
- * Check whether the browser supports this and whether MSNM is connected
- */
+ * Check whether the browser supports this and whether MSNM is connected
+ */
function msn_supported()
{
- //Does the browser support the MSNM object?
+ // Does the browser support the MSNM object?
if (app.MyStatus)
{
- //Is MSNM connected?
+ // Is MSNM connected?
if (app.MyStatus == 1)
{
- alert('{L_IM_MSNM_CONNECT}');
- return false;
+ alert('{LA_IM_MSNM_CONNECT}');
+ return false;
}
}
- else
- {
- alert('{L_IM_MSNM_BROWSER}');
+ else
+ {
+ alert('{LA_IM_MSNM_BROWSER}');
return false;
- }
+ }
return true;
}
-
+
/**
- * Add to your contact list
- */
- function add_contact(address)
+ * Add to your contact list
+ */
+ function add_contact(address)
{
- if (msn_supported())
+ if (msn_supported())
{
// Could return an error while MSNM is connecting, don't want that
try
{
app.AddContact(0, address);
- }
+ }
catch (e)
{
return;
}
}
-
}
-
+
/**
- * Write IM to contact
- */
- function im_contact(address)
+ * Write IM to contact
+ */
+ function im_contact(address)
{
- if (msn_supported())
+ if (msn_supported())
{
- // Could return an error while MSNM is connecting, don't want that
+ // Could return an error while MSNM is connecting, don't want that
try
{
app.InstantMessage(address);
@@ -93,12 +92,12 @@
{
return;
}
- }
+ }
}
- //-->
+ // ]]>
</script>
- <a class="gen" href="#" onclick="add_contact('{IM_CONTACT}'); return false;">{L_IM_ADD_CONTACT}</a><br /><a class="gen" href="#" onclick="im_contact('{IM_CONTACT}'); return false;">{L_IM_SEND_MESSAGE}</a>
+ <a class="gen" href="#" onclick="add_contact('{A_IM_CONTACT}'); return false;">{L_IM_ADD_CONTACT}</a><br /><a class="gen" href="#" onclick="im_contact('{A_IM_CONTACT}'); return false;">{L_IM_SEND_MESSAGE}</a>
</td>
</tr>
<tr>