Add depreciation warning system, begin depreciation of session_data.hasCap()
This commit is contained in:
@@ -57,7 +57,7 @@ To write an e-mail message, follow these steps:
|
||||
<spacer type=vertical height=20>
|
||||
|
||||
First, if you're not already in Mail, choose <b>Mail</b> from `;
|
||||
if (session_data.hasCap("client-has-tv-experience"))
|
||||
if (session_data.capabilities.get("client-has-tv-experience"))
|
||||
data += "Web Home"
|
||||
else
|
||||
data += "Home"
|
||||
@@ -66,7 +66,7 @@ data += ` or press the <b>Mail</b> key on your keyboard.
|
||||
<td width=10>
|
||||
<td width=267 valign=top>
|
||||
<table align=right cellpadding=0 cellspacing=0 background="`;
|
||||
if (session_data.hasCap("client-has-tv-experience"))
|
||||
if (session_data.capabilities.get("client-has-tv-experience"))
|
||||
data += "wtv-guide:/images/home-plus.jpg"
|
||||
else
|
||||
data += "wtv-guide:/images/home-classic.jpg"
|
||||
|
||||
@@ -65,7 +65,7 @@ Here's an example of an e-mail address:
|
||||
<td width=10>
|
||||
<td width=267 valign=top>
|
||||
<table align=right cellpadding=0 cellspacing=0 background="`;
|
||||
if (session_data.hasCap("client-has-tv-experience"))
|
||||
if (session_data.capabilities.get("client-has-tv-experience"))
|
||||
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
|
||||
else
|
||||
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
|
||||
|
||||
@@ -64,7 +64,7 @@ mailbox, they'll see it first.
|
||||
<td width=10>
|
||||
<td width=267 valign=top>
|
||||
<table align=right cellpadding=0 cellspacing=0 background="`;
|
||||
if (session_data.hasCap("client-has-tv-experience"))
|
||||
if (session_data.capabilities.get("client-has-tv-experience"))
|
||||
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
|
||||
else
|
||||
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
|
||||
|
||||
@@ -61,7 +61,7 @@ type in the message itself.
|
||||
<td width=10>
|
||||
<td width=267 valign=top>
|
||||
<table align=right cellpadding=0 cellspacing=0 background="`;
|
||||
if (session_data.hasCap("client-has-tv-experience"))
|
||||
if (session_data.capabilities.get("client-has-tv-experience"))
|
||||
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
|
||||
else
|
||||
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
|
||||
|
||||
@@ -61,7 +61,7 @@ message will be sent.
|
||||
<td width=10>
|
||||
<td width=267 valign=top>
|
||||
<table align=right cellpadding=0 cellspacing=0 background="`;
|
||||
if (session_data.hasCap("client-has-tv-experience"))
|
||||
if (session_data.capabilities.get("client-has-tv-experience"))
|
||||
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
|
||||
else
|
||||
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
|
||||
|
||||
Reference in New Issue
Block a user