Re: T5: Ioc @Inject @Value

2007-06-29 Thread Robin Ericsson

On 6/29/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:

If i remember correctly, a value that can't be resolved should cause a
runtime error; just in case, check the console. It may be that the
acegi.check.url symbol couldn't be resolved.


Yes, correctly, using this, the code works, changing the value to
something non-existing gives me a runtime error:
public class LoginPage {
   @Inject
   private SymbolSource symbolSource;

   @Inject
   private Request request;

   public String getLoginCheckUrl() {
   return request.getContextPath() +
symbolSource.expandSymbols("${acegi.check.url}");
   }
}

Doing the same thing with @Inject @Value, I don't get a runtime error
when entering a non-existing value.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5: Ioc @Inject @Value

2007-06-29 Thread Robin Ericsson

On 6/29/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:

My guess is that you are injecting in a base class, but the base class
is not in the correct directory.  Base classes for pages and
components must be in the .base package (alongside .pages and
.components).


No, no base class, it's a simple page. The complete class looks like this:
package nu.localhost.tapestry5.acegi.example.pages;

import org.apache.tapestry.annotations.Inject;
import org.apache.tapestry.ioc.annotations.Value;
import org.apache.tapestry.services.Request;

public class LoginPage {
   @Inject @Value("${acegi.check.url}")
   private String checkUrl;

   @Inject
   private Request request;

   public String getLoginCheckUrl() {
   return request.getContextPath() + checkUrl;
   }
}


--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5: Ioc @Inject @Value

2007-06-29 Thread Robin Ericsson

On 6/29/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:

It should be exactly the same.


Ok, then something is wrong :).

I'm getting null, so where should I investigate? @Inject or @Value?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



T5: Ioc @Inject @Value

2007-06-29 Thread Robin Ericsson

Hi,

Is this a bug or am I just using it wrong? I thought

   @Inject @Value("${my.parameter}")
   private String parameter;

would be the same as:

   @Inject
   private SymbolSource symbolSource;

   symbolSource.expandSymbols("${my.parameter}");

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5: Will it be a full stack framework?

2007-06-27 Thread Robin Ericsson

On 6/27/07, Ivan Dubrov <[EMAIL PROTECTED]> wrote:

Of course. I thought making something like tapestry-security module, but
now I'm completely out of time to do it.


Ok, I've checked out the code from you SVN so I'll poke around a bit.
Anything specific that's not working? Listerner methods isn't a big
deal for me at the moment :)

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5: Will it be a full stack framework?

2007-06-26 Thread Robin Ericsson

On 6/27/07, Ivan Dubrov <[EMAIL PROTECTED]> wrote:

There is some chaotic code which is available in the SVN repo here:
http://atlas.wfrag.org/svn/trunk/atlas-security/


Ah, real nice, I was working on this as well, but I've just got time
to work on it and now I don't have to. :)

Can you put this together as a maven package or something?


It adds support for @Secured for the pages and components. However, it
does not work for listener methods since I didn't found a way to extend
method with "around" code (which is executed at the beginning and at the
end.). Only "after" was available (ClassTransformation#extendMethod).


Maybe Howard is on this one already?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5: class workers and method workers

2007-06-19 Thread Robin Ericsson

On 6/19/07, Robin Ericsson <[EMAIL PROTECTED]> wrote:

On 6/19/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:
> They're a bit different in T5, it's now ComponentClassTransformWorker:
>
> 
http://tapestry.apache.org/tapestry5/tapestry-core/apidocs/org/apache/tapestry/services/ComponentClassTransformWorker.html
>
> it's a bit different ... it's all about transforming the bytecode as
> it is loaded.

Ok, maybe I'm looking from the wrong direction, I want to add a few
methods if the class is annotated with a specific annotation, but I'm
all lost in the new ioc.


Or maybe I'm even more lost :-). Maybe there is an even niftier way of
doing this, I'm trying to implement support for acegis @Secured
annotation on class and method level.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5: class workers and method workers

2007-06-19 Thread Robin Ericsson

On 6/19/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:

They're a bit different in T5, it's now ComponentClassTransformWorker:

http://tapestry.apache.org/tapestry5/tapestry-core/apidocs/org/apache/tapestry/services/ComponentClassTransformWorker.html

it's a bit different ... it's all about transforming the bytecode as
it is loaded.


Ok, maybe I'm looking from the wrong direction, I want to add a few
methods if the class is annotated with a specific annotation, but I'm
all lost in the new ioc.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



T5: class workers and method workers

2007-06-18 Thread Robin Ericsson

Hi,

I'm looking for the ClassWorkers and ModuleWorkers enhancement from
T4. Are they yet to be found in T5?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5 XHTML compliant markup

2007-06-18 Thread Robin Ericsson

On 6/18/07, Martin Grotzke <[EMAIL PROTECTED]> wrote:

Hi,

T5 currently renders markup that is not XHTML compliant.


Yes and no.


E.g. the element '' is rendered as '' - the tag is not closed
properly.

Is there any way to force T5 to generate XHTML compliant markup?


If your template uses HTML (SGML) markup, T5 generates HTML markup, if
your template uses XHTML, T5 generates XHTML. See previous posts on
this list.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: coding style/standard

2007-06-14 Thread Robin Ericsson

On 6/14/07, Daniel Jue <[EMAIL PROTECTED]> wrote:

Here I am assuming you mean the way to write code, not the project layout.


That's right :-)


I would take a look at the source or given examples for the Tapestry
version you are using.  T5 is pretty nice with all that boilerplate
code removed from our code, and less need to extend from Tapestry
classes.

If you take a look at the wiki, there should be some example code in there.


I was more looking for something like "If you want to contribute to
this project use this and that". However, I've just realized that
Howard have checked the .settings from Eclipse into svn, I guess that
is good enough for me :)

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



