Gnus development mailing list
 help / color / mirror / Atom feed
* shr - support for title attribute on <a> elements?
@ 2010-12-04 21:08 Adam Sjøgren
  2010-12-04 21:44 ` [PATCH] (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify Adam Sjøgren
  2010-12-04 21:59 ` Adam Sjøgren
  0 siblings, 2 replies; 32+ messages in thread
From: Adam Sjøgren @ 2010-12-04 21:08 UTC (permalink / raw)
  To: ding

I know that shr handles the title attribute on <img> elements (useful in
the gwene.com.xkcd group), but does shr handle the title attribute on
<a> elements?

I often use the title attribute to indicate the name of the article/page
that a link points to, when the text of the link doesn't do so directly.

I would expect the content of the title attribute to be shown in the
little "mouse over" text that pops up when I place the mouse on a link
and wait a little, but instead the URL of the link is always displayed.

That is also interesting information, of course...

Maybe, if there is a title, show "TITLE (URL)" on the little pop up
text, or perhaps show the URL in the minibuffer and the title in the pop
up?


  Best regards,

    Adam

-- 
 "We get our thursdays from a banana."                        Adam Sjøgren
                                                         asjo@koldfront.dk




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

* [PATCH] (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.
  2010-12-04 21:08 shr - support for title attribute on <a> elements? Adam Sjøgren
@ 2010-12-04 21:44 ` Adam Sjøgren
  2010-12-04 21:59 ` Adam Sjøgren
  1 sibling, 0 replies; 32+ messages in thread
From: Adam Sjøgren @ 2010-12-04 21:44 UTC (permalink / raw)
  To: ding; +Cc: Adam Sjøgren

Try to put a patch where my mouth is.

---
 lisp/shr.el |   18 ++++++++++--------
 1 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/lisp/shr.el b/lisp/shr.el
index 69973fb..e8522a7 100644
--- a/lisp/shr.el
+++ b/lisp/shr.el
@@ -506,13 +506,14 @@ START, and END."
 
 (autoload 'widget-convert-button "wid-edit")
 
-(defun shr-urlify (start url)
-  (widget-convert-button
-   'url-link start (point)
-   :help-echo url
-   :keymap shr-map
-   url)
-  (put-text-property start (point) 'shr-url url))
+(defun shr-urlify (start url &optional title)
+  (let ((help-text (if title (format "%s (%s)" title url) url)))
+    (widget-convert-button
+     'url-link start (point)
+     :help-echo help-text
+     :keymap shr-map
+     url)
+    (put-text-property start (point) 'shr-url url)))
 
 (defun shr-encode-url (url)
   "Encode URL."
@@ -631,10 +632,11 @@ text will be inserted at start."
 
 (defun shr-tag-a (cont)
   (let ((url (cdr (assq :href cont)))
+        (title (cdr (assq :title cont)))
 	(start (point))
 	shr-start)
     (shr-generic cont)
-    (shr-urlify (or shr-start start) url)))
+    (shr-urlify (or shr-start start) url title)))
 
 (defun shr-tag-object (cont)
   (let ((start (point))
-- 
1.7.2.3




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

* [PATCH] (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.
  2010-12-04 21:08 shr - support for title attribute on <a> elements? Adam Sjøgren
  2010-12-04 21:44 ` [PATCH] (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify Adam Sjøgren
@ 2010-12-04 21:59 ` Adam Sjøgren
  2010-12-04 22:25   ` Lars Magne Ingebrigtsen
  1 sibling, 1 reply; 32+ messages in thread
From: Adam Sjøgren @ 2010-12-04 21:59 UTC (permalink / raw)
  To: ding; +Cc: Adam Sjøgren

Make the mouse over pop up text of links show the title as well as the URL,
if present.

Signed-off-by: Adam Sjøgren <asjo@koldfront.dk>
---

Let me try again, this time with the email comment in the right place (I hope),
and skipping the extra variable that was just too much indentation change for
very little clarity.

Please disregard my previous attempt: <1291499077-1619-1-git-send-email-asjo@koldfront.dk>


 lisp/shr.el |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/lisp/shr.el b/lisp/shr.el
index 69973fb..5d24479 100644
--- a/lisp/shr.el
+++ b/lisp/shr.el
@@ -506,10 +506,10 @@ START, and END."
 
 (autoload 'widget-convert-button "wid-edit")
 
-(defun shr-urlify (start url)
+(defun shr-urlify (start url &optional title)
   (widget-convert-button
    'url-link start (point)
-   :help-echo url
+   :help-echo (if title (format "%s (%s)" title url) url)
    :keymap shr-map
    url)
   (put-text-property start (point) 'shr-url url))
@@ -631,10 +631,11 @@ text will be inserted at start."
 
 (defun shr-tag-a (cont)
   (let ((url (cdr (assq :href cont)))
+        (title (cdr (assq :title cont)))
 	(start (point))
 	shr-start)
     (shr-generic cont)
-    (shr-urlify (or shr-start start) url)))
+    (shr-urlify (or shr-start start) url title)))
 
 (defun shr-tag-object (cont)
   (let ((start (point))
-- 
1.7.2.3




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

* Re: [PATCH] (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.
  2010-12-04 21:59 ` Adam Sjøgren
@ 2010-12-04 22:25   ` Lars Magne Ingebrigtsen
  2010-12-04 22:55     ` Adam Sjøgren
  0 siblings, 1 reply; 32+ messages in thread
From: Lars Magne Ingebrigtsen @ 2010-12-04 22:25 UTC (permalink / raw)
  To: ding

Adam Sjøgren <asjo@koldfront.dk> writes:

> Let me try again, this time with the email comment in the right place
> (I hope), and skipping the extra variable that was just too much
> indentation change for very little clarity.

Thanks; applied.  (But I changed the tooltip to show the URL before the
title to avoid the situation where spammers put a misleading long URL
into the title, pushing the real URL off the screen.)

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




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

* Re: (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.
  2010-12-04 22:25   ` Lars Magne Ingebrigtsen
@ 2010-12-04 22:55     ` Adam Sjøgren
  2010-12-04 23:00       ` www.gnus.org (Was: (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.) Adam Sjøgren
  2010-12-04 23:32       ` (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify Lars Magne Ingebrigtsen
  0 siblings, 2 replies; 32+ messages in thread
From: Adam Sjøgren @ 2010-12-04 22:55 UTC (permalink / raw)
  To: ding

On Sat, 04 Dec 2010 23:25:58 +0100, Lars wrote:

> Thanks; applied.  (But I changed the tooltip to show the URL before the
> title to avoid the situation where spammers put a misleading long URL
> into the title, pushing the real URL off the screen.)

Cool! (Ok; super.)

Just to annoy you: there is a slight charset snafu on http://gnus.org/ -
the page is in latin1, but my name is utf-8 encoded, and look funny.


  Best regards,

    Adam

-- 
 "We get our thursdays from a banana."                        Adam Sjøgren
                                                         asjo@koldfront.dk




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

* www.gnus.org (Was: (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.)
  2010-12-04 22:55     ` Adam Sjøgren
@ 2010-12-04 23:00       ` Adam Sjøgren
  2010-12-04 23:33         ` www.gnus.org Lars Magne Ingebrigtsen
  2010-12-04 23:32       ` (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify Lars Magne Ingebrigtsen
  1 sibling, 1 reply; 32+ messages in thread
From: Adam Sjøgren @ 2010-12-04 23:00 UTC (permalink / raw)
  To: ding

On Sat, 04 Dec 2010 23:55:42 +0100, Adam wrote:

> Just to annoy you: there is a slight charset snafu on http://gnus.org/ -
> the page is in latin1, but my name is utf-8 encoded, and look funny.

While I am at it: perhaps the links to the threads in the Recent Gnus
Threads section should have a target attribute pointing as, say, _top?

(Try clicking one - the gmane interface opens inside the iframe...)


  Best regards,

    Adam

-- 
 "We get our thursdays from a banana."                        Adam Sjøgren
                                                         asjo@koldfront.dk




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

* Re: (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.
  2010-12-04 22:55     ` Adam Sjøgren
  2010-12-04 23:00       ` www.gnus.org (Was: (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.) Adam Sjøgren
@ 2010-12-04 23:32       ` Lars Magne Ingebrigtsen
  1 sibling, 0 replies; 32+ messages in thread
From: Lars Magne Ingebrigtsen @ 2010-12-04 23:32 UTC (permalink / raw)
  To: ding

asjo@koldfront.dk (Adam Sjøgren) writes:

> Just to annoy you: there is a slight charset snafu on http://gnus.org/ -
> the page is in latin1, but my name is utf-8 encoded, and look funny.

Ok; fixed.

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




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

* Re: www.gnus.org
  2010-12-04 23:00       ` www.gnus.org (Was: (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.) Adam Sjøgren
@ 2010-12-04 23:33         ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 32+ messages in thread
From: Lars Magne Ingebrigtsen @ 2010-12-04 23:33 UTC (permalink / raw)
  To: ding

asjo@koldfront.dk (Adam Sjøgren) writes:

> While I am at it: perhaps the links to the threads in the Recent Gnus
> Threads section should have a target attribute pointing as, say, _top?

Yup.  Fixed.

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




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

* Re: www.gnus.org
  2002-12-31 21:12 www.gnus.org Jon Ericson
@ 2003-01-01 19:12 ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 32+ messages in thread
From: Lars Magne Ingebrigtsen @ 2003-01-01 19:12 UTC (permalink / raw)


Jon Ericson <Jon.Ericson@jpl.nasa.gov> writes:

> I'm getting a "connection refused" from the Gnus webpage.  Is the
> server down?

It was down, but it looks like it's up again now.

-- 
(domestic pets only, the antidote for overdose, milk.)
   larsi@gnus.org * Lars Magne Ingebrigtsen



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

* www.gnus.org
@ 2002-12-31 21:12 Jon Ericson
  2003-01-01 19:12 ` www.gnus.org Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 32+ messages in thread
From: Jon Ericson @ 2002-12-31 21:12 UTC (permalink / raw)


I'm getting a "connection refused" from the Gnus webpage.  Is the
server down?

Jon
-- 
If a man has recently married, he must not be sent to war or have any
other duty laid on him. For one year he is to be free to stay at home
and bring happiness to the wife he has married.
-- Deuteronomy 24:5 (NIV)





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

* Re: www.gnus.org
  1997-03-30 23:37     ` www.gnus.org Scott Blachowicz
@ 1997-03-31 10:42       ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 32+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-03-31 10:42 UTC (permalink / raw)


Scott Blachowicz <scott@apple.statsci.com> writes:

> Maybe you'd just want it for contributors so their ChangeLog entry email
> addresses could remain valid over time (theoretically) even if they change
> locations.

Hm...  Perhaps the MX records for some host (say, groupies.gnus.org :-) 
could be set to some machine where someone would like to maintain the
forwarding servive.  If we want to do this.

I'd like to keep gnus.org all *mine* *mine* *mine*!  :-)

-- 
(domestic pets only, the antidote for overdose, milk.)
  lmi@gnus.org * Lars Magne Ingebrigtsen


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

* Re: www.gnus.org
  1997-03-30  8:47   ` www.gnus.org Lars Magne Ingebrigtsen
@ 1997-03-30 23:37     ` Scott Blachowicz
  1997-03-31 10:42       ` www.gnus.org Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 32+ messages in thread
From: Scott Blachowicz @ 1997-03-30 23:37 UTC (permalink / raw)
  Cc: ding

Lars Magne Ingebrigtsen <larsi@gnus.org> wrote:

> > Would it be possible to install some aliases for mail? Having
> > "sam@gnus.org" would make be very proud since I recommend Gnus to
> > almost any people I know :)))
> 
> I think that would be too much administration and stuff.  And there's
> not really any need to do that, is there?

Maybe you'd just want it for contributors so their ChangeLog entry email
addresses could remain valid over time (theoretically) even if they change
locations.

Scott Blachowicz  Ph: 206/283-8802x240   Mathsoft (Data Analysis Products Div)
                                         1700 Westlake Ave N #500
scott@statsci.com                        Seattle, WA USA   98109
Scott.Blachowicz@seaslug.org


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

* Re: www.gnus.org
  1997-03-25 16:08     ` www.gnus.org Brent B. Powers
  1997-03-27 11:37       ` www.gnus.org Steinar Bang
@ 1997-03-30 22:42       ` William M. Perry
  1 sibling, 0 replies; 32+ messages in thread
From: William M. Perry @ 1997-03-30 22:42 UTC (permalink / raw)
  Cc: Per Abrahamsen, flognat, ding

Brent B. Powers writes:
>Per Abrahamsen writes:
> > 
> > "William M. Perry" <wmperry@aventail.com> writes:
> > 
> > > While we are on the subject, does anyone have suggestions for the
> > > .org I should register for Emacs/W3?  w3.org is already taken - the
> > > bastards.
> > 
> > Yeah, and you were first...
> > 
> > gnet.org is also taken, but gnuscape.org is free!
> > 
> > Gnuscape sounds much better than gnet anyway, and if we think hard we
> > can surely come up with a nice recursive acronym for it.
>
>Oh, I can just see it.
>
>^-H f w 3^-M
>
>w3: an interactive autoloaded Lisp function.
>  -- loads from "w3".
>Remember, it's spelled w3, but it's pronounced "gnuzilla"
>
>Hmmm, wasn't there a 70's song .... 
>
>"Whoa-ho,
>   they say he's got to go
>Go, Go, Gnuzilla

  You say that like its not a good idea? :)

-bp


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

* Re: www.gnus.org
  1997-03-25 10:41 ` www.gnus.org Samuel Tardieu
  1997-03-25 14:04   ` www.gnus.org David Lebel
@ 1997-03-30  8:47   ` Lars Magne Ingebrigtsen
  1997-03-30 23:37     ` www.gnus.org Scott Blachowicz
  1 sibling, 1 reply; 32+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-03-30  8:47 UTC (permalink / raw)


Samuel Tardieu <sam@ada.eu.org> writes:

> Would it be possible to install some aliases for mail? Having
> "sam@gnus.org" would make be very proud since I recommend Gnus to
> almost any people I know :)))

I think that would be too much administration and stuff.  And there's
not really any need to do that, is there?

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen


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

* Re: www.gnus.org
  1997-03-25 16:08     ` www.gnus.org Brent B. Powers
@ 1997-03-27 11:37       ` Steinar Bang
  1997-03-30 22:42       ` www.gnus.org William M. Perry
  1 sibling, 0 replies; 32+ messages in thread
From: Steinar Bang @ 1997-03-27 11:37 UTC (permalink / raw)


>>>>> "Brent B. Powers" <powers@ml.com>:

> Hmmm, wasn't there a 70's song .... 

> "Whoa-ho,
>    they say he's got to go
> Go, Go, Gnuzilla

With apologies to "Blue Öyster Cult", I'm sure...


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

* Re: www.gnus.org
  1997-03-25 18:34   ` www.gnus.org Erik Selberg
@ 1997-03-25 20:58     ` William M. Perry
  0 siblings, 0 replies; 32+ messages in thread
From: William M. Perry @ 1997-03-25 20:58 UTC (permalink / raw)
  Cc: ding

Erik Selberg writes:
>How about w3emacs.org? BTW: didn't realize you were a local too! I'm
>still debating between a nice bike ride or actually going into
>work. Hmm... it is spring break after all... :)

  To make matters worse, my office has a wraparound deck and a view of
puget sound & the olympics.  Ahhhhhh.... productivity?  What productivity?
Too bad we are moving offices at the end of the week... grrrr.

-Bill P.

We now return you to your regularly scheduled ding discussions. :)


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

* Re: www.gnus.org
  1997-03-25 14:40 ` www.gnus.org William M. Perry
                     ` (4 preceding siblings ...)
  1997-03-25 17:30   ` www.gnus.org Daniel Neri
@ 1997-03-25 18:34   ` Erik Selberg
  1997-03-25 20:58     ` www.gnus.org William M. Perry
  5 siblings, 1 reply; 32+ messages in thread
From: Erik Selberg @ 1997-03-25 18:34 UTC (permalink / raw)


How about w3emacs.org? BTW: didn't realize you were a local too! I'm
still debating between a nice bike ride or actually going into
work. Hmm... it is spring break after all... :)

-erik
-- 
				Erik Selberg
"I get by with a little help	selberg@cs.washington.edu
 from my friends."		http://www.cs.washington.edu/homes/selberg


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

* Re: www.gnus.org
  1997-03-25 14:40 ` www.gnus.org William M. Perry
                     ` (3 preceding siblings ...)
  1997-03-25 16:18   ` www.gnus.org Lars Balker Rasmussen
@ 1997-03-25 17:30   ` Daniel Neri
  1997-03-25 18:34   ` www.gnus.org Erik Selberg
  5 siblings, 0 replies; 32+ messages in thread
From: Daniel Neri @ 1997-03-25 17:30 UTC (permalink / raw)
  Cc: ding

"William M. Perry" <wmperry@aventail.com> writes:

>   While we are on the subject, does anyone have suggestions for the .org I
> should register for Emacs/W3?  w3.org is already taken - the bastards.

Hmmm... There's already a lynx.browser.org. I remember reading
somewhere that it was meant for other browsers to be able to get a
name under browser.org. So why don't you try to get your hands on
w3.browser.org?!

> -Bill P.

/Daniel

-- 
Daniel Neri                                           Keep it simple!
neri@inf.enst.fr (aka d92-dne@nada.kth.se)


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

* Re: www.gnus.org
  1997-03-25 14:40 ` www.gnus.org William M. Perry
                     ` (2 preceding siblings ...)
  1997-03-25 15:38   ` www.gnus.org Jason R. Mastaler
@ 1997-03-25 16:18   ` Lars Balker Rasmussen
  1997-03-25 17:30   ` www.gnus.org Daniel Neri
  1997-03-25 18:34   ` www.gnus.org Erik Selberg
  5 siblings, 0 replies; 32+ messages in thread
From: Lars Balker Rasmussen @ 1997-03-25 16:18 UTC (permalink / raw)


"William M. Perry" <wmperry@aventail.com> writes:
>   While we are on the subject, does anyone have suggestions for the .org I
> should register for Emacs/W3?  w3.org is already taken - the bastards.

Hmm, w3-beat-me-to-it-and-all-i-got-was-this-domain.org?

Or join the DNS misfits, and register w3.gnu :-)
-- 
Lars Balker Rasmussen, Software Engineer, Mjolner Informatics ApS
lbr@mjolner.dk


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

* Re: www.gnus.org
  1997-03-25 15:22   ` www.gnus.org Per Abrahamsen
@ 1997-03-25 16:08     ` Brent B. Powers
  1997-03-27 11:37       ` www.gnus.org Steinar Bang
  1997-03-30 22:42       ` www.gnus.org William M. Perry
  0 siblings, 2 replies; 32+ messages in thread
From: Brent B. Powers @ 1997-03-25 16:08 UTC (permalink / raw)
  Cc: wmperry, flognat, ding

Per Abrahamsen writes:
 > From: Per Abrahamsen <abraham@dina.kvl.dk>
 > To: wmperry@aventail.com
 > Subject: Re: www.gnus.org
 > Date: 25 Mar 1997 16:22:13 +0100
 > 
 > 
 > "William M. Perry" <wmperry@aventail.com> writes:
 > 
 > >   While we are on the subject, does anyone have suggestions for the .org I
 > > should register for Emacs/W3?  w3.org is already taken - the bastards.
 > 
 > Yeah, and you were first...
 > 
 > gnet.org is also taken, but gnuscape.org is free!
 > 
 > Gnuscape sounds much better than gnet anyway, and if we think hard we
 > can surely come up with a nice recursive acronym for it.

Oh, I can just see it.

^-H f w 3^-M

w3: an interactive autoloaded Lisp function.
  -- loads from "w3".
Remember, it's spelled w3, but it's pronounced "gnuzilla"


Hmmm, wasn't there a 70's song .... 


"Whoa-ho,
   they say he's got to go
Go, Go, Gnuzilla


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

* Re: www.gnus.org
  1997-03-25 14:56   ` www.gnus.org Kai Grossjohann
  1997-03-25 15:38     ` www.gnus.org Per Abrahamsen
@ 1997-03-25 16:02     ` Jason R. Mastaler
  1 sibling, 0 replies; 32+ messages in thread
From: Jason R. Mastaler @ 1997-03-25 16:02 UTC (permalink / raw)
  Cc: wmperry, flognat, ding

Kai Grossjohann <grossjohann@charly.informatik.uni-dortmund.de> writes:

> w3.el.org?

el.org is already registered by El E-mail Service out of
Vancouver, BC.

-- 
Jason R. Mastaler                                 jason@mastaler.com


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

* Re: www.gnus.org
  1997-03-25 15:31     ` www.gnus.org Jason R. Mastaler
@ 1997-03-25 15:43       ` David Lebel
  0 siblings, 0 replies; 32+ messages in thread
From: David Lebel @ 1997-03-25 15:43 UTC (permalink / raw)
  Cc: David Lebel, ding

-----BEGIN PGP SIGNED MESSAGE-----

jason@mastaler.com (Jason R. Mastaler) writes:

| Thanks, but I'll be doing e-mail along with the DNS, webhosting, etc
| for gnus.org.

  Great then!

  ...David

- -- 
// d a v i d  l e b e l  <lebel@socom.com>       http://superdave.socom.com/
// analyst / system administrator / hacker          socom technologies, inc.
//   " I find your lack of faith...disturbing. " -- Darth Vader, _Star Wars_

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBMzfykgS1kdkX7r1ZAQG+ywQAvZBC2kW+DiDBHek0GLIxPo6j3bZ0lwlg
9yfglGPh3j9Bzk/zHk9Kz67UZDFSjKm3JRHGEtzKHuU8IqHvGnyF12SEViXORg32
4IVvsc0Aym4FcwoCr1ksOYV0d9cEeiBcuLGrspPGHvQl0oNzFSEGfrZcNNvAuTvL
OYsJFhhDLW8=
=3lRp
-----END PGP SIGNATURE-----


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

* Re: www.gnus.org
  1997-03-25 14:40 ` www.gnus.org William M. Perry
  1997-03-25 14:56   ` www.gnus.org Kai Grossjohann
  1997-03-25 15:22   ` www.gnus.org Per Abrahamsen
@ 1997-03-25 15:38   ` Jason R. Mastaler
  1997-03-25 16:18   ` www.gnus.org Lars Balker Rasmussen
                     ` (2 subsequent siblings)
  5 siblings, 0 replies; 32+ messages in thread
From: Jason R. Mastaler @ 1997-03-25 15:38 UTC (permalink / raw)


"William M. Perry" <wmperry@aventail.com> writes:

>   While we are on the subject, does anyone have suggestions for the .org I
> should register for Emacs/W3?  w3.org is already taken - the bastards.

How about 'ew3.org', or 'emacsw3.org', or 'emacs-w3.org' ?

-- 
Jason R. Mastaler                                 jason@mastaler.com


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

* Re: www.gnus.org
  1997-03-25 14:56   ` www.gnus.org Kai Grossjohann
@ 1997-03-25 15:38     ` Per Abrahamsen
  1997-03-25 16:02     ` www.gnus.org Jason R. Mastaler
  1 sibling, 0 replies; 32+ messages in thread
From: Per Abrahamsen @ 1997-03-25 15:38 UTC (permalink / raw)
  Cc: wmperry, flognat, ding


Kai Grossjohann <grossjohann@charly.informatik.uni-dortmund.de> writes:

> w3.el.org?

el.org is taken.  I'll ask the owner of emacs.org if he wants give
away subdomains.  I want my machine to be accessible as
church.emacs.org.


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

* Re: www.gnus.org
  1997-03-25  7:35 www.gnus.org Andy Eskilsson
  1997-03-25 10:41 ` www.gnus.org Samuel Tardieu
  1997-03-25 14:40 ` www.gnus.org William M. Perry
@ 1997-03-25 15:36 ` Jason R. Mastaler
  2 siblings, 0 replies; 32+ messages in thread
From: Jason R. Mastaler @ 1997-03-25 15:36 UTC (permalink / raw)


Andy Eskilsson <flognat@fukt.hk-r.se> writes:

> Well now we have a www.gnus.org... are there any works on the
> contents, or will we just move the http://www.ifi.uio.no/~larsi tree
> there?
> 
> I believe a touchup of both contents and structure of the gnus-pages
> would be welcome!

The website won't be up for a little while, but yes, there are works
on the contents in the works.  Of course lots of initial feedback on
content, look and structure will be quite helpful once it is up.

--
Jason R. Mastaler                                 jason@mastaler.com


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

* Re: www.gnus.org
  1997-03-25 14:04   ` www.gnus.org David Lebel
@ 1997-03-25 15:31     ` Jason R. Mastaler
  1997-03-25 15:43       ` www.gnus.org David Lebel
  0 siblings, 1 reply; 32+ messages in thread
From: Jason R. Mastaler @ 1997-03-25 15:31 UTC (permalink / raw)
  Cc: ding

David Lebel <lebel@socom.com> writes:

>   I'm ready to offer the service of MX for the gnus community.  Mainly
>   redirecting mail from gnus.org to your various real email
>   addresses. 

Thanks, but I'll be doing e-mail along with the DNS, webhosting, etc
for gnus.org.

-- 
Jason R. Mastaler                                 jason@mastaler.com


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

* Re: www.gnus.org
  1997-03-25 14:40 ` www.gnus.org William M. Perry
  1997-03-25 14:56   ` www.gnus.org Kai Grossjohann
@ 1997-03-25 15:22   ` Per Abrahamsen
  1997-03-25 16:08     ` www.gnus.org Brent B. Powers
  1997-03-25 15:38   ` www.gnus.org Jason R. Mastaler
                     ` (3 subsequent siblings)
  5 siblings, 1 reply; 32+ messages in thread
From: Per Abrahamsen @ 1997-03-25 15:22 UTC (permalink / raw)
  Cc: flognat, ding


"William M. Perry" <wmperry@aventail.com> writes:

>   While we are on the subject, does anyone have suggestions for the .org I
> should register for Emacs/W3?  w3.org is already taken - the bastards.

Yeah, and you were first...

gnet.org is also taken, but gnuscape.org is free!

Gnuscape sounds much better than gnet anyway, and if we think hard we
can surely come up with a nice recursive acronym for it.

> PS: _WOW_ its a gorgeous morning - sunrise jus started to hit the olympic
>     mountain range and it is amazing.  I love living in seattle! :)

wow.org, sunrise.org, olympic.org, mountain.org, and love.org are taken.
gorgeous.org, morning.org, and amazing.org are free.

Oh, you changed the subject.


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

* Re: www.gnus.org
  1997-03-25 14:40 ` www.gnus.org William M. Perry
@ 1997-03-25 14:56   ` Kai Grossjohann
  1997-03-25 15:38     ` www.gnus.org Per Abrahamsen
  1997-03-25 16:02     ` www.gnus.org Jason R. Mastaler
  1997-03-25 15:22   ` www.gnus.org Per Abrahamsen
                     ` (4 subsequent siblings)
  5 siblings, 2 replies; 32+ messages in thread
From: Kai Grossjohann @ 1997-03-25 14:56 UTC (permalink / raw)
  Cc: flognat, ding

>>>>> William M Perry writes:

  Bill>   While we are on the subject, does anyone have suggestions
  Bill> for the .org I should register for Emacs/W3?  w3.org is
  Bill> already taken - the bastards.

w3.el.org?

kai
-- 
Life is hard and then you die.


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

* Re: www.gnus.org
  1997-03-25  7:35 www.gnus.org Andy Eskilsson
  1997-03-25 10:41 ` www.gnus.org Samuel Tardieu
@ 1997-03-25 14:40 ` William M. Perry
  1997-03-25 14:56   ` www.gnus.org Kai Grossjohann
                     ` (5 more replies)
  1997-03-25 15:36 ` www.gnus.org Jason R. Mastaler
  2 siblings, 6 replies; 32+ messages in thread
From: William M. Perry @ 1997-03-25 14:40 UTC (permalink / raw)
  Cc: ding

Andy Eskilsson writes:
>Well now we have a www.gnus.org... are there any works on the contents, or
>will we just move the http://www.ifi.uio.no/~larsi tree there?
>
>I believe a touchup of both contents and structure of the gnus-pages would
>be welcome!

  While we are on the subject, does anyone have suggestions for the .org I
should register for Emacs/W3?  w3.org is already taken - the bastards.

  I'll be happy to help around the web site any way I can.  We should throw
in some <pinhead> and <flame> tags just for fun. :)

-Bill P.

PS: _WOW_ its a gorgeous morning - sunrise jus started to hit the olympic
    mountain range and it is amazing.  I love living in seattle! :)


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

* Re: www.gnus.org
  1997-03-25 10:41 ` www.gnus.org Samuel Tardieu
@ 1997-03-25 14:04   ` David Lebel
  1997-03-25 15:31     ` www.gnus.org Jason R. Mastaler
  1997-03-30  8:47   ` www.gnus.org Lars Magne Ingebrigtsen
  1 sibling, 1 reply; 32+ messages in thread
From: David Lebel @ 1997-03-25 14:04 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----

Samuel Tardieu <sam@ada.eu.org> writes:

| Would it be possible to install some aliases for mail? Having
| "sam@gnus.org" would make be very proud since I recommend Gnus to
| almost any people I know :)))

  I'm ready to offer the service of MX for the gnus community.  Mainly
  redirecting mail from gnus.org to your various real email
  addresses. 

  ...David

- -- 
// d a v i d  l e b e l  <lebel@socom.com>       http://superdave.socom.com/
// analyst / system administrator / hacker          socom technologies, inc.
//   " I find your lack of faith...disturbing. " -- Darth Vader, _Star Wars_

-----BEGIN PGP SIGNATURE-----
Version: 2.6.2

iQCVAwUBMzfbfQS1kdkX7r1ZAQFl8wP/WiN6KwvCbSRn7gzeMkkacqT9HnwEzub7
RIN5pcRyon5UlBXkiKaGuHFS8Xf0qecs/f0h7LqyLzlBkqaEOmETBSG5u5/FZ4I6
hnJmrHm/LyP6KO8lpd7K8FPSySVpQgLS0pGwRB6KjnGP85S+N7LDGVU1LpW9L4NQ
bKdYWWp4pVI=
=m1Df
-----END PGP SIGNATURE-----


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

* Re: www.gnus.org
  1997-03-25  7:35 www.gnus.org Andy Eskilsson
@ 1997-03-25 10:41 ` Samuel Tardieu
  1997-03-25 14:04   ` www.gnus.org David Lebel
  1997-03-30  8:47   ` www.gnus.org Lars Magne Ingebrigtsen
  1997-03-25 14:40 ` www.gnus.org William M. Perry
  1997-03-25 15:36 ` www.gnus.org Jason R. Mastaler
  2 siblings, 2 replies; 32+ messages in thread
From: Samuel Tardieu @ 1997-03-25 10:41 UTC (permalink / raw)
  Cc: ding

>>>>> "Andy" == Andy Eskilsson <flognat@fukt.hk-r.se> writes:

Andy> Well now we have a www.gnus.org... are there any works on the
Andy> contents, or will we just move the http://www.ifi.uio.no/~larsi
Andy> tree there?

Would it be possible to install some aliases for mail? Having
"sam@gnus.org" would make be very proud since I recommend Gnus to
almost any people I know :)))

  Sam
--
Samuel Tardieu -- sam@ada.eu.org


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

* www.gnus.org
@ 1997-03-25  7:35 Andy Eskilsson
  1997-03-25 10:41 ` www.gnus.org Samuel Tardieu
                   ` (2 more replies)
  0 siblings, 3 replies; 32+ messages in thread
From: Andy Eskilsson @ 1997-03-25  7:35 UTC (permalink / raw)


Well now we have a www.gnus.org... are there any works on the
contents, or will we just move the http://www.ifi.uio.no/~larsi tree
there?

I believe a touchup of both contents and structure of the gnus-pages
would be welcome!

	/Andy

-- 
 Hi I am an alien .sig, and at the moment I am having sex to your
 mind, by looking at your smile I can see that you like it.

 Unsolicited commercial email is subject to an archival fee of $400.
 See <http://www.fukt.hk-r.se/~flognat/mail/> for more info.


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

end of thread, other threads:[~2010-12-04 23:33 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-04 21:08 shr - support for title attribute on <a> elements? Adam Sjøgren
2010-12-04 21:44 ` [PATCH] (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify Adam Sjøgren
2010-12-04 21:59 ` Adam Sjøgren
2010-12-04 22:25   ` Lars Magne Ingebrigtsen
2010-12-04 22:55     ` Adam Sjøgren
2010-12-04 23:00       ` www.gnus.org (Was: (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify.) Adam Sjøgren
2010-12-04 23:33         ` www.gnus.org Lars Magne Ingebrigtsen
2010-12-04 23:32       ` (shr-urlify): show title attribute as well as URL, if provided. (shr-tag-a): pass title to shr-urlify Lars Magne Ingebrigtsen
  -- strict thread matches above, loose matches on Subject: below --
2002-12-31 21:12 www.gnus.org Jon Ericson
2003-01-01 19:12 ` www.gnus.org Lars Magne Ingebrigtsen
1997-03-25  7:35 www.gnus.org Andy Eskilsson
1997-03-25 10:41 ` www.gnus.org Samuel Tardieu
1997-03-25 14:04   ` www.gnus.org David Lebel
1997-03-25 15:31     ` www.gnus.org Jason R. Mastaler
1997-03-25 15:43       ` www.gnus.org David Lebel
1997-03-30  8:47   ` www.gnus.org Lars Magne Ingebrigtsen
1997-03-30 23:37     ` www.gnus.org Scott Blachowicz
1997-03-31 10:42       ` www.gnus.org Lars Magne Ingebrigtsen
1997-03-25 14:40 ` www.gnus.org William M. Perry
1997-03-25 14:56   ` www.gnus.org Kai Grossjohann
1997-03-25 15:38     ` www.gnus.org Per Abrahamsen
1997-03-25 16:02     ` www.gnus.org Jason R. Mastaler
1997-03-25 15:22   ` www.gnus.org Per Abrahamsen
1997-03-25 16:08     ` www.gnus.org Brent B. Powers
1997-03-27 11:37       ` www.gnus.org Steinar Bang
1997-03-30 22:42       ` www.gnus.org William M. Perry
1997-03-25 15:38   ` www.gnus.org Jason R. Mastaler
1997-03-25 16:18   ` www.gnus.org Lars Balker Rasmussen
1997-03-25 17:30   ` www.gnus.org Daniel Neri
1997-03-25 18:34   ` www.gnus.org Erik Selberg
1997-03-25 20:58     ` www.gnus.org William M. Perry
1997-03-25 15:36 ` www.gnus.org Jason R. Mastaler

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 NNTP newsgroup(s).