On Thu, Feb 5, 2009 at 3:57 AM, Henning Brune
<[email protected]> wrote:
> when customizing the 'frontpage' theme for our installation I found a
> small problem which I fixed. How can I bring this fix into the roller
> development?
>
> Here is what I changed:
>
> Near the end of template '_blogprofile' you find this code:
>
>                <td><a href="$utils.escapeHTML($entry.permaLink)">
>                    $utils.removeHTML($entry.title)</a></td>
>
> On our installation with tomcat running behind apache this results in
> wrong links to entries (the links are missing the web applications
> basic path). This is the code that is working fine for us:
>
>                <td><a
> href="${url.absoluteSite}$utils.escapeHTML($entry.permaLink)">
>                    $utils.removeHTML($entry.title)</a></td>

Or you could use the new and preferred method $entry.permalink, note
the lowercase L, which returns an absolute URL.

Generally the best way to get a fix in to Roller is to submit a report
to our issue tracker, and attach a patch.

Thanks,
- Dave

Reply via email to