coding style/standard

2007-06-14 Thread Robin Ericsson

Hi,

is there a public tapestry coding style around? Or maybe ASF have a
general java project one?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: T5: "full" Acegi integration

2007-05-30 Thread Robin Ericsson

On 5/31/07, Joshua Jackson <[EMAIL PROTECTED]> wrote:

Shall we migrate the tapestry-acegi to T5?


I haven't got time to start yet, I would use tapestry-acegi as a base
for it thought.

Maybe James have T5 plans for tapestry-acegi?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: URGENT: Where are hivemind 1.1.1 sources

2007-05-30 Thread Robin Ericsson

On 5/30/07, Jan Vissers <[EMAIL PROTECTED]> wrote:

Hi,

I'm desperately looking for the sources of hivemind 1.1.1
I can find a tagged 1.1 version, and the trunk is 1.2.1 - or so the pom
suggests

Where is 1.1.1?


Included in the distribution tarball?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Announcement: HiberTapestry: Hibernate integration for Tapestry-IoC (T5)

2007-05-25 Thread Robin Ericsson

On 5/25/07, Jun Tsai <[EMAIL PROTECTED]> wrote:

Where to find the source?

not open source?


Can you read?


2007/5/25, Thiago H de Paula Figueiredo <[EMAIL PROTECTED]>:
> same of Tapestry, Apache License 2. I have not uploaded the sources yet,
> but I plan to do it soon.


--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: 5.0.5-SNAPSHOTS

2007-05-17 Thread Robin Ericsson

On 5/17/07, sun <[EMAIL PROTECTED]> wrote:

Howard Lewis Ship  gmail.com> writes:

>
> I've  been making a number of important T5 bug fixes; I've just uploaded the
> latest snapshots to http://people.apache.org/~hlship/tapestry-repository/
>
> Feedback is always welcome!
>
T5.0.5 did not solve the problem of Chinese


First of all, this is not the final 5.0.5 release, it's a snapshot.

Second, give it a rest, Howard is working hard on T5, he will fix your
issue sooner or later. If it's really that important maybe should give
it a try yourself? The code is available.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



T5: "full" Acegi integration

2007-05-16 Thread Robin Ericsson

Hi,

I saw the previous post about an integration of Acegi, however, what
I'm looking for is a full  integration much like "tapestry-acegi",
most important that the @Secured annotation works.

Is there any work in this area or should I go for it myself?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: JavaFX

2007-05-10 Thread Robin Ericsson

On 5/10/07, Bill Holloway <[EMAIL PROTECTED]> wrote:

Oh, wait a minute...here's a possible purpose:  You HAVE to use
NetBeans to develop it!  (At least for now).


No, there is an Eclipse plugin available.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Web stats

2007-04-26 Thread Robin Ericsson

On 4/26/07, Malin Ljungh <[EMAIL PROTECTED]> wrote:

Hi,

I have Tap app on an external host. I can get web stats genereated by
Webalizer - but stat says I have 100 % traffic to a single page - /app
This is true of course but not very  exciting reading for me...

