Re: T5: One static initializer script for mixin

2008-11-03 Thread Konstantin
Thanks! Nice and interesting approach, I would look into MarkupRenderFilter thing. But I would like a simple solution for my simple problem :-) kristian.marinkovic wrote: > > hi, > > i have a service in my environment that collects the ids > of the components that need to be enhanced by some s

Re: T5: One static initializer script for mixin

2008-11-03 Thread Konstantin
of this, in trunk, for the DateField component, which only > wants to pass down the localization data once per render. > > On Mon, Nov 3, 2008 at 3:03 AM, Konstantin <[EMAIL PROTECTED]> wrote: >> >> I've created AjaxLoader mixin that I use on EventLink with zone

T5: One static initializer script for mixin

2008-11-03 Thread Konstantin
I've created AjaxLoader mixin that I use on EventLink with zone param. It will add nice animated gif inside zone while zone content will be loading. JS part creates Tapestry.AjaxLoader class. I've also added Tapestry.Initializer.ajaxLoader with (linkId, zoneId, loaderURL) params which will simply

Re: [T5] Grid default sort column

2008-10-27 Thread Konstantin
Hi! I've had similar issue. My grid had custom model, and I've uses @Persist on it instead of @Retain. And page refresh issue was solved. Christoph Jäger wrote: > > It works on 5.0.15 the first time a page is displayed. For the second > time (just clicking the same link in my menu), I get a

Re: Tapestry 5.0.15 DateField localization problem [patch included]

2008-10-15 Thread Konstantin
Looks as a right fix, in my first post I pointed to the root of this problem, but I'm too lazy to build Tapestry from sources just for this simple fix. Mikaël Cluseau-3 wrote: > > Well I still had stability problems under IE (surprise!) so I tried to > fix the thing in Tapestry itself. AFAIK, i

Re: Tapestry 5.0.15 DateField localization problem

2008-10-01 Thread Konstantin
Ok. I've created a workaround. package myapphere.mixins; import org.apache.tapestry5.annotations.IncludeJavaScriptLibrary; import org.apache.tapestry5.annotations.MixinAfter; @IncludeJavaScriptLibrary("datefield-tzfix.js") @MixinAfter public class DateFieldTzFix { } - Using in: -page class

Tapestry 5.0.15 DateField localization problem

