Re: struts 2.0.1 sample portlet app

2006-11-27 Thread Nils-Helge Garli
Hi! From what I remember, there are no special descriptors for uPortal deployment. It's a while since I worked with uPortal, so I don't remember exactly where I found the instructions, but there are some deployment instructions somewhere in the uPortal documentation. I remember it involved crea

Re: [S2] Experimental Features

2007-01-31 Thread Nils-Helge Garli
Hi, First of all, I want to apologize to everybody for beeing away for so long... I hope it has not caused too many problems. Hopefully, I can still be of some help... Don, What's the remaining 10% you're having trouble with? We can move out the URL and Form stuff, but it would require separate

Re: [s2] Pluggable URL building proposal

2007-02-05 Thread Nils-Helge Garli
I like the JSR168 approach to URLs, where URLs are objects. So if URL was an interface, with two concrete implementations (one for servlet and one for portlet), URL manipulation would be very flexible and easy (e.g. addParameter, setAttribute etc), and rendering the URL as a String would be nothin

Re: [s2] Struts 2.0.7 Status

2007-03-10 Thread Nils-Helge Garli
I hope to be able to assist with the portlet plugin as well. On 3/10/07, James Mitchell <[EMAIL PROTECTED]> wrote: After nearly a 1 year hiatus to work on a JSF gig, my client has decided not to continue down the JSF route, and on a personal note, I couldn't be happier. I really hope JSF 1.2 do

Re: [s2] Struts 2.0.7 Status

2007-03-13 Thread Nils-Helge Garli
As long as the URL building has been refactored, or will be refactored at the same time, as discussed earlier, there shouldn't be anything stopping from extracting it as a plugin. Nils-H On 3/14/07, James Mitchell <[EMAIL PROTECTED]> wrote: Ok, I took the portlet app and added some pluto maven

Re: [s2] Localization (with portlets)

2007-03-14 Thread Nils-Helge Garli
In a portlet, the locale can be fetched from the PortletRequest object. There is a snippet of code in the Jsr168Dispatcher that does this. Also, check out http://www.jdocs.com/portlet/1.0/api/index.html?javax/portlet/PortletRequest.html Nils-H On 3/14/07, Paul Benedict <[EMAIL PROTECTED]> wrote:

Re: [s2] Struts 2.0.7 Status

2007-03-14 Thread Nils-Helge Garli
Mitchell The Ruby Roundup http://www.rubyroundup.com/ On Mar 14, 2007, at 3:02 AM, Nils-Helge Garli wrote: > As long as the URL building has been refactored, or will be refactored > at the same time, as discussed earlier, there shouldn't be anything > stopping from extracting it

Problems building locally

2007-03-20 Thread Nils-Helge Garli
Hi! I did a clean checkout of the struts 2 codebase, and tried to do a build. I get some test failures that seems to be related to cglib missing on the classpath. But the Bamboo server aparently doesn't have these problems. Are there some "post checkout" procedures I need to follow? Nils-H

Re: Problems building locally

2007-03-20 Thread Nils-Helge Garli
e: Is there a cglib folder in your local Maven repository? The build should install that for you. I deleted my cglib folder from the repository, and Maven downloaded it again. Maven is intended as a "one-stop shop" for us. -Ted. On 3/20/07, Nils-Helge Garli <[EMAIL PROTECTED]> wr

Re: Unittest - catch 22

2007-03-21 Thread Nils-Helge Garli
It's definetively a weakness in the tests, and illustrates how fragile unit testing with mock objects is. Even though testing of the debug logging might not be that interesting, these tests will proably have to be frequently updated when changes occur in the code they test. So my point of view is

Portlet plugin

2007-03-25 Thread Nils-Helge Garli
Hi! I want to start looking into moving the portlet support to a plugin, but need a little guidance to get started. - What is the status of refactoring the URL-building, as discussed in previous mail threads? - From what I understand, a "hook" for injecting a URL builder implementation from the

Re: Portlet plugin

2007-04-11 Thread Nils-Helge Garli
(request, response, context etc). It would most certainly reduce the amount of "almost duplicated" code needed to operate Struts in a portlet. Nils-H On 3/26/07, Ted Husted <[EMAIL PROTECTED]> wrote: The trunk is the correct place (we branched for 2.0.x). On 3/25/07, Nils-Hel

Re: [S2] Where's Waldo?

2007-05-18 Thread Nils-Helge Garli
Hi! I started the process of extracting the portlet code to a plugin, but the URL building abstraction has caused me a bit of a headache. There's a lot of logic spread around within the url and form components which I'm having a hard time figuring out. I'm wondering if it's easier just to create

Re: Portlet plugin

