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. 
Michael
Nevermind.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<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"
title="Files" name="Files">
<frame src="http://ruby-doc.org/core/fr_class_index.html"
name="Classes">
<frame src="http://ruby-doc.org/core/fr_method_index.html"
name="Methods">
</frameset>
<frame src="http://ruby-doc.org/core/files/main_c.html" 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. 
Michael
Hi,
that's very useful, thanks! I never realized the potential to create my
own one, helps really a lot.
- Markus