[EMAIL PROTECTED] wrote:

This is probably very easy to do; I just don't know how. In my sitemap.xmap file I want to parameterize a portion of the src value.


So instead of this:

<map:generate type="file" src="/mnt/w2kshare/internal/techlib/sitemap.xml"/>

I would like to have this:

<map:generate type="file" src="{mymountpoint}/sitemap.xml"/>
I've seen this done in sitemaps. I just don't know how to set the parameter, or how to find doc telling me how (I have looked). Can someone tell me know to do this?


Thank you!
Depends on where you get the parameter value from. What is your use case? If you just want to use some kind of root folder you do it like this :

<map:pipelines>
        <map:component-configurations>
                <global-variables>
                  <baseURL>/mnt/w2kshare/internal/techlib</baseURL>
                </global-variables>
        </map:component-configurations>
        <.../>
                <map:generate src="{global:baseURL}/sitemap.xml"/>
        <.../>
        

--
Leszek Gawron                                      [EMAIL PROTECTED]
Project Manager                                    MobileBox sp. z o.o.
+48 (61) 855 06 67                              http://www.mobilebox.pl
mobile: +48 (501) 720 812                       fax: +48 (61) 853 29 65

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



Reply via email to