2007-06-11 Thread Nils-Helge Garli
API in the core. I have attached the files as patches to the JIRA ticket (https://issues.apache.org/struts/browse/WW-1645), since it needs a review and probably some discussion. Nils-H On 4/11/07, Nils-Helge Garli <[EMAIL PROTECTED]> wrote: I have started the process of moving the portlet

Re: Portlet plugin

2007-06-11 Thread Nils-Helge Garli
Thanks for the feedback! On 6/12/07, Tom Schneider <[EMAIL PROTECTED]> wrote: 1. I'm not sure the UrlRendererFactory is needed. I believe the whole purpose of guice is to not have anymore factories anymore, so guice should just inject the necessary UrlRenderer. (especially if they are statele

Re: Wrong window states - S2

2007-07-20 Thread Nils-Helge Garli
Hi! There's a discussion about this on the users list. You can follow the progress there. Nils-H On 7/20/07, Tracy12 <[EMAIL PROTECTED]> wrote: Hi, We use S2 to develop some portlets on uPortal (inside pluto). But for some reason these portlets return wrong window states to the server. For

Override interceptors in struts-default from plugin

2007-08-07 Thread Nils-Helge Garli
Hi! In the portlet plugin, I need to customize the workflow interceptors. So I have extended them, and added them to the struts-plugin file with the same names they have in struts-default. Unfortunately, this has not the desired effect. The interceptors from the struts-default package are still th

Re: Override interceptors in struts-default from plugin

2007-08-07 Thread Nils-Helge Garli
ptors, maybe with an extra attribute in the interceptor configuration syntax or something? Nils-H On 8/7/07, Don Brown <[EMAIL PROTECTED]> wrote: > Yes, I'd say you will need to redefine the stacks users of the portlet > plugin can use. > > Don > > On 8/7/07, Nils-Hel

Re: Override interceptors in struts-default from plugin

2007-08-07 Thread Nils-Helge Garli
access there? > > James > > > On Tue Aug 7 10:07 , 'Nils-Helge Garli' <[EMAIL PROTECTED]> sent: > > >Hm...that was not the answer I wanted ;) That's unecessary duplication > >of xml, and it requires manual synchronization of the interceptor > &

Re: Override interceptors in struts-default from plugin

2007-08-08 Thread Nils-Helge Garli
, the > wreck the confluence packages they extend. > > Don > > On 8/8/07, Nils-Helge Garli <[EMAIL PROTECTED]> wrote: > > I might have, if it's still hosted at opensymphony? If implemented, > > what do you feel would be the best way to do it? Override by default > &

