xsl-list
[Top] [All Lists]

Re: xsl-list Digest 13 Mar 2005 06:10:01 -0000 Issue 355, re: Data Driven xslt

2005-03-13 17:33:27
I don't see any reference to 

13353 by: Ross, Douglas

in Issue 355 - which might have helped me with my
data-driven XSLT question....

David Laub
--- xsl-list-digest-help(_at_)lists(_dot_)mulberrytech(_dot_)com wrote:

xsl-list Digest 13 Mar 2005 06:10:01 -0000 Issue 355

Topics (messages 13347 through 13355):

Re: Variables and HTML
      13347 by: Colin Paul Adams

why i cant use this regular html tags / css in my
xsl file
      13348 by: henry human
      13349 by: Joris Gillis
      13350 by: Touchtel
      13351 by: henry human

Re: xsl-list Digest 12 Mar 2005 06:10:01 -0000 Issue
354 - Thanks for help, but still stuck!
      13352 by: David Laub
      13353 by: Ross, Douglas

Re: How Do I Generate A Set-Difference With Context
- Part A
      13354 by: Aron Bock
      13355 by: Dimitre Novatchev

Administrivia:

To subscribe to the digest, e-mail:
      <xsl-list-digest-subscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>

To unsubscribe from the digest, e-mail:

<xsl-list-digest-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>

To post to the list, e-mail:
      <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>



----------------------------------------------------------------------
Date: 12 Mar 2005 06:59:27 +0000
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
From: Colin Paul Adams <colin(_at_)colina(_dot_)demon(_dot_)co(_dot_)uk>
Subject: Re: [xsl] Variables and HTML
Message-ID: <m364zxe4ds(_dot_)fsf(_at_)colina(_dot_)demon(_dot_)co(_dot_)uk>

"Nathan" == Nathan Young <natyoung(_at_)cisco(_dot_)com>
writes:

    >> Together with a character mao that maps back:
    >> 
    >> <xsl:output-character character="&#57345;
string="&lt;"/>
    >> <xsl:output-character character="&#57346;
string="&gt;"/>
    >> <xsl:output-character character="&#57347;
string="&amp;"/>

    Nathan> I read this as defining instructions for
the serializer to
    Nathan> replace the unfamiliar charcters above
with the
    Nathan> appropriate output characters (<> and &
in final output).

The reason these characters are unfamiliar, is that
they are defined
by Unicode as private use (that is, they are
anything the application
wants them to be).

This makes them ideal for use in character maps, as
they cannot
possibly conflict with any normal character.
-- 
Colin Paul Adams
Preston Lancashire

------------------------------

Date: Sat, 12 Mar 2005 10:12:13 +0100 (CET)
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
From: henry human <henry_human(_at_)yahoo(_dot_)de>
Subject: why i cant use this regular html tags / css
in my xsl file
Message-ID:

<20050312091213(_dot_)75655(_dot_)qmail(_at_)web25802(_dot_)mail(_dot_)ukl(_dot_)yahoo(_dot_)com>

each browser, which i use (netscape and MS IE)
breake with error, when iuse a <colgroup> in my xsl
code:
<colgroup> <col width="200"> <col width="150">
</colgroup>
the IE says: start tag <colgroup> don match end tag
<col.... 
Netscape 6.0 show only a long string as text.

The Problem number two is, when i try to define  :
<head><title></title><style type="text/css">
<!-- body{font-family:Arial;color:green; }
--> </style></head><body>
....
in header , it has no effect!
Why i cant use this regular tags and styls in my xsl
file:
hier is the header of my xsl file:
<?xml version='1.0'?>
 <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";> 
<xsl:output method="html"/>
 <xsl:template match="/">
.....

thanks

      

      
              

___________________________________________________________

Gesendet von Yahoo! Mail - Jetzt mit 250MB Speicher
kostenlos - Hier anmelden: http://mail.yahoo.de

------------------------------

Date: Sat, 12 Mar 2005 11:35:38 +0100
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
From: "Joris Gillis" <roac(_at_)pandora(_dot_)be>
Subject: Re: [xsl] why i cant use this regular html
tags / css in my xsl file
Message-ID: <opsnis1ozeyf9v9r(_at_)bepv0002>

Tempore 10:12:13, die 03/12/2005 AD, hinc in  
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com scripsit henry human
 
<henry_human(_at_)yahoo(_dot_)de>:

<colgroup> <col width="200"> <col width="150">
</colgroup>
Hi,

Xslt has to be well-formed xml. This snippet is
certainly not.
make it:
<colgroup> <col width="200"/> <col width="150"/>
</colgroup>

The Problem number two is, when i try to define  :
<head><title></title><style type="text/css">
<!-- body{font-family:Arial;color:green; }
--> </style></head><body>

That's because you're not defining any style rules
here. You're placing  
the css inside a comment (which is rather strange),
so your xslt processor  
handles it (correctly) as a comment i.e. completely
ignores it.

Rather put the css rules inside <![CDATA[  ]]>

regards,
-- 
Joris Gillis

(http://www.ticalc.org/cgi-bin/acct-view.cgi?userid=38041)
Ceterum censeo XML omnibus esse utendum

------------------------------

Date: Sat, 12 Mar 2005 16:59:15 +0530
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
From: "Touchtel" <omprakashv(_at_)touchtelindia(_dot_)net>
Subject: RE: [xsl] why i cant use this regular html
tags / css in my xsl 
      file
Message-ID:

<KEECIGGFBNGGMBIJAFFJAEECCBAA(_dot_)omprakashv(_at_)touchtelindia(_dot_)net>

   Hi,
         Your stylesheet is not well-formed. You
have to close the col tag
before opening another like this:
      <colgroup><col width="200"/><col width="150"/>
</colgroup>

   As for the style having no effect, did you check
the html output to see
if the style was there.

 Cheers,
  Omprakash.V

-----Original Message-----
From: henry human [mailto:henry_human(_at_)yahoo(_dot_)de]
Sent: Saturday, March 12, 2005 2:42 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] why i cant use this regular html tags
/ css in my xsl
file

each browser, which i use (netscape and MS IE)
breake with error, when iuse a <colgroup> in my xsl

=== message truncated ===


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>
  • Re: xsl-list Digest 13 Mar 2005 06:10:01 -0000 Issue 355, re: Data Driven xslt, David Laub <=