On Tue, Dec 28, 2010 at 7:13 AM, andronat_asf <[email protected]>wrote:
> Hello people! > > I was working on the issue 5729 as mentioned in > http://apache-geronimo.328035.n3.nabble.com/ASF-Mentoring-Program-td2063989.html. > I found that RedirectByHashFilter could be modified by adding > noxssShowTree=true to every redirect, and solve the problem on the welcome > screen and menu appearance. Any comment would be totally useful > Thanks for your interests. This above fix suggestion would not work. we are using iframe in index.jsp page to show the portlet page. noxssShowTree determine whether the portlet should be displayed in the iframe without the navigation tree or with the navigation tree. If you add noxssShowTree=true to every redirect, you will see the full index page with navigation tree be nested in current content iframe. Root cause of this JIRA: all the console/portal/* request are intercepted by RedirectByHashFilter so that even wrong request to url lik console/portal/xxx will not get a 404 error. To fix this JIRA: 1, We need to figure out the valid console/portal/* pages, so that we could verify if the request is valid. 2, If it's not a valid request, we need to redirect it to a error page with some info like "The page you requested is not existing." Hints: Following code could return a registered portlets pages, you need to figure out a way to call it from the filter to get org.apache.geronimo.pluto.PortalContainerServicesGBean.getDriverConfiguration().getPages() > > I would also like to point out that I downloaded Geronimo ver. 3-M1. I > managed to successfully build it with maven eclipse:eclipse but when I tried > to import the projects, some of them had the same name which produced errors > that wouldn't allow me to load all the projects. Is this a bug or something > normal? I am using Eclipse Helios and I have followed all the instructions > in the Geronimo wiki. > > A question i have about the management of the whole geronimo project is how > can i find the order the packets are executed. For example I am currently > looking in console-portal-driver project. How can i find the supper set of > this? Or could you suggest me some tricks about those matters? (management, > etc..) > > One last thing I want to ask is how I can build a working package of > Geronimo from all those small projects in eclipse ( like the one on the > download page ). Sorry if this question is too trivial but it will be very > enlightening for me. > > -- Shawn