Re: [OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 95 has FAILED (0 tests failed). Change made by nilsga

2007-08-09 Thread Nils-Helge Garli
Any idea what caused this error? Or was it just a "hiccup" on the build server? Nils-H On 8/9/07, Atlassian Open Source Bamboo Integration Server <[EMAIL PROTECTED]> wrote: > The project Struts 2 SVN - Main Build (Java 6) has the following 1 change by > 1 author: > > *nilsga* made the following

Re: Override interceptors in struts-default from plugin

2007-08-09 Thread Nils-Helge Garli
d could pass > it from the command line, and ultimately we removed the capability. > > -Ted. > > On 8/8/07, Nils-Helge Garli <[EMAIL PROTECTED]> wrote: > > YikesSounds like there's more than a simple fix needed... Maybe > > it's safer (for now, I'm pretty

Re: [OSS Bamboo] Struts 2 SVN - Main Build build 445 has FAILED (0 tests failed). Change made by apetrelli

2007-08-09 Thread Nils-Helge Garli
Yeah, I had something similar happening. But I didn't do anything, and it apparently resolved itself the next build. Nils-H On 8/9/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > What? I change code under "apps" and the plugin build fails? > Mmm... I think it is a bit strange. > Nils, I think t

Codebehind - ServletContext

2007-08-10 Thread Nils-Helge Garli
I'm trying out the codebehind stuff in a portlet with the portlet created by the maven struts2 portlet archetype. It used to work until I did some changes with initialization of the ServletContext in the portlet, and now all I get is: SEVERE: Could not execute actionjava.lang.RuntimeException: jav

Re: [s2] portlet code not using valuestack for looking up request attributes

2007-08-10 Thread Nils-Helge Garli
Hm...this might be a tricky one. The portlet spec says nothing about request wrappers, and trying to wrap the portlet requests might result in undetermined behaviour. I tried onece, with pluto, but pluto relies on it's internal implementation classes, so you'll get a classcastexception if it encoun

Re: [s2] portlet code not using valuestack for looking up request attributes

2007-08-11 Thread Nils-Helge Garli
specs (as the PreparatorServlet did). However, I'm not 100% sure if there will be any side effects, so I'll "mark" it as experimental to begin with. I'll create the JIRA issue and try it out. Nils-H On 8/11/07, Nils-Helge Garli <[EMAIL PROTECTED]> wrote: > Hm

Re: [s2] portlet redirectAction result-type doesn't work

2007-08-11 Thread Nils-Helge Garli
Glad to see that the fix for the request wrapper seems to work. The current "dispatcher" portlet result type handles "redirect after post" already, since it's basically how the the event/render portlet model works. So I guess we could just point the redirectAction result type to PortletResult as w

Re: [s2] portlets - another issue

2007-08-12 Thread Nils-Helge Garli
Hi James! It's great that you're really testing out the portlet support! By default, s:url (GET) is generating render urls, and s:form (POST) is generating action urls. For s:url, use the portletMode attribute and set it to "event" if you need to execute a link in the event phase. For s:form, you

Re: [s2] portlets - another issue

2007-08-12 Thread Nils-Helge Garli
It might be that it should be set to "action" instead of "event". It really reminds me that things need to be documented properly.... On 8/12/07, Nils-Helge Garli <[EMAIL PROTECTED]> wrote: > Hi James! > > It's great that you're really testing out th

Re: [s2] portlets - another issue

2007-08-12 Thread Nils-Helge Garli
I'm mixing things up. It's not the portletMode attribute, but the portletUrlType attribute that needs to be set. Sorry for the spamming On 8/12/07, Nils-Helge Garli <[EMAIL PROTECTED]> wrote: > It might be that it should be set to "action" instead of "e

Re: [s2] portlet 2.0 (JSR 286) support

2007-08-12 Thread Nils-Helge Garli
The major changes are: - In addition to the action and render phases, there's a new "event" phase where portlets can communicate. These events are subscribed and published using some sort of QName/XML naming feature, and receiving the events happen between the action and render phase. - A portlet

Re: [s2] portlet redirectAction result-type doesn't work

2007-08-14 Thread Nils-Helge Garli
valuestack on the session. Nils-H On 8/14/07, Rene Gielen <[EMAIL PROTECTED]> wrote: > Am So, 12.08.2007, 07:47, schrieb Nils-Helge Garli: > > Glad to see that the fix for the request wrapper seems to work. > > > > The current "dispatcher" portlet result type h

Re: svn commit: r566324 - in /struts/struts2/trunk: apps/portlet/src/main/webapp/WEB-INF/ plugins/portlet/src/main/java/org/apache/struts2/portlet/ plugins/portlet/src/main/java/org/apache/struts2/por

2007-08-15 Thread Nils-Helge Garli
Thanks for fixing the mistake, James. Nils-H On 8/16/07, James Holmes <[EMAIL PROTECTED]> wrote: > This commit was causing problems for me because of this code: > > @Inject("struts.portlet.dispatcherServletName") > public void setDispatcherServletName(String dispatcherServletName)

Re: weird reply

2007-08-16 Thread Nils-Helge Garli
I've started to get these as well...Probably get one now when I submit this one Do the emails still go through (guess I'll know if someones answer)? Nils-H On 8/15/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: > I always get it. I never thought I would spam myself :) > > musachy > > On 8

Re: [S2] [2.1.x] Bundled Plugins

2007-08-20 Thread Nils-Helge Garli
I couldn't fint the portlet plugin mentioned on the list of plugins for the different tiers. Where does it fit in? As a plugin developer, I would definetively see it as a motivation having the "Struts 2" brand on the plugin. Nils-H On 8/20/07, Don Brown <[EMAIL PROTECTED]> wrote: > Makes sense t

Re: [S2] [2.1.x] Bundled Plugins