Is there anything I can do about this?


Use of friendly urls should help. And/or use another tool that can
parse url-parameters and provide statistics for them.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: I thought this was a newsgroup about Tapestry ;-)

2007-03-27 Thread Robin Ericsson

On 3/27/07, Jan Vissers <[EMAIL PROTECTED]> wrote:

Is it me, or is the amount of maven related posts steadily growing

I hope T5 will not be dependent on Maven, or will it?


Development of, currently yes.
Development with, currently no.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: tapestry-acegi for basic auth only?

2007-03-19 Thread Robin Ericsson

On 3/19/07, Phillip Rhodes <[EMAIL PROTECTED]> wrote:


From my understanding of tapestry-acegi 
(http://www.carmanconsulting.com/tapestry-acegi/) , it appears to support basic 
authentication, not form-based or other types of authentication.

Can someone confirm my view?


Confirmed. Although I have form-based authentication working. James
wanted to integrate this into tapestry-acegi but I haven't heard
anything from him since.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Acegi and Visit object

2007-01-22 Thread Robin Ericsson

On 1/22/07, Jesper Zedlitz <[EMAIL PROTECTED]> wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jesper Zedlitz wrote:
> I am still working on a solution for form based login.
>
Here is my first attempt for a form based login:
http://wiki.apache.org/tapestry/AcegiSpringJava5FormBased

I am sure you have some ideas how to improve it. It has only been tested
with GET requests, yet.


I've have a working form based login (also see previous threads). I've
sent them to James for inclusion in tapestry-acegi, but I guess he is
svamped at the moment.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Acegi and Visit object

2007-01-22 Thread Robin Ericsson

On 1/22/07, andyhot <[EMAIL PROTECTED]> wrote:

jake123 wrote:
> Hi James,
> You have to excuse me but I am on my first time on integrating tapestry and
> acegi. So I might have some question that is obvious for others...
>

again, simply follow http://wiki.apache.org/tapestry/AcegiSpringJava5


This can also be done with hivemind.xml and not applicationContext.xml
from Spring if you are not using Spring for anything else. See a few
of my previous posts regarding Acegi.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Developing rich GUI apps The Tapestry way

2006-11-21 Thread Robin Ericsson

On 11/20/06, pepone. onrez <[EMAIL PROTECTED]> wrote:

I don't try it yet but  use same applications developed with it, I
preefer Qt-4 for reach Ui applications rather than Java


Then you should check out the new Qt4 java package. :)

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: RE: Question about Tapestry 5.0

2006-11-21 Thread Robin Ericsson

On 11/21/06, Payne, Matthew <[EMAIL PROTECTED]> wrote:

Given that 4.1 will not be out till spring 2007.  Count on 2 or more years.
Though I hope I'm wrong.


Tapestry 4.1 != Tapestry 5, it's not even the same codebase. Think of
them as two different frameworks that looks very similar and have the
same name :)

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: Re: tapestry-acegi questions

2006-11-16 Thread Robin Ericsson

On 11/14/06, Robin Ericsson <[EMAIL PROTECTED]> wrote:

Hmm, no, never though of that, might be a good idea though. I'll see
if I have time to try this today.


Ok, debugged and problem found. Safari seems to like to cache the
result of the first query to the protected page.

I was using a proxy called Charles (really good app btw) and when
disable caching the result to the browser contained header "Expires:
0". Probably it's just that easy to add that header manually when
redirecting from protected page to login page, I'll try that another
time.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: tapestry-acegi questions

2006-11-14 Thread Robin Ericsson

On 11/14/06, James Carman <[EMAIL PROTECTED]> wrote:

Oh, sorry, Robin.  I read your last email, but only through the
"thanks, I've got it working" part. :-)  I didn't see the questions at
the bottom.  Do you have something that will let you debug the HTTP
traffic?  That might help you see what's going on for sure.


Hmm, no, never though of that, might be a good idea though. I'll see
if I have time to try this today.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: tapestry-acegi questions

2006-11-14 Thread Robin Ericsson

On 11/12/06, Robin Ericsson <[EMAIL PROTECTED]> wrote:

Thanks to James again :), I have a working solution that redirects
after successful login. However, on Firefox it works like a charm, but
on Safari it doesn't work as it seems it doesn't process cookies or
something the same way.


Maybe I should take this to Acegi directly instead?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: tapestry-acegi questions

2006-11-12 Thread Robin Ericsson

