Vertical frames for ruby-doc.org?

Hi all,

Is anyone aware of a good hack to make the frames display vertically instead of horizontally on ruby-doc.org? I have much more screen width than I have height, and it would be a bit easier on the eyes I think. If something doesn't already exist, I may just take a stab at it myself. :wink:

Michael

Nevermind.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd&quot;&gt;

<html>
<head>
<title>RDoc Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset cols="20%, 80%">
    <frameset rows="15%,35%,55%">
        <frame src="http://ruby-doc.org/core/fr_file_index.html&quot;
title="Files" name="Files">
        <frame src="http://ruby-doc.org/core/fr_class_index.html&quot;
name="Classes">
        <frame src="http://ruby-doc.org/core/fr_method_index.html&quot;
name="Methods">
    </frameset>
    <frame src="http://ruby-doc.org/core/files/main_c.html&quot; name="docwin">
</frameset>
</html>

···

On Fri, May 22, 2009 at 2:21 PM, Michael J. I. Jackson <mjijackson@gmail.com> wrote:

Hi all,

Is anyone aware of a good hack to make the frames display vertically instead
of horizontally on ruby-doc.org? I have much more screen width than I have
height, and it would be a bit easier on the eyes I think. If something
doesn't already exist, I may just take a stab at it myself. :wink:

Michael

Hi,

that's very useful, thanks! I never realized the potential to create my
own one, helps really a lot.

- Markus