tapestry-acegi question

2006-12-18 Thread spamsucks
I see there is a @Secure annotation that will secure a page/listener for a role. Is there an annotation that will secure a page/listener for just an authenticated user? I just want to make certain that someone is logged in, I don't need to protect it by role. Thanks. BTW, this is for a t

Re: dynamic image assets?

2006-11-29 Thread spamsucks
I actually did this exact same thing and used stitches for it. Person registers and uploads their image. My library will resize the image in different formats to be used by the imagedisplay components in the tapestry pages. One thing to remember is that outputting gif images is tricky, and I

Re: Linking Tapestry to Online Payment Provider

2006-11-27 Thread spamsucks
May I ask a little more about what your application does? Is it just a shopping cart? I have written tapestry applications that integrate to payment providers (payproflow, skipjack and cybersource), and currently on adding this feature to a security framework that I have written that will all

Re: Multiple application in a single war

2006-11-27 Thread spamsucks
I have 4 different tapestry apps in one war, working successfully. From what I see below, you need to, change /browse/app to /browse and /admin/app to /admin Don't forget to set the org.apache.tapestry.servlet-path in your appl

Re: Displaying Image Gallery ?

2006-11-21 Thread spamsucks
I migrated stitches to maven2, and broke the stitches site. I will email you the jar (off the list) and some pointers on how to use this grid layout component tonight (when I get home). Phillip - Original Message - From: "sunilmanu" <[EMAIL PROTECTED]> To: Sent: Tuesday, November 2

Re: Displaying Image Gallery ?

2006-11-21 Thread spamsucks
I wrote a component that does exactly this (for the exact same problem of displaying images in a image gallery) It's called "grid layout" and it's part of stitches. It will create a table that will create a row for a given number of columns. I am willing to pull it out of stitches tonight a

any google map mashups?

2006-11-21 Thread spamsucks
I am about to start a new project that involves a google mashup. Was wondering if anyone did this in tapestry yet? Phillip - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Translator message

2006-11-01 Thread spamsucks
Using Tap 4.1 I do not use any validators. How can I make a translator display my own error message in case of translation error ? I try the following : In case of a translation error I get red asterics displayed after my text field, but no trace of any error message. Any advice is appreciate

RE: ITemplateSourceDelegate

2006-10-27 Thread spamsucks
> Has someone a working example of an ITemplateSourceDelegate > or or a PageSpecificationResolverImpl ? I can't find any. > I only want to have a .class for each page and in the same > package the html template. All .page configuration will be > set using annotations. > Thanks !! > Here is ISp

Help, robots are attacking my listeners!

2006-10-20 Thread spamsucks
hi everybody, Sorry for the title, but that's what is happening. I have a very high traffic (very public) site that now is using ajax/tapestry for some functionality. Because we are being constantly crawled by bots, my listeners are invoked on the "voting for a playlist" links in my app, and

RE: Latest 4.1.1 & tacos compatibility

2006-10-09 Thread spamsucks
> BTW, since you seem to be the first one to try this, could > you give a report on which components do work with Tapestry 4.1.1 ? > > Do you include tacos' dojo, > or do you let Tapestry 4.1.1 include its own? I will be glad to share all my experience in combining tacos and 4.1.1 , though so fa

RE: Latest 4.1.1 & tacos compatibility

2006-10-06 Thread spamsucks
Yup. I downloaded the latest tacos and it seems to be working. Thanks. > -Original Message- > From: Andreas Andreou [mailto:[EMAIL PROTECTED] > Sent: Friday, October 06, 2006 1:25 PM > To: Tapestry users > Subject: Re: Latest 4.1.1 & tacos compatibility > > > Norbert Sándor wrote: > >

Latest 4.1.1 & tacos compatibility

2006-10-06 Thread spamsucks
I just downloaded 4.1.1 SNAPSHOT and it appears that there is a tacos compatibility error with the latest build. I know that I shouldn't even expect 4.1.1 work with tacos, but after all they did work together as of yesterday. The only thing I upgraded was tapestry itself. I'm sure don't expect 100

@EventListener with async=false

2006-10-02 Thread spamsucks
>From reading the documentation I get the impression that listener annotated by @EventListener will be called regardless of wether async parameter is true or false. In my case I see that it's not called when async=false. Environment : Tapestry 4.1.1 SNAPSHOT ( today's bleeding edge download ) Tomc

BORDER component encoding

2006-09-05 Thread spamsucks
I'm trying to make my border component to output HTML in the appropriate encoding. This is not the localization issue, just the matter of making my component output in Unicode. The template itself ( the one that is "bordered" by Border ) is outputting correct Unicode, but the border component itse

