Re: users Digest 28 Dec 2009 16:16:59 -0000 Issue 3955

2009-12-28 Thread Alex Shneyderman
Security by ignorance does not work in general if you want to secure your site you better know what you are doing otherwise hire someone who can explain how to do it but never blindly trust anyone. In general though security is no rocket science, although ppl developing frameworks and tools around

Re: [Tapestry Central] Why chose Tapestry?

2009-06-18 Thread Alex Shneyderman
Not even that is needed. You can pack your dependencies with your project. You need to pack those jars in the form maven would recognize it as its repository. Then you could specify local repo (the one that sits on the file system) in your parent pom. On Thu, Jun 18, 2009 at 12:54 PM, Massimo Luse

Re: Changing logging level at runtime

2009-05-19 Thread Alex Shneyderman
On Tue, May 19, 2009 at 2:33 PM, Borut BolĨina wrote: > Actually we do have this web app in cluster. in this case you will have to find out how to propagate level changes to all the instances of the cluster. > Are you saying that I should run this simple standalone java app to change > the log l

Re: Changing logging level at runtime

2009-05-19 Thread Alex Shneyderman
Write a little app to adjust debug levels on the fly. The basics of log4j are: Logger lg = Logger.getLogger( "org.qi4j" ); lg.setLevel( Level.INFO ); 2 things to watch out for: 1. Clusters. 2. Classes are available in JVM only when loaded. So you will need a listing of them before you deploy the

Re: Apache Tapestry on Google Maps

2009-05-11 Thread Alex Shneyderman
Howard, do you seriously think it is hard to locate you? He, he ... On Mon, May 11, 2009 at 4:14 PM, Howard Lewis Ship wrote: > Call me paranoid, but giving my exact location to a planet full of > strangers seems odd. > - To uns

Re: Good Cheap Java Web Hosting Solutions

2009-03-29 Thread Alex Shneyderman
> wish I can read German:) you do not have to :-) Just point google lang translator to the site and see what happens. Most of the time translations are funny but humanly readable. - To unsubscribe, e-mail: users-unsubscr...@tapes

Re: [T5] Something like GORM for Tapestry?

2008-11-12 Thread Alex Shneyderman
> I usually code against DAOs configured in Spring. GORMs main advantage IMO > is the uncluttered and quickly readable configuration of the domain classes > and relations. The dynamic finders are definitely helpful for smaller scale > admin type apps and for quick testing. For more complex apps the

Re: [T5] Something like GORM for Tapestry?

2008-11-07 Thread Alex Shneyderman
On Fri, Nov 7, 2008 at 1:35 PM, Otho <[EMAIL PROTECTED]> wrote: > Yes of course, but Tapestry and Groovy integrate quite well. yes I recall an attempt I do not know if anything beyond basic page was ever implemented. http://www.troymaxventures.com/2007/08/grails-tapestry-grapestry-part-1-of-n.htm

Re: [T5] Something like GORM for Tapestry?

2008-11-07 Thread Alex Shneyderman
> That is not the same, since you don't only have the AND operator at hand. > > def books = Book.findAllByPublisheddateBetween(lastyear, today) You do realize that what you are asking is not possible given that impl language is Java (for Tapestry based projects)? So DAO's your friend. If you like

Re: How is T5 tutorial?

2008-03-26 Thread Alex Shneyderman
Guys, This exchange turns to be disturbing. If you find someone a troll there is always an option to ignore him/her. IMHO, the message below is much more damaging than the trolling. Just a suggestion: maybe you guys can find it in your hearts to ignore trolls from now on. I also think it will be

Re: Mixing T5 and Guice --- best practices

