//if (Debug.infoOn()) Debug.logInfo("in init, delegator:" + delegator, module);
try {
List menuItemList = modelMenu.getMenuItemList();
Iterator iter = menuItemList.iterator();
while (iter.hasNext()) {
ModelMenuItem menuItem = (ModelMenuItem)iter.next();
String contentId = menuItem.getAssociatedContentId(dummyMap);
//if (Debug.infoOn()) Debug.logInfo("in init, contentId:" + contentId, module);
GenericValue webSitePublishPoint = delegator.findByPrimaryKeyCache("WebSitePublishPoint", UtilMisc.toMap("contentId", contentId));
String menuItemName = menuItem.getName();
//if (Debug.infoOn()) Debug.logInfo("in init, menuItemName:" + menuItemName, module);
//if (Debug.infoOn()) Debug.logInfo("in init, webSitePublishPoint:" + webSitePublishPoint, module);
putInContext(menuItemName, "WebSitePublishPoint", webSitePublishPoint);
}
} catch (GenericEntityException e) {