I'm trying to parse an html page, which contains links
to other pages, which I need to aggregate.

I understand I can develop a pipeline like this:

<map:match pattern="links">
  <map:generate type="html" src="http://foo.org"/>
  <map:transform src="create-links.xsl"/>
  <map:serialize type="xml"/>
</map:match>

This will produce:
<links>
  <link>http://foo.org/page1.html</link>
  <link>http://foo.org/some-other-page.html</link>
  <link>http://foo.org/and-another-page.html</link>
</link>

Now, at this point, I need to be able to aggregate all
of pages via "html" generator into one page.

Any ideas?

Thanks,
-Alex

=====
Alex Romayev
Software Architect
http://www.romayev.com
[EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to