2007-08-21 Thread Nils-Helge Garli
to be improved? I'm really interested in getting feedback on this. Nils-H On 8/21/07, Don Brown <[EMAIL PROTECTED]> wrote: > Although it is a lot of work, I'd too like to see the portlet plugin > in the first-tier list. > > Don > > On 8/21/07, Nils-Helge Garli <[EM

Re: [S2] [2.1.x] Bundled Plugins

2007-08-21 Thread Nils-Helge Garli
in in the core Struts 2 distribution and > project. Nils-H is actively maintaining it and I am > interested in maintaining it as well. > > James > > > On Tue Aug 21 1:43 , 'Nils-Helge Garli' <[EMAIL PROTECTED]> sent: > > >I couldn't fint the por

Re: struts2-tags in cwiki

2007-08-21 Thread Nils-Helge Garli
What's the status for this? Is it possible to "branch" the wiki, or do we create new pages and "deprecate" the old ones? Nils-H On 8/2/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: > I think it would be appropriate for 2.1 vs 2.0.x, +1 for it. > > musachy > > On 8/2/07, Don Brown <[EMAIL PROTECT

Re: Struts 2.0.10 versus 2.1.0

2007-08-22 Thread Nils-Helge Garli
Most CI servers have support for different "builders", such as Maven 2, Ant and custom .sh scripts. Is that what you're thinking of? Nils-H On 8/22/07, Musachy Barroso <[EMAIL PROTECTED]> wrote: > +1 on that. I just need to update the compressed javascripts which I > will do tomorrow. > > By the

Re: Struts 2.0.10 versus 2.1.0

2007-08-22 Thread Nils-Helge Garli
+1 For rolling a beta. There's a couple of issues with the portlet plugin that needs to be fixed, but nothing stopping a beta, I think. https://issues.apache.org/struts/browse/WW-2095 https://issues.apache.org/struts/browse/WW-1695 Nils-H On 8/22/07, James Holmes <[EMAIL PROTECTED]> wrote: > +++

Re: [jira] Reopened: (WW-2105, WW-2052)

2007-08-23 Thread Nils-Helge Garli
Are these issues re-opened because of the back-porting to 2.0.10, or because they do not work in trunk? Nils-H - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [jira] Reopened: (WW-2105, WW-2052)

2007-08-23 Thread Nils-Helge Garli
o check in. > When I'm done with checking in, I'll assign these issues back to you for > reviewing, if you don't mind. > > Regards, > Rene > > Am Do, 23.08.2007, 10:11, schrieb Nils-Helge Garli: > > Are these issues re-opened because of t

Re: [jira] Reopened: (WW-2105, WW-2052)

2007-08-23 Thread Nils-Helge Garli
ECTED]> wrote: > Done. > > Am Do, 23.08.2007, 10:50, schrieb Nils-Helge Garli: > > Great! I'll review them when you're done. > > > > Nils-H > > > > On 8/23/07, Rene Gielen <[EMAIL PROTECTED]> wrote: > >> Nils, > >> > >>

Re: [jira] Reopened: (WW-2105, WW-2052)

2007-08-24 Thread Nils-Helge Garli
> > Thanks again! > > Nils-H > > On 8/23/07, Rene Gielen <[EMAIL PROTECTED]> wrote: > > Done. > > > > Am Do, 23.08.2007, 10:50, schrieb Nils-Helge Garli: > > > Great! I'll review them when you're done. > > > > > > N

[S2] Struts tags for generating , and

2007-08-24 Thread Nils-Helge Garli
It would be nice having struts tags that generate the , and sections of the HTML page. These tags could have support for different "renderers", as the url and form tags have, that could be overriden in plugins like the portlet plugin. So when the tag runs in a regular servlet container, the tags

Re: [S2] Struts tags for generating , and

