From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/18530 Path: main.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: text/html rendering erroneously uses frame-width Date: 12 Nov 1998 10:59:22 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035157038 6635 80.91.224.250 (20 Oct 2002 23:37:18 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:37:18 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id LAA22608 for ; Thu, 12 Nov 1998 11:00:39 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.1/8.9.1) with ESMTP id KAB23271; Thu, 12 Nov 1998 10:00:17 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 12 Nov 1998 10:00:10 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id JAA02517 for ; Thu, 12 Nov 1998 09:59:56 -0600 (CST) Original-Received: from pocari-sweat.jprc.com (POCARI-SWEAT.JPRC.COM [207.86.147.217]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id KAA22595 for ; Thu, 12 Nov 1998 10:59:51 -0500 (EST) Original-Received: (from karl@localhost) by pocari-sweat.jprc.com (8.8.7/8.8.7) id KAA13278; Thu, 12 Nov 1998 10:59:22 -0500 Original-To: ding@gnus.org X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6h R;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu Original-Lines: 56 User-Agent: Gnus/5.070042 (Pterodactyl Gnus v0.42) XEmacs/20.4 (Emerald) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:18530 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:18530 I use a kinda complicated gnus-buffer-configuration (see bottom) which gives me both horizontal and vertical window splits. The rendering of text/html segments appears to be determining line width on the basis of (frame-width), which is large, rather than (window-width), which is much smaller. The result is a really horridly ugly line-wrapped display of text/html. I don't really know if this is a Gnus or W3 issue, but I thought I'd mention it, since the relevant authors are both accessible here. A quick look through the w3 sources only finds frame-width uses in css.el, devices.el, and url.el. Hm, odd. Any ideas on fixing this? Screenshots of mis-behavior can be found in http://www.cs.cmu.edu/~karl/pgnus/html-too-wide. --karl (defun gnus-karl-x-config () "*Definitions of window usage: X." (interactive) (gnus-add-configuration '(summary (horizontal 1.0 (vertical 1.0 (group 0.25) (summary 1.0 point))))) (gnus-add-configuration '(article (horizontal 1.0 (vertical 0.4 (group 0.25) (summary 1.0 point)) (vertical 1.0 (tree 0.25) (article 1.0))))) (gnus-add-configuration '(message (horizontal 1.0 (vertical 0.4 (group 0.25) (message 1.0 point)) (vertical 1.0 (tree 0.25) (article 1.0))))) (gnus-add-configuration '(reply (horizontal 1.0 (vertical 0.4 (group 0.25) (message 1.0 point)) (vertical 1.0 (tree 0.25) (article 1.0))))) (gnus-add-configuration '(post (horizontal 1.0 (vertical 0.4 (group 0.25) (post 1.0 point)) (vertical 1.0 (tree 0.25) (article 1.0))))) (gnus-add-configuration '(edit-score (horizontal 1.0 (vertical 0.4 (group 0.25) (summary 1.0)) (vertical 1.0 (tree 0.25) (edit-score 1.0 point))))) (gnus-add-configuration '(mail-forward (horizontal 1.0 (vertical 0.4 (group 0.25) (summary 1.0)) (vertical 1.0 (tree 0.25) (mail 1.0 point))))))