2008-09-29 Thread Konstantin
In new corelib\components\DateField one can find: JSONObject onParse() { ... response.put(RESULT, date.toString()); ... } For my timezone it returns: "Mon Sep 01 00:00:00 EEST 2008", but then in datefield.js it tries: var resultHandler = function(result) { var date = n

T5: OnActivate is called on Acegi @Secured page

2008-09-10 Thread Konstantin
I have a page with: @Secured(User.ROLE_USER) public class Page1 extends MyAbstractPage { void onActivate(long someId) { Some initialization takes place here. No check against user role, cause we believe we're secured! } } If I call this without context like this: http://localhost:8080/my

Re: T5 t:renderObject and pageLink won't render link just text instead

2008-06-13 Thread Konstantin
Hi, it's me again :-) Filip S. Adamsen-2 wrote: > > It still looks to me like you only need a PageLink. It has three > parameters that you should use: page, context, and disabled. Page is the > page name, context is a list/array of context parameters, and disabled > decides whether to render

Re: Re: T5 t:renderObject and pageLink won't render link just text instead

2008-06-12 Thread Konstantin
gt; > The UserList.tml right at the middle of the page. > > Hope that helps, nillehammer > > > - original Nachricht > > Betreff: Re: T5 t:renderObject and pageLink won't render link just text > instead > Gesendet: Do, 12. Jun 2008 > Von: Konstantin<[EMAI

Re: T5 t:renderObject and pageLink won't render link just text instead

2008-06-12 Thread Konstantin
("targetpagehere", > true").toURI(); >} > > Template: > > ${link} text for link > > See? It's easy. :) > > But since you're linking to a page, why not just use the PageLink > component? That's even easier. > >text for li

Re: T5 t:renderObject and pageLink won't render link just text instead

2008-06-11 Thread Konstantin
.) > > I suspect that calling toAbsoluteURI() on the link will give you what > you want. Oh, and you won't need RenderObject for that - you can just do > an expansion ${myDynaObject} in that case. > > -Filip > > Konstantin skrev: >> in tml: >> >> >>

T5 t:renderObject and pageLink won't render link just text instead

2008-06-11 Thread Konstantin
in tml: in java: @Inject private ComponentResources componentResources; public Object getMyDynaObject() { Link testLink; testLink = componentResources.createPageLink("targetPageHere", true, "11"); return testLink; } Renders text "targetPageHere/11" ins

Re: T5.0.11 t:output doesn't work for DateFormat

2008-06-10 Thread Konstantin
Works like a charm! Thanks! Filip S. Adamsen-2 wrote: > > Try instead - that > is, just the property name instead of an expansion. The expansion will > expand to a String, which won't format correctly. > > -Filip > -- View this message in context: http://www.nabble.com/T5.0.11-t%3Aoutput-

T5.0.11 t:output doesn't work for DateFormat

2008-06-10 Thread Konstantin
in markup: in page class: private Format testFormat = DateFormat.getInstance(); private Date currentDate = new Date(); public Format getTestFormat() { return testFormat; } public Date getCurrentDate() { return currentDate; } result: org.apache.tapes

Re: wicket vs tapestry ?

2007-08-22 Thread Konstantin Ignatyev
wicket vs > tapestry? > > > > > > Alex. > > > > > > PS: I like both frameworks for their lightness I > just feel that I will > > > need to stick with one to be pragmatic :-( > > > > > > > --

Re: T5:Maven or not?

2007-08-22 Thread Konstantin Ignatyev
Maybe, but the quick fix was to stop using maven :) - as usual. Maybe I am not compatible with Maven ;) --- Robin Helgelin <[EMAIL PROTECTED]> wrote: > On 8/22/07, Konstantin Ignatyev > <[EMAIL PROTECTED]> wrote: > > Sometimes it will pick-up changes in the html > &

Re: T5:Maven or not?

2007-08-22 Thread Konstantin Ignatyev
Sometimes it will pick-up changes in the html templates and page classes and sometimes not. When I started using jetty directly it would always detect changes so T5 dynamic class loading worked as it supposed to work. --- Robin Helgelin <[EMAIL PROTECTED]> wrote: > On 8/22/07, K

Re: T5:Maven or not?

2007-08-22 Thread Konstantin Ignatyev
or your project or ... :-) > > -- > regards, > Robin > > - > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add f

Re: Tapestry 4 or 5?

2007-08-20 Thread Konstantin Ignatyev
; ----- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million

Re: Trouble getting Tapestry up and running

2007-05-18 Thread Konstantin Ignatyev
http://tapestry.apache.org/tapestry4.1/dependency-convergence.html http://tapestry.apache.org/tapestry5/tapestry-hibernate/dependencies.html --- jbeall <[EMAIL PROTECTED]> wrote: > > > Konstantin Ignatyev wrote: > > > > Yes, it is irritating not to have all the

Re: Trouble getting Tapestry up and running

2007-05-18 Thread Konstantin Ignatyev
ilder.constructRegistry(RegistryBuilder.java:154) > at > org.apache.tapestry.ApplicationServlet.constructRegistry(ApplicationServlet.java:253) > at > org.apache.tapestry.ApplicationServlet.init(ApplicationServlet.java:194) > at > org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1139) >

Re: JavaFX

2007-05-09 Thread Konstantin Ignatyev
ojo/tapestry/tacos/hivemind. > http://blog.opencomponentry.com > > > > > -- > "The future is here. It's just not evenly > distributed yet." > > -- Traditional > > - > To unsubs