2007-08-30 Thread Nils-Helge Garli
> > Ted Husted wrote: > > Another good use for head or body tags might be to generate a JavaScript > > hook. > > > > A head tag could also inject the doctype redtape, that we might > > otherwise paste into every page. > > > > On 8/24/07, Nils-Helge Garli <[EM

Home for "orphan" maven artifact

2007-09-02 Thread Nils-Helge Garli
I have created a maven artifact to support running the pluto portlet container with the maven-jetty-plugin, and I was planning on using this in tutorials and archetypes for the portlet plugin. Anybody have suggestions on where to host this artifact? One solution would be to place it in my company'

Re: Home for "orphan" maven artifact

2007-09-03 Thread Nils-Helge Garli
Thanks, Wendy I'll figure out a suitable group id and try to upload it in time for the 2.1 release. Nils-H On 9/3/07, Wendy Smoak <[EMAIL PROTECTED]> wrote: > On 9/2/07, Nils-Helge Garli <[EMAIL PROTECTED]> wrote: > > > I have created a maven artifact to supp

Re: xwork groupId change

2007-09-11 Thread Nils-Helge Garli
I keep getting build failures saying maven can't find xwork 2.1-SNAPSHOT: [INFO] [ERROR] BUILD ERROR [INFO] [INFO] Failed to resolve artif

Re: Hold 2.0.10

2007-09-11 Thread Nils-Helge Garli
The portlet app should not be named struts2-portlet-branch... I tried fixing it in the branch, but the pom was updated by the release plugin, so I left it alone. The artifactId can safely be corrected to struts2-portlet. Nils-H On 9/12/07, Ted Husted <[EMAIL PROTECTED]> wrote: > On 9/11/07, Anton

[S2] - Portlet archetype

2007-09-16 Thread Nils-Helge Garli
Hi! The current struts 2 portlet archetype is using zero config and it is run as a servlet in jetty. Does anyone mind if I modify the archetype to use the new jetty-pluto stuff, and use regular xml configuration instead? Nils-H

Re: New Struts Committer -- Matt Raible

2007-09-22 Thread Nils-Helge Garli
Welcome Matt, Good to have you on board! Nils-H On 9/22/07, Ted Husted <[EMAIL PROTECTED]> wrote: > Please join us in welcoming Matt Raible as a new Struts committer. > > Over many years, Matt Raible has been one the most involved members of > our community, for Struts 1, Struts 2, and WebWork.

Re: [S2] - Portlet archetype

2007-09-30 Thread Nils-Helge Garli
I noticed that the struts2 archetypes has groupId=org.apache.struts. Shouldn't this be org.apache.struts2? Also, the version is 2.0.9-SNAPSHOT which doesn't follow the rest of the Struts 2 version numbering. Is this how it is supposed to be? Nils-H On 9/16/07, Nils-Helge Garli <[EM

Regarding portlet support

2006-05-08 Thread Nils-Helge Garli
vascript that is generated needs to be prefixed with a portlet container generated namespace to ensure uniqueness through out the generated portal page. This will be important to ensure a fully functional ajax support. Any comments or questions? Regards, Nils-Helge Garli - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Portlet App and Ant (was Re: Would like to remove Ant build from Struts 2)

2006-07-24 Thread Nils-Helge Garli
On 7/24/06, Don Brown <[EMAIL PROTECTED]> wrote: I'd love to be able to use a Maven plugin, like the Jetty one, to easily test the portlet w/o any extra installation. Using 'mvn jetty6:run-war" is just too handy. This is one of my many personal todo projects :) Don I believe the Pluto 1.1

Getting action extension from a class "outside" the container

2008-06-23 Thread Nils-Helge Garli Hegvik
Hi! I'm looking at WW-2622 and I need to get the configured action extension for the application. Is there a way to obtain this from a class that is not instantiated by the core container? Nils-H - To unsubscribe, e-mail: [EMAIL

Re: Getting action extension from a class "outside" the container

2008-06-23 Thread Nils-Helge Garli Hegvik
; submitted with. You can retrieve the ActionMapping either via the > ServetActionContext or the portlet dispatcher. > > Don > > On Mon, Jun 23, 2008 at 7:44 PM, Nils-Helge Garli Hegvik > <[EMAIL PROTECTED]> wrote: >> Hi! >> >> I'm looking at WW-2622 and

Re: Getting action extension from a class "outside" the container

2008-06-23 Thread Nils-Helge Garli Hegvik
to access the action extension property from the container in a way... Nils-H On Mon, Jun 23, 2008 at 2:56 PM, Nils-Helge Garli Hegvik <[EMAIL PROTECTED]> wrote: > Ok, so I have to look up the current executing action and it's action > mapping from the action context? I'

Re: Getting action extension from a class "outside" the container

2008-06-23 Thread Nils-Helge Garli Hegvik
Would it be safe to pass the instantiated object to the the inject method of the container? Just want to make sure that I won't step into some unfortunate side effects... Nils-H On Mon, Jun 23, 2008 at 9:55 PM, Nils-Helge Garli Hegvik <[EMAIL PROTECTED]> wrote: > After looking int

Bamboo - Broken build

2008-07-19 Thread Nils-Helge Garli Hegvik
The Struts 2 main builds are currently failing, complaining about a missing xwork 2.1.2-SNAPSHOT dependency. The change from build 883 to 884 when it started to fail was minor and I can't see how that should have caused the failure. I guess something has been removed from a repository somewhere...?

Re: Struts 2 archetypes

2008-08-23 Thread Nils-Helge Garli Hegvik
I'm guessing you have conflicting versions of the servlet api on the classpath. Try with debug logging enabled and take a look at the dependencies that are loaded. Nils-H On Sat, Aug 23, 2008 at 7:22 PM, Wendy Smoak <[EMAIL PROTECTED]> wrote: > Our user docs point to snapshots of the archetypes,

[S2] - Bamboo broken build

2008-08-31 Thread Nils-Helge Garli Hegvik
Had some problems with a failing test locally and looking at the Bamboo build, it appear to be broken there as well: http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN/latest It's the StaticContentTest that's failing. Looks like there's an issue with the prepare/execute filters. Nils-H --

[S2] - Bamboo broken build

2008-08-31 Thread Nils-Helge Garli Hegvik
Had some problems with a failing test locally and looking at the Bamboo build, it appear to be broken there as well: http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN/latest It's the StaticContentTest that's failing. Looks like there's an issue with the prepare/execute filters. Nils-H --

Re: [S2] - Bamboo broken build

2008-08-31 Thread Nils-Helge Garli Hegvik
Ok, I'll comment it out for now. On Sun, Aug 31, 2008 at 7:58 PM, Musachy Barroso <[EMAIL PROTECTED]> wrote: > yeah, jetty is throwing a NPE which it should not, we will probably have to > comment that test out for the moment. > > musachy > > On Sun, Aug 31, 2008

Re: [S2] - Bamboo broken build

2008-08-31 Thread Nils-Helge Garli Hegvik
Except I can't Only getting "No such host is known. (https://svn.apache.org)"... On Sun, Aug 31, 2008 at 11:46 PM, Nils-Helge Garli Hegvik <[EMAIL PROTECTED]> wrote: > Ok, I'll comment it out for now. > > On Sun, Aug 31, 2008 at 7:58 PM, Musachy Barroso

Re: svn commit: r691544 - /struts/struts2/trunk/apps/showcase/src/test/java/it/org/apache/struts2/showcase/staticcontent/StaticContentTest.java

2008-09-03 Thread Nils-Helge Garli Hegvik
Seems like there's more build problems: [INFO] [ERROR] BUILD ERROR [INFO] [INFO] Failed to resolve artifact. GroupId: com.opensymphony ArtifactId: xwor

[S2] - Bamboo S2 Main Build still failing

2008-09-17 Thread Nils-Helge Garli Hegvik
It looks like there's still problems with a missing xwork snapshot artifact in the local maven repository used in the build. Does anyone know how to fix this? If someone tell me how and I have the right permissions I'd be happy to resolve the issue myself. Nils-H -

Re: [S2] - Bamboo S2 Main Build still failing

2008-10-19 Thread Nils-Helge Garli Hegvik
re, but I can't seem to reproduce this on my local machine. It would be nice to get the build going again. It has been red for a long while now. Nils-H On Wed, Sep 17, 2008 at 9:50 AM, Nils-Helge Garli Hegvik <[EMAIL PROTECTED]> wrote: > It looks like there's still prob

Change in ParameterAware

2008-11-09 Thread Nils-Helge Garli Hegvik
A bit old, but what was the reason for changing the parameter of setParameters in the ParameterAware interface from Map? Nils-H - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Drop J4 support, was: Re: release process

2008-11-16 Thread Nils-Helge Garli Hegvik
I though this had been decided already, but +1 for dropping it in 2.1 and keeping it in 2.0.x. Nils-H On Sun, Nov 16, 2008 at 10:44 PM, Rene Gielen <[EMAIL PROTECTED]> wrote: > +1 for dropping in 2.1, along with keeping it in 2.0.X > > Rainer Hermanns schrieb: >> >> I'd vote with +1 for dropping

Re: Struts2's filter architecture vs. J2EE UserTransactions - problem with J2EE spec?

2008-11-23 Thread Nils-Helge Garli Hegvik
Interesting question. I don't have an answer, and I'm certainly no JEE spec expert, but I've been trying to do some research. From what I understand, this restriction exists because there's no guarantee that the filter and the service method of the servlet it filters executes in the same thread. Ho

Re: Display String in line by line in s:textarea

2008-11-24 Thread Nils-Helge Garli Hegvik
Please ask user questions on the Struts user mailing list. The dev list is for the development of the Struts framework itself. Nils-H On Tue, Nov 25, 2008 at 7:29 AM, Nishna <[EMAIL PROTECTED]> wrote: > > Hi All, > > I am getting string from database. I want to display the string line > by

Re: [VOTE] Struts 1.3.10 Quality

2008-12-04 Thread Nils-Helge Garli Hegvik
> [ X ] General Availability (GA) Nils-H - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Dynamic add new properiest file with languages

2008-12-04 Thread Nils-Helge Garli Hegvik
Please ask user questions on the Struts user mailing list. The dev list is for the development of the Struts framework itself. http://struts.apache.org/mail.html Nils-H On Thu, Dec 4, 2008 at 11:42 AM, integral_ua <[EMAIL PROTECTED]> wrote: > > Hello, > I have the Struts app with several propert

Re: [OSS Bamboo] Struts 2 SVN - Main Build build 953 has FAILED (0 tests failed). Change made by Nils-Helge Garli Hegvik

2008-12-09 Thread Nils-Helge Garli Hegvik
This one seems to fail now and then. Any ideas why? Nils-H > > [INFO] Failed to resolve artifact. > > Missing: > -- > 1) jfree:jcommon:jar:1.0.14 > > Try downloading the file manually from: > http://www.jfree

Re: [OSS Bamboo] Struts 2 SVN - Main Build build 953 has FAILED (0 tests failed). Change made by Nils-Helge Garli Hegvik

2008-12-10 Thread Nils-Helge Garli Hegvik
een that one before. > > On Tue, Dec 9, 2008 at 2:28 PM, Nils-Helge Garli Hegvik > <[EMAIL PROTECTED]> wrote: >> This one seems to fail now and then. Any ideas why? >> >> Nils-H >> >>>

Re: Nested-tag support

2008-12-11 Thread Nils-Helge Garli Hegvik
> > The s:form equivalent of the nested-example above should be something like: > > > > > > > Wouldn't to the trick? Nils-H - To unsubscribe, e-mail: dev-unsubscr...@struts.ap

Re: Nested-tag support

2008-12-11 Thread Nils-Helge Garli Hegvik
nguages > (Pascal? VB?) > > musachy > > On Thu, Dec 11, 2008 at 4:42 PM, Nils-Helge Garli Hegvik > wrote: >>> >>> The s:form equivalent of the nested-example above should be something like: >>> >>> >>> >>

Re: Nested-tag support

2008-12-11 Thread Nils-Helge Garli Hegvik
As mentioned, I realized that just _after_ pressing the send button, so please ignore my ignorance ;) Nils-H On Thu, Dec 11, 2008 at 11:18 PM, Ronny Løvtangen wrote: > > On Dec 11, 2008, at 10:42 PM, Nils-Helge Garli Hegvik wrote: > >>> >>> The s:form equivalent

