|
-
XSL Help
I'm just playing around with XSL for the first time....
I have an XML file with a structure like this:
<table title="Host List">
<row>
<row_item column="Hostname">computer A</row_item>
<row_item column="IP Address">0.0.0.0</row_item>
<row_item column="Operating System">Windows 2003 SP2</row_item>
</row>
<row>
<row_item column="Hostname">computer B</row_item>
<row_item column="IP Address">0.0.0.0</row_item>
<row_item column="Operating System">HP-UX 11.x</row_item>
</row>
</table>
What I'd like to end up with is this:
<Host_List>
<row>
<Hostname>computer A</Hostname>
<IP_Address>0.0.0.0</IP_Address>
<Operating_System>Windows 2003 SP2</Operating_System>
</row>
<row>
<Hostname>computer B</Hostname>
<IP_Address>0.0.0.0</IP_Address>
<Operating_System>HP-UX 11.x</Operating_System>
</row>
</Host_List>
Can anyone help get me started?
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
|
Bookmarks