Re: Templating with Tapestry 5

2007-04-27 Thread Konstantin Ignatyev
You got it right. --- bjornharvold <[EMAIL PROTECTED]> wrote: > > But that's Tapestry 4, no? Oh I think I get it. In > tapestry 5 you have the > Basically, you wrap your components in > layouts. > > > > Konstantin Ignatyev wrote: > > > &g

Re: Templating with Tapestry 5

2007-04-27 Thread Konstantin Ignatyev
Just look closely at the Workbench example that comes with Tapestry: Border component has Page content goes here. And individual pages look like this; <-- this is the first page line .. Meaningful page content .. --- bjornharvold <[EMAIL PROTECTED]> wrote: > > Konstanti

Re: Templating with Tapestry 5

2007-04-27 Thread Konstantin Ignatyev
-- > View this message in context: > http://www.nabble.com/Templating-with-Tapestry-5-tf3659025.html#a10223765 > Sent from the Tapestry - User mailing list archive > at Nabble.com. > > > - > To unsubscri

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

2007-03-27 Thread Konstantin Ignatyev
--- Borut Bolčina <[EMAIL PROTECTED]> wrote: > Hello, > > Konstantin Ignatyev wrote: > > http://www.bileblog.org/?p=59 > This pretty insulting blog was posted on July 17th, > 2005. > Insulting, but pretty damn valid IMO to this day (Mar-27-2007). >

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

2007-03-27 Thread Konstantin Ignatyev
ic > projects like tapestry5 > but in general it works very well (which is > reflected by the number of > projects build by maven). > > I'm quite happy that Tapestry is build using maven2. > > Renat > > On 27/03/07, Konstantin Ignatyev > <[EMAIL PROTECTE

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

2007-03-27 Thread Konstantin Ignatyev
be, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 square miles of tropical rainforest, create s

Re: Re: Eclipse is very Slow - What do i have to do be more fast the developing?

2007-03-13 Thread Konstantin Ignatyev
t; An > > > > "Tapestry users" > > > > Kopie > > > > > > > > Thema > > > > Eclipse is very Slow - What do i have to do be > more fast the > > developing? > > > > > > > > > > > > > > &

Re: My crap development environment

2007-02-15 Thread Konstantin Ignatyev
DT - never used it > Jetty6 plugin - is this the Jetty-maven-plugin > referred above of different? > > > - > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > >

Re: My crap development environment

2007-02-14 Thread Konstantin Ignatyev
ter - it was more focused on > pulling dependencies and > easing the build process. And if I were to install > maven2 would it change any > of the above anyway??? > > Cheers > mc > > > ----- > T

Re: OpenLazlo and Tapestry

