From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.8 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: olddoc-public@80x24.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 56C2B633805; Thu, 7 Jan 2016 01:36:40 +0000 (UTC) From: Eric Wong To: olddoc-public@80x24.org Cc: Eric Wong Subject: [PATCH 4/4] head: use old-style tags for compatibility Date: Thu, 7 Jan 2016 01:36:36 +0000 Message-Id: <20160107013636.9998-5-e@80x24.org> In-Reply-To: <20160107013636.9998-1-e@80x24.org> References: <20160107013636.9998-1-e@80x24.org> List-Id: This wastes some bandwidth, but we are olddoc, after all, and care about old browsers more than new ones. --- lib/oldweb/_head.rhtml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/oldweb/_head.rhtml b/lib/oldweb/_head.rhtml index 9a9242c..ae4d5e9 100644 --- a/lib/oldweb/_head.rhtml +++ b/lib/oldweb/_head.rhtml @@ -1,7 +1,11 @@ -<%= h @title %><% -if rdoc_url = @old_cfg['rdoc_url'] %><%= h @title %><% +if rdoc_url = @old_cfg['rdoc_url'] +%><% -end %> +end +%> -- EW