SEVERE ERROR: RenderRequest Parameters

2007-01-23 Thread Frank Villarreal
I'm not sure if this has been identified in JIRA or not ... but I've noticed this error goes back to the Jetspeed 2 release candidate days ... Whenever there are at least 2 portlets from the same portlet application sharing a single PSML page, RenderRequest parameters submitted by one portlet inst

text editor

2007-01-23 Thread e.j.w.vanbloem
Hi, I want to create a portlet where users see their own personal file (a picture and contact info) in an editor, and are able to change it and save it again. can somebody give me a suggestion what to use? - To unsubscribe

problem: display alphablox contetnt within a portlet

2007-01-23 Thread akind
Hi, I have written a small portlet that includes a jsp-page which has some blox-tags. At runntime alphablox renders from these tags dynamically some javascript and html code. The html parts are displayed but the javascript code is not working. Has someone experience in that or tell me what to d

Re: javascript in portlet.jsp

2007-01-23 Thread Philip Mark Donaghy
Hi, On 1/23/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: yes, i simplefied the code for this mail and made a copy mistake. Do you know why this jsp does not print the name on the page? Yes because portlets are HTML fragments and the and tags are not permitted. At least not in best practi

RE: javascript in portlet.jsp

2007-01-23 Thread e.j.w.vanbloem
yes, i simplefied the code for this mail and made a copy mistake. Do you know why this jsp does not print the name on the page? fckeditor.js: function a_message() { var name = "erik"; return name; } test.jsp: document.write( a_message()) ___

Re: javascript in portlet.jsp

2007-01-23 Thread Aaron Evans
wouldn't it be: document.write(a_message()); ? On 1/23/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Thank you it works, only I do not get the var from the external js, any hint or working examples? Regards fckeditor.js: function a_message() { var name = "erik"; return name; } test.jsp:

RE: javascript in portlet.jsp

2007-01-23 Thread e.j.w.vanbloem
Thank you it works, only I do not get the var from the external js, any hint or working examples? Regards fckeditor.js: function a_message() { var name = "erik"; return name; } test.jsp: document.write( function()) Van: Aaron Evans [mailto:[EMA

Re: javascript in portlet.jsp

2007-01-23 Thread Aaron Evans
Try this instead: On 1/23/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi I tried the code below, but when I put it in jetspeed i

RE: RE : Re: Portlet Application not available

2007-01-23 Thread Sie, Yang
Audrey: I think the "Jetspeed Container" that David refered to was to make sure that JetspeedContainer org.apache.jetspeed.container.JetspeedContainerServlet ... exist in your portlet application's web.xml file. Look at web.xml for JS2's demo app. That is where I copied and modified mine

RE: javascript in portlet.jsp

2007-01-23 Thread e.j.w.vanbloem
Hi I tried the code below, but when I put it in jetspeed it does not show the content of the script (not even the hello world). Can you give me an example that works? Regards <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>

Re: javascript in portlet.jsp

2007-01-23 Thread Martin Dulisch
Hi Erik, you can place a "script" tag in your portlet.jsp Martin 2007/1/23, [EMAIL PROTECTED] < [EMAIL PROTECTED]>: Hi, can someone tell me how to include javacript in my portlet.jsp? Regards Erik - To unsubscribe, e-mai

javascript in portlet.jsp

2007-01-23 Thread e.j.w.vanbloem
Hi, can someone tell me how to include javacript in my portlet.jsp? Regards Erik - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: fckeditor

2007-01-23 Thread e.j.w.vanbloem
can you tell me how to include javascript in the jsp file? Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Verzonden: do 18-1-2007 14:55 Aan: 'Jetspeed Users List' Onderwerp: AW: fckeditor I have my fck here (jetspeed1.4): apache/jakarta-tomcat-5.0.24/webapps

RE: Jetspeed /Eclipse Portlet Plugin

2007-01-23 Thread evi
There is Pluto/Eclipse plugin available for building portlets. Has anybody tried to develop Jetspeed portlets with the Pluto plugin? If Jetspeed uses Pluto as portlet container, this should work in theory... -Original Message- From: David Sean Taylor [mailto:[EMAIL PROTECTED] Sent: Monday

Re: jetspeed registration security

2007-01-23 Thread J.Enrique Ruiz-Valenciano
For example: http://simplecaptcha.sourceforge.net/index.html Oops, you are right. I suppose there are other open source projects with similar features. Try this: http://jcaptcha.sourceforge.net/ this would be a great feature too bad about the license http://jcaptcha.sourceforge.net/licens

RE : Re: Portlet Application not available

2007-01-23 Thread Audrey MORELLE
> 1. manually 'infuse' the Jetspeed Container into the portlet application's web.xml I don't understand what do you mean by "infuse the Jetspeed Container". Can you explain ? > 3. 4. So I just have to drop my war file in both webapps directory, nothing in deploy directory ?