Feed feed = this.getFeedFromSubscriptionName(subscriptionName);
if (feed != null) {
// Render the feed via external JSP content:
event.getHttpRequest().setAttribute("feed", feed);
event.getHttpRequest().setAttribute("subscription", subscriptionName);
JspComponent jsp = new JspComponent(event.getHttpRequest(), "/personal/includes/feedPanel.page");
// Replace the content of the "viewer" page part:
ReplaceContentAction action1 = new ReplaceContentAction("viewer", jsp);
// Re-apply javascript Behaviour rules:
ApplyBehaviour action2 = new ApplyBehaviour();