Re: Nested-tag support

2008-12-11 Thread Nils-Helge Garli Hegvik
Didn't get that far... Couldn't get past requirement a) of part one ;) Nils-H On Thu, Dec 11, 2008 at 11:46 PM, Andreas Joseph Krogh wrote: > On Thursday 11 December 2008 23:40:51 Ronny Løvtangen wrote: >> >> On Dec 11, 2008, at 11:21 PM, Nils-Helge Garli Hegvik wrote

Re: Dispatcher encoding and locale bug still not fixed

2008-12-17 Thread Nils-Helge Garli Hegvik
I assume this is the same as https://issues.apache.org/struts/browse/WW-2361? I'm not sure what the original semantics behind the "defaultEncoding" or the "struts.i18n.encoding" setting is, but I agree that it looks suspicious... Could you create a patch and attach it to the issue? Nils-H On Wed

Re: Fw: [OSS Bamboo] Struts 2 SVN - Main Build build 963 has FAILED (0 tests failed). Change made by Musachy Barroso

2008-12-17 Thread Nils-Helge Garli Hegvik
Has anyone tried to clean jfree from the repository that the bamboo build is using? Don't know why it should help, but sometimes it does... maybe som corrupted metadata or something. Nils-H On Wed, Dec 17, 2008 at 11:04 PM, Nils-Helge Garli Hegvik wrote: > Yeah > > On Wed, D

