-- The subscription page arrived truncated.
--
-- Of the legacy pages, this one alone was cut short by the scrape: it stopped
-- part-way through, after the individual rates, with an unclosed </tbody> and
-- no </table>. Comparing every legacy page against the live site, the other
-- fourteen match it character for character; this one held 96 characters of a
-- 841-character page.
--
-- What was lost: the institutional rates in their entirety — the schedule
-- libraries and departments subscribe on — and the three notes underneath,
-- one of which is the only thing that explains the asterisk beside "Life" on
-- a table that has always carried it.
--
-- Two things on the live page are deliberately NOT restored here:
--
--   * The bank details for online payment. They belong to the editor, not to
--     a migration, and go in through Page Content when he is ready.
--   * The two links to forms on the old site (a membership-form PDF and a
--     Joomla-wrapped request form). Every other link back to shodh.net was
--     removed in V31 precisely because it walked the reader out of this
--     application; adding two more here would undo that. The forms need
--     homes of their own before they are worth linking.

UPDATE cms_content
SET value_hi = '<p><strong>Individual व्यक्तिगत</strong></p>
<table>
<tbody>
<tr>
<td><strong>Fee</strong></td>
<td><strong>Rs</strong></td>
<td><strong>US $</strong></td>
</tr>
<tr>
<td>Life<strong>*</strong></td>
<td>3000</td>
<td>200</td>
</tr>
<tr>
<td>Five Year</td>
<td>1400</td>
<td>60</td>
</tr>
<tr>
<td>Three Year</td>
<td>800</td>
<td>30</td>
</tr>
<tr>
<td>Annual</td>
<td>-</td>
<td>15</td>
</tr>
</tbody>
</table>
<p><strong>Institutional संस्थागत</strong></p>
<table>
<tbody>
<tr>
<td><strong>Fee</strong></td>
<td><strong>Rs</strong></td>
<td><strong>US $</strong></td>
</tr>
<tr>
<td>Life<strong>*</strong></td>
<td>4000</td>
<td>300</td>
</tr>
<tr>
<td>Five Year</td>
<td>1800</td>
<td>100</td>
</tr>
<tr>
<td>Three Year</td>
<td>1100</td>
<td>50</td>
</tr>
<tr>
<td>Annual</td>
<td>400</td>
<td>25</td>
</tr>
</tbody>
</table>
<p>*For 10 years or till survival of the Journal, which is less. It may be extended.</p>
<p>Subscription fee may be revised according to Editorial Board.</p>
<p>Excluding Postage.</p>'
WHERE section = 'AUTHOR_SUBSCRIPTION';

-- The two language columns hold the same bilingual markup on every one of the
-- legacy pages, this one included.
UPDATE cms_content SET value_en = value_hi WHERE section = 'AUTHOR_SUBSCRIPTION';
