192 9 The Transformation Process
Figure 9.4 The transformation process for constructing a website. The process sep-
arates the content, logical structure, and presentation. Each of the steps can be devel-
oped and maintained by different individuals or groups.
to a single format: XML. If the original source data are already in XML, then
this step simply reads the file. Here is what it might look like:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Source SYSTEM "source.dtd">
<Source>
<Person id="K.Baclawski">
<Name>Kenneth Baclawski</Name>
<PubName>K. Baclawski</PubName>
<Email>[email protected]</Email>
<PersonalPage>http://baclawski.com/ken</PersonalPage>
</Person>
...