Alex Romayev wrote:

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.



Use cinclude or xinclude transformer step.


Geoff

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



Reply via email to