Re: Fw: [OSS Bamboo] Struts 2 SVN - Main Build build 963 has FAILED (0 tests failed). Change made by Musachy Barroso

2008-12-17 Thread Nils-Helge Garli Hegvik
Yeah On Wed, Dec 17, 2008 at 10:16 PM, Dave Newton wrote: > *grr* > > What's the deal w/ jfree? > > --- On Wed, 12/17/08, bam...@apache.org wrote: > From: bam...@apache.org > Subject: [OSS Bamboo] Struts 2 SVN - Main Build build 963 has FAILED (0 tests > failed). Change made by Musachy Bar

Re: tiles and portlet tickets

2008-12-20 Thread Nils-Helge Garli Hegvik
I know portlets, but I'm not that familiar with tiles... I need some input from someone who does until I know what to fix... Nils-H On Fri, Dec 19, 2008 at 9:58 PM, Musachy Barroso wrote: > I agree. If nobody can take care of them at the moment, then lets > re-schedule them > > musachy > > On Fr

Re: tiles and portlet tickets

2008-12-20 Thread Nils-Helge Garli Hegvik
Would the problem go away if it did? On Sat, Dec 20, 2008 at 11:24 AM, Antonio wrote: > 2008/12/19 Musachy Barroso : >> can someone with either porltets or tiles experience look into them? > > I can help "externally" since I know about Tiles but almost nothing > about Struts 2. > I think the bigg

Re: Dojo plugin proposal(my last one I promise)

2008-12-20 Thread Nils-Helge Garli Hegvik
+1 Den 20. des.. 2008 kl. 19.27 skrev "James Holmes" : +1 and agree with Dave on moving the Dojo stuff into a plugin that is hosted somewhere else and can be maintained by more people. On Sat, Dec 20, 2008 at 11:38 AM, Dave Newton wrote: --- On Sat, 12/20/08, Musachy Barroso wrote:

Re: java tags proposal

2008-12-20 Thread Nils-Helge Garli Hegvik
+1 Nils-H Den 20. des.. 2008 kl. 19.24 skrev "Musachy Barroso" : As mentioned on the other thread I's like to propose to move the java tags out of the sandbox into the core plugins bundled with the distribution, so they will be part of the 2.1 release. here is +1 musachy -- "Hey you! Woul

Re: java tags proposal

2008-12-21 Thread Nils-Helge Garli Hegvik
Didn't we have a discussion earlier on extracting the base tags into a plugin? Is that still something to consider? Nils-H On Sun, Dec 21, 2008 at 1:29 PM, Don Brown wrote: > Neat, I'm glad to see work finally being done on the tags. What > exactly would this mean for 2.1 and 2.2? Would this b

Re: tiles and portlet tickets