2007-01-31 Thread Konstantin Ignatyev
I have attended Flex presentation by Christophe Coenraets (http://coenraets.org/blog/2007/01/flex-data-management-services-tutorial/) and was quite impressed (even I hate Flash ads). I am convinced that rich flash applications are the next big thing (web 3.0). I wish it was JVM and Java Web Star

Re: Tapestry in a J2EE Architecture

2007-01-23 Thread Konstantin Ignatyev
Yes, book would be better than AppFuse. AppFuse might have improved since I looked at that about a year ago, but at that time it was way too confusing for people not quite familiar with all the frameworks and tricks. --- Hugo Palma <[EMAIL PROTECTED]> wrote: > You should definitely get Kent's boo

Re: JSR-168/268 support and Tapestry 5.0

2006-12-29 Thread Konstantin Ignatyev
consistent, for > portlet Tapestry 5. > > On 12/29/06, Jan Vissers <[EMAIL PROTECTED]> > wrote: > > > Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 square miles of tr

Re: Automated Testing Tool

2006-12-12 Thread Konstantin Ignatyev
Selenium and its wrapper STIQ. --- Miguel Angel Hernández <[EMAIL PROTECTED]> wrote: > Hi all, > > Are there any tools that allow to build automated > tests for tapestry apps? > Do they suport Tacos and Dojo? > > cheers, > > miguel > Konstantin Ignatyev

RE: Perfomance Testing Tapestry App

2006-11-27 Thread Konstantin Ignatyev
[EMAIL PROTECTED] > > > - > 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 Konstantin Ignatyev
t; ----- > > To unsubscribe, e-mail: > [EMAIL PROTECTED] > > For additional commands, e-mail: > [EMAIL PROTECTED] > > > > > > > -- > play tetris http://pepone.on-rez.com/tetris > ru

Re: Encoding of properties files

2006-10-27 Thread Konstantin Ignatyev
> Any suggestions? > > > Please please please... I'll be your slave ;) > > > > > > > > > -- > > Andreas Andreou - [EMAIL PROTECTED] - > http://andyhot.di.uoa.gr > > Tapestry / Tacos developer > > Open Source / J2EE Consulting > > >

Re: TACOS DEMO getServletContext().getRealPath("/") returns NULL ?

2006-10-27 Thread Konstantin Ignatyev
> 10 > > > > MySQLDataSource > javax.sql.DataSource > Container > > > > OracleDataSource > javax.sql.DataSource > Container > > > > > _

Re: Maven, Eclipse and Jetty setup problems.

2006-10-10 Thread Konstantin Ignatyev
-3.0-20060324.230126-1.jar"/> --- Leo Sakhvoruk <[EMAIL PROTECTED]> wrote: > Hi Konstantin, > > I'm trying to get Ivy working as per your suggestion > but I'm having > trouble pulling dependencies via a url resolver (as > that seems to be the &

RE: Thoughts about performance monitoring in Tapestry

2006-10-09 Thread Konstantin Ignatyev
time, > Please look up old discussions regarding those numbers on gname, in short: the numbers have nothing to do whatsoever with real rendering time. See for example Howard's post http://article.gmane.org/gmane.comp.java.tapestry.user/15280/match=render+time Konstantin Ignatyev

Re: Thoughts about performance monitoring in Tapestry

2006-10-09 Thread Konstantin Ignatyev
conds. Now that sounds great, but does it seem > logical? I mean, > > > maybe some other components should be taken into > account. > > > > > > * Anyone knows if Spring's methods to invoke and > instantiate EJBs are > > > slow? The tool says that it can tak

Re: Maven, Eclipse and Jetty setup problems.

2006-10-09 Thread Konstantin Ignatyev
6.1-SNAPSHOT. > > Does anyone have a clue why it's trying to use > maven-jetty6-plugin? > > Please help. > > ----- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > Konstantin I

Re: Jasper Reports Help

2006-09-19 Thread Konstantin Ignatyev
Depends on your scripting language for the report but in general you simply need to specify expression for the field as ($F{boolean_field} == true)? 1:2 --- Peter Dawn <[EMAIL PROTECTED]> wrote: > guys, > > i am implementing jasper reports within my tapestry > web app. and i am > sorry i should

Re: [OT] Tapestry + IDEA

2006-09-18 Thread Konstantin Ignatyev
t; Kevin > > ----- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > Konstantin Ignatyev PS: If this is a typical day on planet earth, humans wi

Re: TapIDEA future, post "Time to move on"

2006-08-29 Thread Konstantin Ignatyev
ot; errors, something that often requires > special Tapestry > awareness. > > On 8/29/06, Konstantin Ignatyev > <[EMAIL PROTECTED]> wrote: > > > > > My point is that in case of Tapestry/Wicket there > is > > no need to worry much about tools, beca

RE: TapIDEA future, post "Time to move on"

2006-08-29 Thread Konstantin Ignatyev
Huh? What are you talking about? --- Mark Stang <[EMAIL PROTECTED]> wrote: > Hey, if you are that good, switch to a plain vanilla > version of vi and let's see how "good" you are... > - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: TapIDEA future, post "Time to move on"

2006-08-29 Thread Konstantin Ignatyev
The keyword here 'think'. That is very common, but what we actually seek is not ZZZ-IDE or plugin, but features like: - code navigation; - code completion; - syntax checks and coloring; That is about it. Tool like IntelliJ pretty much takes care of all those things without any Tapestry specific

Re: TapIDEA future, post "Time to move on"

2006-08-29 Thread Konstantin Ignatyev
It is all matter of opinion but I would say that IDE like IntelliJ + DreamWeaver out of box provide enought features to be productive with Tapestry. Certain Tapestry specific features would be nice to have but they are not critical IMO. --- Francis Amanfo <[EMAIL PROTECTED]> wrote: > Guys, >

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-17 Thread Konstantin Ignatyev
e explain what you mean by "there are > ranges in the version > specifications" and perhaps give an example? > > On 8/16/06, Konstantin Ignatyev wrote: > > Rant: > > > > Unfortunately Maven archichitecture and practices > are > > not allow repea

Re: How to setup 4.1 MAVEN2 snapshot

2006-08-16 Thread Konstantin Ignatyev
Rant: Unfortunately Maven archichitecture and practices are not allow repeatable builds because there are ranges in the version specifications. And that makes build to depend on current repository content and makes it unrepeatable. IMO it would be much nicer if Ant + Ivy was used as build system.

Re: Open Source CRM

2006-08-09 Thread Konstantin Ignatyev
arching for an open source CRM. Is there an > open source CRM > written in Tapestry 4? > > > - > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > &

RE: RoR

2006-08-03 Thread Konstantin Ignatyev
rking. > > I'll keep posting the same email once a week or so > till I get either removed > or banned, so dont bother replying. > > thx in advance > > Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons

Re: Maven 2, jetty 6, snapshots, the example applications

2006-07-24 Thread Konstantin Ignatyev
-plugin > 6.0.0beta17 > > instead of the snapshot. its a workaround, not a > solution, but i > thought id spare someone the 10 mins of stuper... > > Josh > > ----- > To unsubscribe,

Re: PermGen space - Caching is ON

2006-07-24 Thread Konstantin Ignatyev
if other containers such as > Jetty, Weblogic or > Websphere have better solutions... > I'm not sure what do you refer as "hot redeploy"... > We are using the tomcat > ant tasks to redeploy into tomcat. > > Henri. > > Konstantin Ignatyev PS: If

RE: Tapestry & AspectJ

2006-07-21 Thread Konstantin Ignatyev
In case there is a need to apply aspects to all the classes in the application and its libraries, lets say add tracing aspect, then AspectJ can be applied at build time and statically weave all the necessary things into classes, which will then be just regular classes and I think the can be additio

Re: handling file downloads

2006-07-18 Thread Konstantin Ignatyev
I did that by passing ognl expression (as string) that specifies the dataset as parameter to the service, so the service simply evaluates the OGNL expression and uses its result as source. Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million

Re: help content implementation

2006-07-18 Thread Konstantin Ignatyev
D] For additional commands, e-mail: [EMAIL PROTECTED] Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 square miles of tropical rainforest, create seventy-two miles of desert, eliminate between