On 11/10/06, James Carman <[EMAIL PROTECTED]> wrote:

You could use a callback somehow to do that, I would think.  But, you
would probably have to implement the auto-redirect-to-login-page logic
yourself, so that you could save the callback into the session or set
it on the login page as a property or something.


Thanks to James again :), I have a working solution that redirects
after successful login. However, on Firefox it works like a charm, but
on Safari it doesn't work as it seems it doesn't process cookies or
something the same way.

Firefox:
anon: securedpage -> login redirect
anon: login successful -> securepage redirect
loggedin: securepage

Safari
anon: securedpage -> login redirect
anon: login successful -> securepage redirect
still anon: securepage -> login redirect
loggedin: when landing on login page

My authenticationProcessingFilter looks like this.
http://pastebin.com/822425

The attemptAuthentication(String, String) is called from my tapestry
listener. Maybe I need to flush the http response or something? Or
maybe I need to tell tapestry to step processing?


--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



object injection and class cast

2006-11-11 Thread Robin Ericsson

Hi,

This is really a hivemind question, but it's my tapestry usage that
probably is wrong :)

My service looks like this:
   
   
   



   
   
   

I inject it in tapestry like this:
@InjectObject("service:bwatch.FormProcessingFilter")
public abstract Filter getProcessingFilter();

But when I cast it to my class which I know it is, I get a ClassCastException.
FormProcessingFilter filter = (FormProcessingFilter) getProcessingFilter();

What am I doing wrong and how should I solve it? :)

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: tapestry-acegi questions

2006-11-10 Thread Robin Ericsson

On 11/3/06, James Carman <[EMAIL PROTECTED]> wrote:

Maybe you could just create your own Tapestry form (just like you do
for any other page) and submit it.  Within the form's processing, you
could use the Acegi API
(SecurityContextHolder.getContext().setAuthentication() maybe?) to set
up the security context, authenticating however you want.  The
HttpSessionContextIntegrationFilter will take care of storing it in
the session for you so that each subsequent request will be
authenticated.  I should maybe look at integrating the "remember me"
stuff into the pipeline.  I could create a special module called
tapestry-acegi-rememberme or something so that you could just drop in
a jar to allow "remember me" services.


I came around to the same thing after looking at the Acegi basic auth
code. I'm doing something like this.

@InjectObject("service:hivemind.acegi.AuthenticationManager")
public abstract AuthenticationManager getAuthenticationManager();

public void doLogin()
{
 UsernamePasswordAuthenticationToken authRequest = new
UsernamePasswordAuthenticationToken( getEmail(), getPassword() );
 Authentication authResult;

 try {
   authResult = getAuthenticationMananger().authenticate( authRequest );
 } catch( AuthenticationException failed ) {
   SecurityContextHolder.getContext().setAuthentication( null );
   return;
 }

 SecurityContextHolder.getContext().setAuthentication( authResult );
}

The only think I have left is to figure out how to redirect back to
the original page where the user was at the time the authentication
was wanted. Is that saved somewhere or do I need to find out that for
my self?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: tapestry-acegi questions

2006-11-01 Thread Robin Ericsson

On 11/1/06, Jesper Zedlitz <[EMAIL PROTECTED]> wrote:

When I try to access a secured page it works fine and I get to the login
page. After submitting the login form I will be redirected
to /j_acegi_security_check
But how do I wire this URL to Acegi?


This is where I am too. I was thinking of inject the
AuthenticationManager (defined in hivemind-acege) and plug it directly
into that.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: tapestry-acegi questions

2006-10-30 Thread Robin Ericsson

On 10/30/06, Gareth <[EMAIL PROTECTED]> wrote:

hi,

I'm using the TableView component on what can be visulised as a search page.


Hi,

Please don't steal other threads with a new question.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: tapestry-acegi questions

2006-10-29 Thread Robin Ericsson

On 10/29/06, James Carman <[EMAIL PROTECTED]> wrote:

Hi, Robin.  I haven't implemented form-based authentication in
tapestry-acegi, yet.  But, I don't think it's that difficult, really.
Your need to use the AuthenticationProcessingFilter (I don't define it
in my hivemodule.xml, but it would be easy to do so in yours) and your
form has to have two fields named "j_username" and "j_password" and it
should post to "j_acegi_security_check."  The filter will pick up that
request and handle it.  You would override the symbol
"tapestry.acegi.authenticationProcessingFilter" to point to your
authentication filter (like it does by default with the HTTP BASIC
filter).  If you get it working, feel free to email me snippets from
your hivemodule.xml and I'll make sure I include it in the default one
so that everyone can benefit.  If I were going to do it, I'd make sure
that the URL (j_acegi_security_check) is configurable as a symbol,
also.  We'd want a cool way to set up the URLs and stuff, too.  Good
luck and keep us posted!


