473,803 Members | 3,095 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

need examples of sites using XML/XSLT

I'm looking for examples of websites (preferably large and well known
companies, not personal sites or developer-to-developer sites) that
use XML and XSLT as a technology platform from which to store and
render web content.

Reason being that we are considering migrating our website content to
XML and using XSLT to transform the content into html. Currently lack
of browser support for XSLT has held us back. For example a
significant percent of our browser audience is still on EI 5.0-5.01
which does not have full support for the W3C XSLT standard. But it
seems the time may soon be ripe for adoption of XSLT. Solid examples
are needed to sell the case (or not) for using XSLT in our next site
upgrade.

Thanks!

Mike Judkins
Web Developer
Plantronics, Inc.
Jul 20 '05 #1
5 7393
Hi,
I'm looking for examples of websites (preferably large and well known
companies, not personal sites or developer-to-developer sites) that
use XML and XSLT as a technology platform from which to store and
render web content.
I've never encountered such a website that has any notion of XML, or any W3C standard. Either I don't look in the right places, or they don't exist. But that shouldn't withhold your company from making the leap; someone has to be the first...
Reason being that we are considering migrating our website content to
XML and using XSLT to transform the content into html.
Currently lack of browser support for XSLT has held us back.


You should consider server-side XSLT. That eleminates the browser problem and preserves indexing of search engines like Google.

regards,

--
Joris Gillis (http://www.ticalc.org/cgi-bin/acct-v...i?userid=38041)
Ceterum censeo XML omnibus esse utendum
Jul 20 '05 #2
mi**********@ya hoo.com (Mike Judkins) wrote in
news:17******** *************** ***@posting.goo gle.com:
I'm looking for examples of websites (preferably large and well known
companies, not personal sites or developer-to-developer sites) that
use XML and XSLT as a technology platform from which to store and
render web content.

Reason being that we are considering migrating our website content to
XML and using XSLT to transform the content into html. Currently lack
of browser support for XSLT has held us back.
That's only a problem if you rely on the browser to perform the
transformation. Most sites that use XML and XSLT perform the transformation
to html at the server end just send html to the browser.
For example a
significant percent of our browser audience is still on EI 5.0-5.01
which does not have full support for the W3C XSLT standard. But it
seems the time may soon be ripe for adoption of XSLT. Solid examples
are needed to sell the case (or not) for using XSLT in our next site
upgrade.


You might want to take a look at uPortal. It's not a commercial web site
but it's been implemented at a large number of institutions, has source code
that you can freely look at, including numerous xsl files that may be used
as examples. Check it out at http://www.uportal.org

Jul 20 '05 #3
The Linux Documentation Project uses XML to produce all the HOWTOs and
Guides. They currently use OpenJade to to convert the document from
DocBook XML to HTML. But this is an off-line processs.

However I am pushing for on-the-fly transformation of DocBook XML to
HTML using Cocoon or similar . Here is a site that uses Cocoon to
perform on-the-fly transformation of XML content to HTML
http://tools.tldp.org/HOWTOS/

Due to the lack/inconsistency of XSLT support in browsers, your best
option to perform the XML -> HTML transformation on the server side
using Cocoon, AxKit, PHP or something similar.

In Peace,
Saqib Ali
http://tools.tldp.org/search.php <--- Search Linux Howtos

Jul 20 '05 #4
Just spent the afternoon researching and for sure, server side is
becoming the obvious choice if implementing XML/XSLT CMS strategy. I
only got 1 of 4 modern day browsers to work with a client side
example. Thanks!
"Joris Gillis" <ro**@pandora.b e> wrote in message news:<op******* *******@news.pa ndora.be>...
Hi,
I'm looking for examples of websites (preferably large and well known
companies, not personal sites or developer-to-developer sites) that
use XML and XSLT as a technology platform from which to store and
render web content.


I've never encountered such a website that has any notion of XML, or any W3C standard. Either I don't look in the right places, or they don't exist. But that shouldn't withhold your company from making the leap; someone has to be the first...
Reason being that we are considering migrating our website content to
XML and using XSLT to transform the content into html.
Currently lack of browser support for XSLT has held us back.


You should consider server-side XSLT. That eleminates the browser problem and preserves indexing of search engines like Google.

regards,

Jul 20 '05 #5
On 29 Nov 2004 10:33:32 -0800, mi**********@ya hoo.com (Mike Judkins)
wrote:
I'm looking for examples of websites (preferably large and well known
companies, not personal sites or developer-to-developer sites)
Just from my own personal experience