2008-12-21 Thread Nils-Helge Garli Hegvik
at we postpone these issues until someone else who does can look at them. Nils-H On Sat, Dec 20, 2008 at 11:44 AM, Antonio wrote: > 2008/12/20 Nils-Helge Garli Hegvik : >> Would the problem go away if it did? > > Do you mean incompatibility? Probably. > But, if I was you, I woul

Re: [OSS Bamboo] Struts 2 SVN - Main Build build 973 has FAILED (0 tests failed). Change made by Nils-Helge Garli Hegvik

2008-12-21 Thread Nils-Helge Garli Hegvik
Argh... I'm getting tired of this failure On Sun, Dec 21, 2008 at 8:30 PM, wrote: > STRUTS-MAIN-973 failed. > Code has been updated by Nils-Helge Garli Hegvik. > No failed tests found, a possible compilation error. > Code Changes See full change details > Nils-Helge Ga

Re: Struts 2.1.3 Quality - Freemarker/Sitemesh plugin issue

2008-12-28 Thread Nils-Helge Garli Hegvik
You can also get the individual project artifacts from the build server for each successful build. Nils-H On Sun, Dec 28, 2008 at 7:14 PM, Wes Wannemacher wrote: > There is something here - > > http://people.apache.org/builds/struts/nightlies/2.x/ > > I'm not sure who/how it's generated, and it

Re: [VOTE] Struts 2.1.6 Quality

2009-01-10 Thread Nils-Helge Garli Hegvik
I haven't clicked through the entire showcase app before, so I'm not sure if some of the "view sources" links doesn't show any configuration or "java action" source? Also, the MailReader link on the "home" page seems broken. Other than that, everything seems to work fine (token examples too), excep

Re: Stream Result

2009-01-16 Thread Nils-Helge Garli Hegvik
Please ask this question on the Struts user mailing this; the Struts dev list is for the development of Struts itself. http://struts.apache.org/mail.html Nils-H On Fri, Jan 16, 2009 at 7:26 PM, Miguel wrote: > Hello, > I have a little problema using a Stream Result. I don't understand how > to

Re: Call another website when we click Link

2009-01-23 Thread Nils-Helge Garli Hegvik
Please ask this question on the Struts user mailing this; the Struts dev list is for the development of Struts itself. One little tip: When posting a question to the user list, please include as much relevant information as possible. http://struts.apache.org/mail.html Nils-H On Fri, Jan 23, 200

Re: New struts2-blank and docs

2009-02-02 Thread Nils-Helge Garli Hegvik
I'm planning on preparing a release of the portlet archetype, so I'm wondering about the same thing. Do the archetypes need a vote first? Nils-H On Mon, Feb 2, 2009 at 3:02 PM, Dave Newton wrote: > How do I get this to a repo, anyway? > > Dave > > Dave Newton wrote: >> >> I've checked in a (most

Re: Xwork Question - how to Inject another instance than default

2009-02-05 Thread Nils-Helge Garli Hegvik
I'm curious, why do you need a custom URL builder for Liferay? Nils-H On Thu, Feb 5, 2009 at 9:12 PM, Torsten Krah wrote: > Hi. > I did some rework to the struts2-portlet2-plugin to make it possible to hook > in a custom URLBuilder. > > I declared a default one like this: > > class="Default" />

Re: getting ready for 2.1.7

2009-03-17 Thread Nils-Helge Garli Hegvik
I'll try to allocate some time to help out as well. Nils-H On Tue, Mar 17, 2009 at 2:17 PM, Musachy Barroso wrote: > I think it is time for cleaning up some 2.1.7 bugs and get a release > out. We will need to release xwork first, Rene or Rainer, any free > time on your hands? Is anyone working o

Re: Xwork - missing StringUtils

2009-03-23 Thread Nils-Helge Garli Hegvik
I'm having a similar problem, only with TextUtils. The Hudson build complains about the same issue. Nils-H On Mon, Mar 23, 2009 at 11:39 PM, Lukasz Lenart wrote: > Hi, > > I'm not able to run any test from IDEA, project is missing > StringUtils. It's probably related to Maven Shade plugin, but h

Re: Xwork - missing StringUtils

2009-03-24 Thread Nils-Helge Garli Hegvik
Ahyes, that was Struts 2 :) XWorks compiles fine with me (at least it did yesterday). Nils-H On Tue, Mar 24, 2009 at 12:12 PM, Lukasz Lenart wrote: > 2009/3/24 Nils-Helge Garli Hegvik : >> I'm having a similar problem, only with TextUtils. The Hudson build >> complains

XWork - Overriding interceptors in sub package (XW-554)

2009-04-09 Thread Nils-Helge Garli Hegvik
I would like a feature in XWork that allows sub packages to override interceptors in the interceptor stacks (http://jira.opensymphony.com/browse/XW-554). What I want is that if I define an interceptor in a package with a name that already exists in parent packages, I want all the stacks that are us

  1   2   >