Re: [WSG] Cite in blockquote

2006-01-26 Thread Patrick H. Lauke

Quoting Svip [EMAIL PROTECTED]:


But my question is; does any browser use the cite attribute in the
blockquotes?


None that I'm aware of, no.

--
Patrick H. Lauke
__
re·dux (adj.): brought back; returned. used postpositively
[latin : re-, re- + dux, leader; see duke.]
www.splintered.co.uk | www.photographia.co.uk
http://redux.deviantart.com
__
Web Standards Project (WaSP) Accessibility Task Force
http://webstandards.org/
__

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



RE: [WSG] Cite in blockquote

2006-01-26 Thread Ted Drake
I believe Jeremy Keith or PPK has a javascript that pulls the cite attribute
out of the blockquote and places it as a link after the blockquote. It looks
like a research paper citation/footnote.
ted

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Patrick H. Lauke
Sent: Thursday, January 26, 2006 8:23 AM
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] Cite in blockquote

Quoting Svip [EMAIL PROTECTED]:

 But my question is; does any browser use the cite attribute in the 
 blockquotes?

None that I'm aware of, no.

-- 
Patrick H. Lauke
__
re.dux (adj.): brought back; returned. used postpositively
[latin : re-, re- + dux, leader; see duke.]
www.splintered.co.uk | www.photographia.co.uk
http://redux.deviantart.com
__
Web Standards Project (WaSP) Accessibility Task Force
http://webstandards.org/
__

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Cite in blockquote

2006-01-26 Thread Juergen Auer
Hello Svip,

On 26 Jan 2006 at 17:10, Svip wrote:
 But my question is; does any browser use the cite attribute in the 
 blockquotes?

I know a little sample from the german Html-bible SelfHtml:

Look at

http://de.selfhtml.org/html/text/anzeige/blockquote_cite.htm

Right-Click on the blockquote 'Die Energie des Verstehens' shows a
new Option 'Properties' with the reference.

This works with FireFox 1.5 and Netscape 7.2, not with the IE6.

Regards
Juergen Auer


Jürgen Auer, http://www.sql-und-xml.de/
Web-Datenbanken zum Mieten
Friedenstr. 37, 10 249 Berlin
Tel.: (030) 420 20 060
Fax: (030) 420 19 819
[EMAIL PROTECTED]
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



RE: [WSG] Cite in blockquote

2006-01-26 Thread Ted Drake
I think the actual answer should be.
The cite attribute is not displayed by any browser. However it is available
if you right click on the blockquote and look at the properties. It is also
available for some future semantic web research.

I use it often since it only takes a few moments to add it and I never know
who will actually use it or see it.  I think of it as a future easter egg.

It's also good for research papers or your own notes for going back and
finding the original sources.

And... you can use the js to display it on the page.

Has anyone tried using nicetitles.js to display the cite attribute on hover?
It should be a fairly easy modification.

Ted


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Juergen Auer
Sent: Thursday, January 26, 2006 9:38 AM
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] Cite in blockquote

Hello Svip,

On 26 Jan 2006 at 17:10, Svip wrote:
 But my question is; does any browser use the cite attribute in the
blockquotes?

I know a little sample from the german Html-bible SelfHtml:

Look at

http://de.selfhtml.org/html/text/anzeige/blockquote_cite.htm

Right-Click on the blockquote 'Die Energie des Verstehens' shows a 
new Option 'Properties' with the reference.

This works with FireFox 1.5 and Netscape 7.2, not with the IE6.

Regards
Juergen Auer

 
Jürgen Auer, http://www.sql-und-xml.de/
Web-Datenbanken zum Mieten
Friedenstr. 37, 10 249 Berlin
Tel.: (030) 420 20 060
Fax: (030) 420 19 819
[EMAIL PROTECTED]
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Cite in blockquote

2006-01-26 Thread Jeremy Keith

Ted Drake wrote:
I believe Jeremy Keith or PPK has a javascript that pulls the cite  
attribute

out of the blockquote and places it as a link after the blockquote.


Here's a quick'n'dirty version:

http://24ways.org/advent/dom-scripting-your-way-to-better-blockquotes

There's a longer version in my book which puts the attribution  
outside the blockquote, which is semantically more correct but a  
little trickier to implement.


--
Jeremy Keith

a d a c t i o

http://adactio.com/

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] Cite in blockquote

2006-01-26 Thread russ - maxdesign
 It said that 'cite' is an attribute for the source of a blockquote,
 which makes sense.  However, when I tried to use it, I saw no
 difference, not something when I hovered the blockquote or right
 clicked.

It is also possible to display the cite attribute using attribute selectors,
(except in the wondrous IE). A quick example:

HTML
-
blockquote cite=http://www.site.com;
pLorem ipsum dolor /p
/blockquote

CSS

blockquote[cite]:after
{
content: Source:  attr(cite);
display: block;
}

The result should show the following at the end of the blockquote contents
(in attribute selector supporting browsers):
Source: http://www.site.com;

Thanks
Russ

**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Cite in blockquote

2006-01-26 Thread Svip
Oh my, that is extremely well, I like that. Thank you very much for
that information. :)

Is it possible to export it as a link (a) instead of plain text
using content:?

Regards,
Svip - sviip.dk
On 26/01/06, russ - maxdesign [EMAIL PROTECTED] wrote:
  It said that 'cite' is an attribute for the source of a blockquote,
  which makes sense.  However, when I tried to use it, I saw no
  difference, not something when I hovered the blockquote or right
  clicked.

 It is also possible to display the cite attribute using attribute selectors,
 (except in the wondrous IE). A quick example:

 HTML
 -
 blockquote cite=http://www.site.com;
 pLorem ipsum dolor /p
 /blockquote

 CSS
 
 blockquote[cite]:after
 {
 content: Source:  attr(cite);
 display: block;
 }

 The result should show the following at the end of the blockquote contents
 (in attribute selector supporting browsers):
 Source: http://www.site.com;

 Thanks
 Russ

 **
 The discussion list for  http://webstandardsgroup.org/

  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **


**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**