Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML Atom, XSL, Pagination

Status
Not open for further replies.

damipera

Technical User
Dec 1, 2005
134
0
0
GB
hi guys,

can you please help me that should show the contents of this xml using xsl please? also there are the links (colored red). i want to use those also for pagination. i've been searching the net and been trying all sorts but not been successful. i 'd really appreciate your help.

Code:
<?xml version="1.0" encoding="utf-8" ?> 
 <feed xmlns:s="[URL unfurl="true"]http://feed.example.com/services"[/URL] xmlns="[URL unfurl="true"]http://www.w3.org/2005/Atom">[/URL]
  <title type="text">org select - with 'Bush' in name</title> 
  <id>[URL unfurl="true"]http://feed.example.com/orga/srvic/name/Bush</id>[/URL] 
  <rights type="text">Copyright 2015</rights> 
  <updated>2010-05-09</updated> 
  <category term="Search" /> 
  <logo>[URL unfurl="true"]http://www.org.uk/orgcservices/docs/logo.jpg</logo>[/URL] 
 <author>
  <name>org select</name> 
  <uri>[URL unfurl="true"]http://www.sampleorg.uk</uri>[/URL] 
  <email>wbsrvcs@example.com</email> 
  </author>

[COLOR=#CC0000]  <link rel="self" type="application/atom+xml" title="org select - Practices with 'Bush' in name" href="[URL unfurl="true"]http://feed.example.com/organisations/services/name/Bush?apikey=12345"[/URL] /> 
  <link rel="first" type="application/atom+xml" title="first" length="1000" href="[URL unfurl="true"]http://feed.example.com/organisations/services/name/Bush?apikey=12345&page=1"[/URL] /> 
  <link rel="next" type="application/atom+xml" title="next" length="1000" href="[URL unfurl="true"]http://feed.example.com/organisations/services/name/Bush?apikey=12345&page=2"[/URL] /> 
  <link rel="last" type="application/atom+xml" title="last" length="1000" href="[URL unfurl="true"]http://feed.example.com/organisations/services/name/Bush?apikey=12345&page=9"[/URL] />[/color]
 
  <tracking xmlns="[URL unfurl="true"]http://feed.example.com/services"><img[/URL] style="border: 0; width: 1px; height: 1px;" alt="" src="[URL unfurl="true"]http://webtrendsample.com/dfgfgh56dgd5/ddds.gif?fffuri=/organisations%2fservices%2fname%2fBush&wt.js=no&wt.cg_n=feed"/></tracking>[/URL] 
 <entry>
  <id>[URL unfurl="true"]http://feed.example.com/organisations/services/245645634</id>[/URL] 
  <title type="text">Bush Tree House</title> 
  <updated>2015-05-12T08:08:08Z</updated> 
  <link rel="self" title="Bush Tree House Surgery" href="[URL unfurl="true"]http://feed.example.com/organisations/services/24308?apikey=12345"[/URL] /> 
  <link rel="alternate" title="Bush Tree House Surgery" href="[URL unfurl="true"]http://www.org.uk/Srvcs/DR/Default.aspx?id=34343434"[/URL] /> 
 <content type="application/xml">
 <s:organisationSummary>
  <s:name>Bush Tree House</s:name> 
  <s:odsCode>JD12345</s:odsCode> 
 <s:address>
  <s:addressLine>Bush Tree House</s:addressLine> 
  <s:addressLine>John Street</s:addressLine> 
  <s:addressLine>Lirkam</s:addressLine> 
  <s:addressLine>Stockion</s:addressLine> 
  <s:postcode>DWQ4 22GW</s:postcode> 
  </s:address>
 <s:contact type="General">
  <s:telephone>111 2223333444</s:telephone> 
  </s:contact>
  </s:organisationSummary>
  </content>
  </entry>

 <entry>
.
.
.
.
 
.

hi k5tm, thanks for that. can you please show me how i can implement the pagination?






.
 
Pagination in what context? HTML? XSL-FO?

And what do the <link> elements delineate? I am not familiar with Atom, so I am not able to infer any particular 'natural' pagination...
 

i am now able to call that xml in asp page and managed to show some entries using xsl. i am stuck now as to how to have pagination on the asp page using those red "links" above.

if you can give me an idea how to do it in html and xsl context, i'd really appreciate it. my apologies. i dont really have much experience in xml. thanks.
 
damipera said:
using those red "links" above

In order to use a link element (not that there is something special about the name 'link' in the world of XML), there has to be some relationship between the data contained in one or more of the attributes of the link element and something else in the XML document. I have absolutely no way to know what the relationship might be, and it does not seem obvious from looking at the XML document.

I am not looking for you to have experience in XML, but I do need a better problem statement.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top