2007-10-29 Thread Alex Shneyderman
On 10/29/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > and lifecycle, the need for service contributions (something none of the > other IoC containers seem to "get") ... but Guice pushes the spectrum of Not exactly correct. They do not provide it out of the box :-( One can do the same with sp

Re: Tapestry 5 Roadmap

2007-10-23 Thread Alex Shneyderman
On 10/23/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Let me repeat ... I have seven years of experience (in Tapestry) on how NOT > to be backwards compatible. T5 is all about ensuring future backwards > compatibility without compromising the ability to enhance the framework > going forward.

5.0.6-SNAPSHOT archetype problems ...

2007-10-22 Thread Alex Shneyderman
I am using archetype to create a quickstart app. I have copmiled from sources and installed the archetype. Now when I run create:archetype there seems to be 2 problems: 1. In archetype.xml (quickstart/src/main/resources/META-INF/archetype.xml) there is a line like this in sources section: sr

Re: Tapestry 5 Roadmap

2007-10-18 Thread Alex Shneyderman
> The one question I could not answer without looking ridiculous was "What > happens to our multi-million dollar project if Howard is hit by a bus > tomorrow" I think the question is irrelevant. The question you should be answering: Is the current base usable enough to push through on the project?

Re: [T5] more tutorials or sample projects?

2007-09-20 Thread Alex Shneyderman
I have just finished one today :-) I gotta say I am impressed with tapestry. Do not miss the app1 in tests. It has a ton of samples that I found extremely useful. http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/test/ On 9/20/07, Robert A. Decker <[EMAIL PROTECTED]> wrote

Re: Component event mechanism is not clear

2007-09-20 Thread Alex Shneyderman
On 9/20/07, Nick Westgate <[EMAIL PROTECTED]> wrote: > The component name mapping is specified as t:id="name". > Note the "t:" prefix. > > You can also just name your method onActionFromLogout. > Thanks, I should have guessed it. I only tried t:name="logout" and that of course did not work :-( --

Re: Component event mechanism is not clear

2007-09-20 Thread Alex Shneyderman
nk's handler will have to be @OnEvent(component="actionlink_0") that's odd. Is there anyway to control this naming? Thanks, Alex. On 9/20/07, Alex Shneyderman <[EMAIL PROTECTED]> wrote: > Hi, all! > > I have a custom built component it has an action link in it

Component event mechanism is not clear

2007-09-20 Thread Alex Shneyderman
Hi, all! I have a custom built component it has an action link in it. The markup looks lie this: Logut then in the component's java source I have an event handler like this: @OnEvent(component="logout") public void doLogout() { System.out.println("onActio

Render only pages require classes along ?

2007-09-20 Thread Alex Shneyderman
Hi, all! I have a page that needs no logic - just to be rendered. html looks lie this: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> Render-only Page Login here login page Un

Re: [T5] Can't make custom library work

2007-09-19 Thread Alex Shneyderman
hmm, I am no tapestry expert but when you refer to component as would not your class have to live under the FQN of com.test.components.test.TestComp? Yours looks like it is com.test.components.TestComp Alex. On 9/19/07, Kolesnikov, Alexander GNI <[EMAIL PROTECTED]> wrote: > I am trying

wicket vs tapestry ?

2007-08-22 Thread Alex Shneyderman
I just started to look for a component based framework. I came across both tapestry and wicket (and it would be hard not to as you guys share the same host) but I kind of fail to see what the differences are? >From my limited experiments with both, wicket and tapestry seem to be quite similar. So,

[T5] are there samples available ?

2007-08-21 Thread Alex Shneyderman
With lack of pragmatic documentation it would be really useful to have sample apps - tutorial is a start but ... it barely gets the feet wet. I wonder if there are more samples somewhere. Care to share? -- Thanks, Alex. - To un

Re: maven build from source is not working.

2007-07-30 Thread Alex Shneyderman
Memory: 9M/81M [INFO] On 7/30/07, Alex Shneyderman <[EMAIL PROTECTED]> wrote: > Am I too naive to expect maven build to just build without problems? > > I checked the source I go to the root directory (above

maven build from source is not working.

2007-07-30 Thread Alex Shneyderman
Am I too naive to expect maven build to just build without problems? I checked the source I go to the root directory (above all the modules) and I do "mvn clean package" I get errors. That classes are can not be compiled. Some missing deps. Any clue? Any guidance on how to successfully build tape

T5: Tutorial question.

2007-07-29 Thread Alex Shneyderman
Hi, all! I am trying out tapestry and was going through the tutorial and noticed that in the section about Guess.java the following: Object onActionFromLink(int guess) { _count++; if (guess == _target) { _gameOver.setup(_count); return _gameOver; } if (guess