OT : Tapestry + Eclipse validation messages

2006-08-29 Thread spamsucks
I'm using Eclipse 3.2 + WST to develop my T4 projects. During the build it tries to validate my tapestry templates and since they're not valid HTML it generates a million warnings like this one : "Invalid location of tag (link)." or this one : "Invalid location of tag (meta)." >From reading this

Re: hivemind injections for custom captcha validator

2006-07-23 Thread spamsucks
Wow, wish I saw that earlier. I looked in tassel, the component wiki page and the other component repositories and didn't find this. I will check it out. thanks. James Carman wrote: There's already a captcha component in the tapestry-captcha library. Can't you use that? I finally g

hivemind injections for custom captcha validator

2006-07-21 Thread spamsucks
I finally got a working component of Captcha for tapestry. It works great, with capcha being a hivemind service inside tapestry. My working implementation does the captcha test in a custom listener, but it would be even better if I could use a captcha validator. In this way, it would make it

Re: Retrieve hivemind "messages" from plain old java program

2006-07-16 Thread spamsucks
I'm sorry, that was a typo in the email. The actual file name is located as WEB-INF/hivemodule.xml It would have been as sweet as it would be embarrassing if that were the root cause! Don Ryan wrote: My WEB-INF/hive-module.xml is in my classpath Just checking the obvious. Is the hyphen

Retrieve hivemind "messages" from plain old java program

2006-07-16 Thread spamsucks
Hi everyone, I am trying to create some tests that depend upon the hivemind Messages object. While this is not a problem to do this in the context of a tapestry application, I am trying to do this from outside a web app (from a java program). I figured that I would have to create the Hivemin

Re: CMS Integration

2006-07-10 Thread spamsucks
Julio C. Rivera wrote: I think a CMS component library is a very good idea. I'm searching something like it. I'm trying Stitches, but I'm having some problems building and deploying examples. 2006/7/10, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: a common CMS component library would be a very ni

Required field and BaseComponent?

2006-07-09 Thread spamsucks
Hi, I have a component that extends BaseComponent. I would like to implement validation support for this component (just required) but all the examples of components that I have found that implement validation are low-level (i.e. PropertySelection) Because this component uses 3 PropertySelect

Re: 3 field date component

2006-06-19 Thread spamsucks
That is EXACTLY what I was looking for. I will try it out. I think we (the tapestry community) need to do a better job of creating a registry to what different components are out there. I really like tassle, but this component wasn't in it. Any ideas out there on how we can get a better inve

3 field date component

2006-06-17 Thread spamsucks
I am writing a 3 field date component. The component allows the user to select the month/date/year from select boxes for their birth date. Couple of questions: 1) Has anyone already created such a component? 2) Because I have 3 input fields bound to 3 properties in my component, what would be

Re: image service?

2006-06-11 Thread spamsucks
Stitches has an image upload service in addition to components to search and pick images. Thumbnails of various sizes are auto generated. Images are cached in the browser and only re-transmitted if they have changed. Same code as in abstractservice. Henri Dupre wrote: I seem to recall tha

Re: Problems with @Bean annotation

2006-06-07 Thread spamsucks
While unlikely, another cause could be that you have the bean declared in your spec Andreas Bulling wrote: On 07. Jun 2006 - 16:09:42, Travis Romney wrote: | I'm trying to use the @Bean annotation. I have a very simple | Bean with a no-arg constructor that I'm trying to create. | | @Bean

Re: Component Tab with AJAX

2006-05-29 Thread spamsucks
originally based on the tabset component(found on tassel). I ported it to T4 and added several bells and whistles. spamsucks wrote: Yes, the demo site has been up and down (it's where i am building/testing) the tab panel right now. The new tab component will be on the demo site. I just g

Re: Component Tab with AJAX

2006-05-29 Thread spamsucks
today) and check out the demo site. Hugo Palma wrote: That's great news..As soon as i find some free time i'll take a deeper look into it, in the mean time i can't access the demo site, is it down ? Do you have a demo of the tab panel component in the site ? On 5/29/0

Re: Component Tab with AJAX

2006-05-29 Thread spamsucks
I am literally working on a tab panel component right now (just stopped to check out the list). I was thinking about AJAX support. Right now, it supports a simultaneous mixture of client and serverside tabs in the same tabset. other features include disabling, hiding, etc... of individual ta

Re: Sort Order

2006-05-15 Thread spamsucks
Stitches has exactly that component. It's a modified palette that just does the ordering. I am using it without problem in production. http://stitches.authsum.org Stanczak Group wrote: Is there a component to allow sorting of items. Like what Palette can do, but I just want to have a list