Re: xml parse error if the jakarta site is not accessible

2006-06-27 Thread Konstantin Ignatyev
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 square miles of tropical rainforest, create seventy-t

Re: Hibernate persisted data never makes it to DB

2006-05-25 Thread Konstantin Iignatyev
--- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Thanks, Konstantin Ignatyev http://www.kgionline.com PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 sq

Re: How would I know?

2006-05-23 Thread Konstantin Ignatyev
How about something like @InjectObject("service:tapestry.globals.HttpServletResponse") public abstract HttpServletResponse getHttpResponse(); and then send redirect where you need to albartell <[EMAIL PROTECTED]> wrote: I am lost in Tapestry documentation today (which is becoming a common o

Re: Simple tag enclosing

2006-05-23 Thread Konstantin Ignatyev
M�rio Lopes <[EMAIL PROTECTED]> wrote: Hi, how can I do the following: );"> Thanks -- M�rio - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Google Web Toolkit

2006-05-23 Thread Konstantin Ignatyev
nk you can install 32-bit version of flash and it would work Or you may need to install a 32-bit version of Firefox. I remember I had this problem on Fedora Core 4 on AMD64 kernel. Yes... you need the Firefox version from 32-bit distro. -Serge Konstantin Ignatyev wrote: >Agreed. E

