unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Making w3 better
@ 2004-07-28 15:27 Mark A. Hershberger
  2004-07-28 16:30 ` Alan Shutko
  2004-07-29 15:58 ` Masatake YAMATO
  0 siblings, 2 replies; 6+ messages in thread
From: Mark A. Hershberger @ 2004-07-28 15:27 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 1060 bytes --]


w3 is looking a little better, but it still lacks a lot.  I'd like to
use it instead of w3m for viewing text/html parts in emails (and for
posting to weblogs from with Emacs), but I'm running into the
following two problems.

1) Empty element tags are not properly supported.  For example,
   http://www.intertwingly.net/blog/ has 7 empty elements in the
   <head>.  These are displayed as ">" before everything else on the
   page.

2) Image support is minimal.  Whenever gnus attempts to display a
   message that contains an <img> tag, it reverts to display the html
   itself instead rendering the html.  Web pages that contain images
   do not display those images at all.

I can take care of 1), but 2) is another issue.  I don't understand
how Emacs handles images well enough to do much with them.  If
someone could point me in the right direction, that would help.

Mark.

-- 
A choice between one man and a shovel, or a dozen men with teaspoons
is clear to me, and I'm sure it is clear to you also.
    -- Zimran Ahmed <http://www.winterspeak.com/>

[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]

[-- Attachment #2: Type: text/plain, Size: 142 bytes --]

_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Making w3 better
  2004-07-28 15:27 Making w3 better Mark A. Hershberger
@ 2004-07-28 16:30 ` Alan Shutko
  2004-07-28 19:45   ` Mark A. Hershberger
  2004-07-29 15:58 ` Masatake YAMATO
  1 sibling, 1 reply; 6+ messages in thread
From: Alan Shutko @ 2004-07-28 16:30 UTC (permalink / raw)


mah@everybody.org (Mark A. Hershberger) writes:

> 2) Image support is minimal.  Whenever gnus attempts to display a
>    message that contains an <img> tag, it reverts to display the html
>    itself instead rendering the html.  Web pages that contain images
>    do not display those images at all.

The problem here is that by the time that w3 has download the images
and trys to place them (this is done asynchronously) Gnus has set the
buffer to read-only.  (It may have also copied the results to another
buffer, I can't remember.)

I think this is more an Gnus problem than a W3 problem, so you might
want to ask on the gnus list.

-- 
Alan Shutko <ats@acm.org> - I am the rocks.
Closets are made for clothes.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Making w3 better
  2004-07-28 16:30 ` Alan Shutko
@ 2004-07-28 19:45   ` Mark A. Hershberger
  2004-07-28 21:24     ` Kim F. Storm
  0 siblings, 1 reply; 6+ messages in thread
From: Mark A. Hershberger @ 2004-07-28 19:45 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 777 bytes --]

Alan Shutko <ats@acm.org> writes:

> The problem here is that by the time that w3 has download the images
> and trys to place them (this is done asynchronously) Gnus has set the
> buffer to read-only.  (It may have also copied the results to another
> buffer, I can't remember.)
>
> I think this is more an Gnus problem than a W3 problem, so you might
> want to ask on the gnus list.

Maybe, but even when I try to use w3 to view various websites, images
are not placed correctly.

How would I go about debugging that?  I admit that I'm a little
intimidated by the asynchronous aspect of it.

Mark.

-- 
A choice between one man and a shovel, or a dozen men with teaspoons
is clear to me, and I'm sure it is clear to you also.
    -- Zimran Ahmed <http://www.winterspeak.com/>

[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]

[-- Attachment #2: Type: text/plain, Size: 142 bytes --]

_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Making w3 better
  2004-07-28 19:45   ` Mark A. Hershberger
@ 2004-07-28 21:24     ` Kim F. Storm
  0 siblings, 0 replies; 6+ messages in thread
From: Kim F. Storm @ 2004-07-28 21:24 UTC (permalink / raw)
  Cc: emacs-devel

mah@everybody.org (Mark A. Hershberger) writes:

> Alan Shutko <ats@acm.org> writes:
> 
> Maybe, but even when I try to use w3 to view various websites, images
> are not placed correctly.
> 
> How would I go about debugging that?  I admit that I'm a little
> intimidated by the asynchronous aspect of it.

Maybe the new support for sliced images and the flexible line-spacing
available in CVS emacs (see the NEWS file) can be used to properly
align images and allow text to flow around images.

For example use, look at the function insert-sliced-image in
lisp/image.c

-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Making w3 better
  2004-07-28 15:27 Making w3 better Mark A. Hershberger
  2004-07-28 16:30 ` Alan Shutko
@ 2004-07-29 15:58 ` Masatake YAMATO
  2004-07-29 16:13   ` Mark A. Hershberger
  1 sibling, 1 reply; 6+ messages in thread
From: Masatake YAMATO @ 2004-07-29 15:58 UTC (permalink / raw)
  Cc: emacs-devel

> w3 is looking a little better, but it still lacks a lot.  I'd like to
> use it instead of w3m for viewing text/html parts in emails (and for
> posting to weblogs from with Emacs), but I'm running into the
> following two problems.

Do you mean that "w3m" is emacs-w3m or not?
About emacs-w3m, as a heavy emacs, I cannot find any strong weakness.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Making w3 better
  2004-07-29 15:58 ` Masatake YAMATO
@ 2004-07-29 16:13   ` Mark A. Hershberger
  0 siblings, 0 replies; 6+ messages in thread
From: Mark A. Hershberger @ 2004-07-29 16:13 UTC (permalink / raw)
  Cc: emacs-devel


[-- Attachment #1.1: Type: text/plain, Size: 419 bytes --]

Masatake YAMATO <jet@gyve.org> writes:

> Do you mean that "w3m" is emacs-w3m or not?
> About emacs-w3m, as a heavy emacs, I cannot find any strong weakness.

I agree that emacs-w3m is very nice.  I just wanted to have something
in elisp.



-- 
A choice between one man and a shovel, or a dozen men with teaspoons
is clear to me, and I'm sure it is clear to you also.
    -- Zimran Ahmed <http://www.winterspeak.com/>

[-- Attachment #1.2: Type: application/pgp-signature, Size: 188 bytes --]

[-- Attachment #2: Type: text/plain, Size: 142 bytes --]

_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2004-07-29 16:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-28 15:27 Making w3 better Mark A. Hershberger
2004-07-28 16:30 ` Alan Shutko
2004-07-28 19:45   ` Mark A. Hershberger
2004-07-28 21:24     ` Kim F. Storm
2004-07-29 15:58 ` Masatake YAMATO
2004-07-29 16:13   ` Mark A. Hershberger

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).