RE: [J1.5] Left Menu
Hi Very thanks, Archana. I changed this value and am glad :- Vladimir There is a velocity template associated with MenuControl called Jetspeed-menu.vm (look under templates\vm\portlets\html) which can be changed to your need.
Re: jboss freeze at startup
On Sunday 13 February 2005 11:29, root wrote: > Hi, > > I try to work with js2 on jboss4.0. I think I followed step by step > jetspeed 2 wiki, but jboss freeze ("[STDOUT] JNDI System Property flag > null") when deploy js. > > > 11:16:37,821 INFO [TomcatDeployer] deploy, ctxPath=/jetspeed, > warUrl=file:/usr/local/jboss-4.0.1RC2/server/default/deploy/jetspeed.war/ > 11:16:42,214 INFO [console] Jetspeed Starting Initialization... > 11:16:42,275 INFO [console] JetspeedServlet identifying web application > root... > 11:16:42,278 INFO [console] JetspeedServlet identifed web application > root as /usr/local/jboss-4.0.1RC2/server/default/deploy/jetspeed.war/ > 11:16:42,531 INFO [console] JetspeedServlet attempting to create the > portlet engine... > 11:16:42,640 INFO [Jetspeed] Jetspeed environment attempting to > initialize portal Engine... > 11:16:42,686 INFO [STDOUT] JNDI System Property flag null > > > Has anyone else ever run into similar issues? Do you get any exception in the jetspeed.log? I had some JNDI problems for some time ago, but when I yesterday tried with cvs head of jetspeed and jboss-4.0.1 it worked. But I still can't deploy demo.war correctly, because of an exception in VelocityViewServlet (See jetspeed-dev mailinglist: "Stackoverflow with JetspeedPowerTool" for a solution, havent had time to test it yet). Best regards, Rohnny - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Jetspeed with Secure LDAP ?
I've gotten Jetspeed to authenticate against LDAP but I would like to use SSL to communicate with the LDAP server. There are some properties to configure the security protocol to be SSL but I can't find where you specify where the certificates should be ? Is there a property somewhere that I should use to set the location of the certificates ? Or is there a standard place in the jetspeed distribution where they should be placed ? Thanks, Tom
where are portlet prefs stored
My question should be simple for anyone that knows the details about Portlet Preferences. Where are the Portlet Preferences stored for J2, and where are they stored for J1 Fusion? I'm having a hard time finding them, as I'm trying to fix the issue of the preferences being removed on every redeploy. Thanks, -- Jeff Sheets - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
RE: [J1.5] Left Menu
There is a velocity template associated with MenuControl called Jetspeed-menu.vm (look under templates\vm\portlets\html) which can be changed to your need. -Original Message- From: Vladimir Lisin [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 4:07 AM To: Jetspeed Users List Subject: [J1.5] Left Menu Hi all In default.psml I have the next construction for left menu and it works well: . After translation in HTML this fragment looks as below and the width of menu have 25%. How and which parameters I can use to change this value ? Gazeta.ru ... Thanks in advance, Vladimir - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
[J1.5] Left Menu
Hi all In default.psml I have the next construction for left menu and it works well: . After translation in HTML this fragment looks as below and the width of menu have 25%. How and which parameters I can use to change this value ? Gazeta.ru ... Thanks in advance, Vladimir
Re: non-scrollable IFramePortlet
A similar thing I've found useful is to make an iframe resize to the contents, so that you don't need scrollbars. I used a plain HTML portlet rather than an IFramePortlet and put the following in the HTML source. It only works if Tomcat/servlet engine is accessed using the same port as static HTML content, or possibly over SSL, otherwise the JavaScript doesn't have privileges to execute. Regards, Oliver function iFrameHeight() { if(document.getElementById && !(document.all)) { theFrame = document.getElementById('iframename'); h = theFrame.contentDocument.body.scrollHeight; w = theFrame.contentDocument.body.scrollWidth; theFrame.style.height = h; theFrame.style.width = w;
}else if(document.all) { h = window.frames.iframename.document.body.scrollHeight; w = window.frames.iframename.document.body.scrollWidth; document.all.iframename.style.height = h; document.all.iframename.style.width = w; } } http://mysite.com"; NAME="iframename" ID="iframename"> Quoting Marina <[EMAIL PROTECTED]>: Great, it worked! Thanks, David :) --- David Sean Taylor <[EMAIL PROTECTED]> wrote: Marina wrote: > Hello! > > I tried using IFramePortlet to display a content from > another URL inside it, and I noticed that the content > of the IFramePortlet window is not scrollable. > > Any idea how I could make it scrollable? > Try adding this Preference to your portlet.xml and redeploy: SCROLLING TRUE This message was sent using IMP, the Internet Messaging Program. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]