Re: Google Web Toolkit

2006-05-23 Thread Konstantin Ignatyev
AIL PROTECTED]> wrote: Interesting... How can an applet be a viable alternative if it needs a JVM to run, and Windoz comes without it. I think this problem needs to be solved first if applets/JWS are to come back into fashion. -Serge Konstantin Ignatyev wrote: >Paul Cantrell wrote:

Re: Invalidate session

2006-05-23 Thread Konstantin Ignatyev
istian - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destr

RE: Re[2]: Multiple skins with Tapestry

2006-05-22 Thread Konstantin Ignatyev
Here we go again... The skin discussion happens every 8 months I believe Shall we check archives or go over exacly the same arguments one more time? James Carman <[EMAIL PROTECTED]> wrote: Have you seen the "CSS Zen Garden"? You'd be surprised what you can do with CSS... http://www.cssze

Re: Multiple skins with Tapestry

2006-05-22 Thread Konstantin Ignatyev
Tapestry skins feature is in the 'wish list' http://wiki.apache.org/tapestry/WishList Any ideas if it will be moved into TODO list? Paul Cantrell <[EMAIL PROTECTED]> wrote: Yes, CSS for sure, and a border component that swaps out different CSS files based on some parameter. On May 22, 2006,

Re: Google Web Toolkit

2006-05-21 Thread Konstantin Ignatyev
y hard to respect the client's control of their browser. P On May 21, 2006, at 12:47 PM, Konstantin Ignatyev wrote: > http://www.swixml.org/ > http://www.java2s.com/Product/Swing/LookAndFeel.htm > > And Swing can support any kind of layout managers but I have found > Gri

Re: Google Web Toolkit

2006-05-21 Thread Konstantin Ignatyev
browsers. Applets is what we really need :). Norbert S�ndor <[EMAIL PROTECTED]> wrote:The good thing in GWT is to use the efficient development style of Swing (I mean Java only, easy to debug/test) but allow to use the underlying browser's HTML+CSS capatibilites for layout.

Re: Google Web Toolkit

2006-05-20 Thread Konstantin Ignatyev
>I prefer the average webapp's UI to the average > desktop (well, Windows) or Swing UI. First of all let me state the obvious: there are different types of applications and they have different requirements. I yet to see a convenient web based text editor or accounting application, much le

Re: Assets

2006-05-19 Thread Konstantin Ignatyev
9 20 06 63 78 69 06 Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 square miles of tropical rainforest, create seventy-two miles of desert, eliminate between forty to one hundred species, e

RE: new logo for Tapestry

2006-05-18 Thread Konstantin Ignatyev
an <[EMAIL PROTECTED]> wrote: Well, tapestry *is* an Apache top-level project now (and an Apache "product"). I think it's very important that we include the "apache feather." -----Original Message- From: Konstantin Ignatyev [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: new logo for Tapestry

2006-05-18 Thread Konstantin Ignatyev
Could you explain please why it is the "must"? James Carman <[EMAIL PROTECTED]> wrote:Including the "apache feather" is a must IMHO.

Re: new logo for Tapestry