http://gamesradar.msn.co.uk/

http://goodwoodworking.co.uk/

These are two sites hosted on one large XSLT-based CMS for a magazine
company. They needed a single solution for a wide range of titles, and
also the ability to share content between places:
http://www.futurenet.com/crossstitch...rticleid=32991
(as a slightly contrived example)
As with anything, you need to work out what you want before you ask
for it. Every time I talk CMS to a client they have a different view
of what it's about. For some it's content management (i.e. just teh
raw body text). For others it's about flexible page design and
re-design. In a few it's about the site - simple pages, but a great
many of them needing a large network of navigation.

Currently lack of browser support for XSLT has held us back.


It shouldn't do - you can basically ignore client-side XSLT. The
transformation to HTML takes place on the server.

This is _not_ an easy thing to build. You should buy in some past
experience of XSLT content management (don't look at me, I'm in the
UK). If you do it wrong it will probably work - but the server load
will be high, site performance poor, and the maintainability of your
site will be minimal.

Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2038
by: Federico | last post by:
Hi all, I don't know if this topic is perhaps a little bit off-topic, anyway I have a strange problem in transforming an XML file in an HTML file using XSLT form a Java program written with NetBeans. I utilize the javax.xml.transform class and in the computer where I wrote the program all function perfectly, calling the input XML file, the XSLT stylesheets and setting where to write the output HTML.
4
1659
by: titanandrews | last post by:
Hi, I have ran into a situation that I think should be possible, but I am fairly new to XSLT so maybe not. Suppose I have the following document <ROOT> <FOO name="A"> <CHILD name="B"/> </FOO>
2
1764
by: Allan Bredahl | last post by:
Hi All I'm trying hard to find out how to transform XML to HTML using XSLT files. I have searched all over for some examples on how to do this, but I have had no succes with any of them. Can sombody please direct me on how to fill in this function:
5
7644
by: Fred | last post by:
Not much expertise on XSLT and trying to understand it's uses when creating apps in VS.NET? If I wanted flexibility on the UI (View aspect of M.V.C.): - How does it compare with creating business components that can be consumed by WebForms, WinForms, mobile devices, etc? Is it even fair to compare the such technologies? - How about for cases when you need to display dynamic elements on the form/grid (as compared to knowing data elements...
1
2608
by: Bilal Bhutta | last post by:
Hello, I'm stuck on this problem for quite some time and hope somebody would be able to guide me. Basically, I need to populate a large number of "template" XML files which have all elements/attributes etc. defined but the values in these elements/attributes might be blank or incorrect, as two examples below: <?xml version="1.0" encoding="UTF-8"?> <fileType1> <element1> <element2 attr2="xxx"> <element3>
0
1365
by: avidcoder | last post by:
HI all I am a beginner in XML space . Some one give me ideas about how to develop a """" Good GUI implementation with "xml conversion" using XSLT as backend solution""" Actually i want to convert a xml file into another xml file ( lets us say it as my )standard format "GG" using XSLT .Additinoally i need to add some extra information via "USER" " INPUT " to final xml .
1
4934
by: basavaraj koti | last post by:
I need to show image using xslt Below provided in my xml and xslt. <?xml version="1.0" encoding="iso-8859-1"?> <?xml-stylesheet type="text/xsl" href="../xyz.xsl"?> <Grade class="03" subject="Science"> <media id="2809"> <topic>A Bird's Paradise</topic> <category>Concept</category> <type>Animation</type>
2
8918
by: Ch Pravin | last post by:
Hi All: I am having the following xml which i need to convert to excel using xslt. Please help me out. Afghanistan.xml <?xml version="1.0" encoding="utf-16"?> <Languages BuildVersion="1,5,0815,0 " CountryName="Afghanistan" > <Language locale="English">
6
4343
by: kluge.wolfram | last post by:
Hi, i get stucked on a transformation problem using XSLT. What i need is to copy an XML Tree to an output XML without any automatic changes. Since i used <xsl:copyor <xsl:copy-ofthere occur unwanted side effects. For example i just copied a xml were several namespace declarations are present more than one time. Then the transformation do remove the declaration at the child nodes. Another funny automatism is - if i remove a node
0
9703
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9565
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10550
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10295
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10069
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9125
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5633
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3799
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.