Ok, seems fine. Another easy question though, how do I post to
j_acegi_security_check, tapestry overrides action field?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



tapestry-acegi questions

2006-10-29 Thread Robin Ericsson

Hi,

There still isn't any tapestry-acegi specific list is there?

What I like is to have is to use a webpage for login instead of http
basic auth. However, after checking the source of tapestry-acegi it
seems like a monster to accomplish based on that I know practially not
much at all about acegi :)

The other question might be easier though? I'd like to be able to
specific a webpage where to be directed to, when pressing cancel on
the basic auth dialog. Currently this just stays as the previous page.

I can certainly try to do this on my own, but I probably need a few
hinters on the way :)

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Thoughts about performance monitoring in Tapestry

2006-10-10 Thread Robin Ericsson

On 10/9/06, Mark Stang <[EMAIL PROTECTED]> wrote:

Try JProfiler.  It can track where you application is spending all of its time. 
 One thing that came up earlier is that OGNL is a hog.  However, we haven't 
found Tapestry to be the issue, but the rest of the app...


For simple expressions, try tapestry-prop, which compiles into java
bytecode instead of reflection that ognl relies on.

http://howardlewisship.com/tapestry-javaforge/tapestry-prop/

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Class library visibility issues with Maven in Eclipse.

2006-10-09 Thread Robin Ericsson

On 10/9/06, Leo Sakhvoruk <[EMAIL PROTECTED]> wrote:

I've tried setting up Jetty to be used via Maven and I'm having trouble
getting Jetty to start. I can't seem to get a hold of that TimeTracker
pom as the link on the tapestry site takes me to an empty page. Is there
a chance you could provide a link to TimeTracker so I can take a look at
it's pom file Jesse?


http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-examples/TimeTracker/pom.xml?view=markup

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: tapestry-acegi anon svn

2006-10-01 Thread Robin Ericsson

On 9/20/06, Robin Ericsson <[EMAIL PROTECTED]> wrote:

Hi,

Couldn't find a specific list for tapestry-acegi so I post this here.
I can't seem to access the anonymous svn repository. All I can find is
that I should use anonymous/anon, but that doesn't seem to work.


I just want to give notice that anon svn now works on tapestry javaforge.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: What does your project directory structure look like?

2006-09-22 Thread Robin Ericsson

On 9/22/06, D&J Gredler <[EMAIL PROTECTED]> wrote:

There's a Maven2 Eclipse plugin (http://maven.apache.org/eclipse-plugin.html)
that will read your pom.xml (Project Object Model) and auto-update the
Eclipse build path for the project. There's even an option to have it
download the source code for all the dependencies (for easier debugging),
but I've found that most projects haven't started posting source bundles
yet.


Yes, I've found that.


As far as running the app, I used to use the Sysdeo Tomcat plugin, but I'm
slowly migrating to using the Jetty Maven2 plugin. On the commandline you do
"mvn jetty:run" and if you have it set up right it'll watch for changed
files and pick them up automatically. Combine this with disabling the
Tapestry caches, and you're good to go. Josh Long was the one that got me to
try this with his recent post to this mailing list (
http://www.nabble.com/Fast-testing-of-Tapestry-Apps-tf2139725.html#a5996591
).


Really nice. Have to try that. How to use debugging in eclipse from
that? External debugging enabled on jetty?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: What does your project directory structure look like?

2006-09-22 Thread Robin Ericsson

On 9/22/06, D&J Gredler <[EMAIL PROTECTED]> wrote:

I've used Maven2 to manage my newest project, and I'm quite happy with all
the freebies you get when you follow their standard directory structure:
builds, source builds, unit testing, test coverage, site building,
dependency management (inside eclipse, too) etc. The site-building module
for Maven2 still feels beta-quality, but that's about my only complaint.


How do you work with your project in eclipse? Also, do you use eclipse
to run jetty/tomcat or do you used an external alternative?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: tapestry-acegi form based login

2006-09-21 Thread Robin Ericsson

On 9/21/06, Jesper Zedlitz <[EMAIL PROTECTED]> wrote:

Is it possible to use a html form for login with tapestry-acegi instead of
HTTP basic authentication?


I'd like to know that too.


I would like to write a third part for my tutorial
http://wiki.apache.org/tapestry/AcegiSpringJava5 about that topic.


Nice tutorial.

I can answer your other wiki question about realm name.

   
   
   

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: tapestry-acegi anon svn

2006-09-20 Thread Robin Ericsson

On 9/20/06, Karthik N <[EMAIL PROTECTED]> wrote:

I have the same issues with  tapernate SVN.

It's been  more than a month but no luck!! :-(


Has anyone raised this to Javaforge?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



tapestry-acegi anon svn

2006-09-20 Thread Robin Ericsson

Hi,

Couldn't find a specific list for tapestry-acegi so I post this here.
I can't seem to access the anonymous svn repository. All I can find is
that I should use anonymous/anon, but that doesn't seem to work.

Any ideas/news on this? Searches on google indicates it's been a
problem earlier as well.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tapestry 4.1 roadmap ?

2006-09-19 Thread Robin Ericsson

On 9/19/06, Stephane Decleire <[EMAIL PROTECTED]> wrote:

Hi

Is there a roadmap for the releases of Tapestry 4.1 ?


But of course.
http://wiki.apache.org/tapestry/Tapestry41Roadmap

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT] Source code management

2006-08-07 Thread Robin Ericsson

On 8/5/06, Robin Ericsson <[EMAIL PROTECTED]> wrote:

I'm looking for a SCM that has support for approval/rejection of
code/patches before it goes into the trunk.


To answer my own question I found a tool that does what I'm looking
for. It isn't a new SCM but has support for CVS, Subversion, Perforce
and a whole other lot.

Has anybody heard of it or know any competitors?

"CodeCollaborator enables peer review of source code changes before or
after files are checked into version control. Automate audit trails
and metrics, enforce workflow rules, and generate reports. Integrates
with SCM, issue-tracking, reporting, and other external systems."
http://www.codehistorian.com/codecollab.php

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[OT] Source code management

2006-08-05 Thread Robin Ericsson

Hi,

I know that this is completly of topic as of Tapestry, but I know that
there are people here working in big organisations and teams and I'd
like your input :)

I'm looking for a SCM that has support for approval/rejection of
code/patches before it goes into the trunk.

What I mean is that if John checks in something, I must approve that
before it's available for other users of the trunk. It should also be
possible to edit the changes of John before they are merged.

I think this sounds similar to the problems Linus had on Linux before
he moved to BitKeeper. But I don't want to use BK. Are there any free
alternatives that can work in the same way?

Preferably I'd like to use CVS or Subversion, but I don't think it's
really what they are aming for. Any other? arch? git? aegis?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: RE: RE: JFly Application Framework is out

2006-07-19 Thread Robin Ericsson

On 7/19/06, Rui Pacheco <[EMAIL PROTECTED]> wrote:

In that case why did you declare it as available? We'll be downloading an
incomplete distribution.


Maybe by living in the paradigm of "release early, release often"
which most OSS project doesn't follow and therefore get less attention
from users and potential developers.


regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: how to subscribe or unsubscribe again

2006-05-18 Thread Robin Ericsson

On 5/18/06, Cypher ! <[EMAIL PROTECTED]> wrote:

anyone know the correct email addresses?
_
To unsubscribe, e-mail: [EMAIL PROTECTED]

^^

DO YOU EVER READ YOU OWN MAILS?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: new logo for Tapestry

2006-05-17 Thread Robin Ericsson

On 5/17/06, Kent Tong <[EMAIL PROTECTED]> wrote:

I agree that a logo competition should be held.


Shouldn't that be a decision made by the PMC?

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: I do not like the new tapestry logo (constructive criticism)

2006-05-16 Thread Robin Ericsson

On 5/16/06, Dwi Ardi Irawan <[EMAIL PROTECTED]> wrote:

how about if we make a logo competition for tapestry ?
and poll all developers


How about we all give it a rest and let Howard give his point? After
all, without him there wouldn't be a framework at all.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: tapestryforums.com

2006-05-09 Thread Robin Ericsson

On 5/9/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote:

Please find a way to fix your user registration to disallow spam bots or
discontinue your service altogether. I speak only for myself in this matter
but if not stopped by the other devs have no problem taking it up with the
proper entities at the ASF to get it stopped.


You definitely speak for me.

--
   regards,
   Robin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]