2006-05-18 Thread Konstantin Ignatyev
I think the first image is just fine. IMO logo should be free of any references to Apache or any other projects or organizations for that matter. If there will be Apache feather then why now add that cup of cofee, or make it cup of ink and put the feather in it ;). Borut Bolčina <[EMAIL PRO

Re: List blocking files

2006-05-18 Thread Konstantin Ignatyev
-1 It is better to have a Wiki page with all the images or links to them at some common place than bounce big binaries around. Same is applicable to other binary stuff. It is better to put it on the web and have a wiki page to describe it. Andreas Bulling <[EMAIL PROTECTED]> wrote: Just becaus

Re: Tapestry to generate mails ?

2006-05-17 Thread Konstantin Ignatyev
repo.sun.com, I just badly want this thing to be available for Java community. Konstantin Ignatyev - Original Message From: Brian K. Wallace <[EMAIL PROTECTED]> To: Tapestry users Sent: Wednesday, May 17, 2006 9:16:03 AM Subject: Re: Tapestry to generate mails ? -BEGIN

Re: perform Post on external link

2006-05-17 Thread Konstantin Ignatyev
>>but I have no idea how to get the user's browser redirected to the PayPal >>site. The old fashioned way: inject response and then response.sendRedirect("http://paypal";); - Original Message From: Craig Hamilton <[EMAIL PROTECTED]> To: Tapestry users Sent: Wednesday, May 17, 2006 8:5

Re: Tapestry to generate mails ?

2006-05-17 Thread Konstantin Ignatyev
limitations; - Company's private assets have no place in the public repositories too; All the above makes me believe that 'one download' concept should an can be retired. The repository seed can be made downloadable as DVD image - that would make sense IMO. Kons

Re: Tapestry to generate mails ?

2006-05-17 Thread Konstantin Ignatyev
e way we want. There are some ideas on how to allow people to upload libraries and components, please have a glance and send your thoughts. Common repositories serve well in other communities and I think we should get one too. Konstantin Ignatyev - Original Message From: Pe

Re: Why .page and not .xml for the template ?

2006-05-16 Thread Konstantin Ignatyev
Yes,IMO it would be better if those files were called *.jwc.xml and *.page.xml in this case IDEs would not need additional configuration to recognize the files. Hibernate uses the approach with hbm.xml and it works wery well. Konstantin Ignatyev PS: If this is a typical day on planet earth

Re: I do not like the new tapestry logo

2006-05-15 Thread Konstantin Ignatyev
bear ubiquitous reference to something. I think the proposed unicorn does not fit in any of those categories. Konstantin Ignatyev - Original Message From: Paul Russell <[EMAIL PROTECTED]> To: Tapestry users Sent: Monday, May 15, 2006 1:28:12 PM Subject: Re: I do not like t

Re: Report in Tapestry using Jasperreport

2006-05-14 Thread Konstantin Ignatyev
I did that as a service in Tapestry 3, works perfectly. Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 square miles of tropical rainforest, create seventy-two miles of desert, eliminate between

Re: Slightly OT: Public Tapestry based site and service is seeking users, testers, and contributers

2006-05-10 Thread Konstantin Ignatyev
ing speedy and optimal :( Konstantin Ignatyev - Original Message From: Todd Orr <[EMAIL PROTECTED]> To: Tapestry users Sent: Wednesday, May 10, 2006 11:57:05 AM Subject: Re: Slightly OT: Public Tapestry based site and service is seeking users, testers, and contributers Nevermin

Re: Slightly OT: Public Tapestry based site and service is seeking users, testers, and contributers

2006-05-09 Thread Konstantin Ignatyev
e. But those tooltips get on my nerves... they close before i hover into them... grr Massimo Lusetti wrote: > On 5/8/06, Konstantin Ignatyev wrote: > >> Let me invite you to try and use the public >> Tapestry based application I have been devel

Slightly OT: Public Tapestry based site and service is seeking users, testers, and contributers

2006-05-08 Thread Konstantin Ignatyev
in the CJAR http://area51.sourcelabs.com/cjar/app?page=FeedbackForm&service=external or send us email, or edit SWIK pages, whichever is convenient for you. Sincerely, Konstantin