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
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
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
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
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
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
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
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
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
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
("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
.)
>
> 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:
>>
>>
>>
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
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-
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
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 :-(
> > >
> > >
>
--
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
> &
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
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
;
-----
> 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
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
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)
>
ojo/tapestry/tacos/hivemind.
> http://blog.opencomponentry.com
> >
>
>
> --
> "The future is here. It's just not evenly
> distributed yet."
>
> -- Traditional
>
>
-
> To unsubs
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
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
--
> 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
--- 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).
>
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
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
t; An
> > > > "Tapestry users"
> > > > Kopie
> > > >
> > > > Thema
> > > > Eclipse is very Slow - What do i have to do be
> more fast the
> > developing?
> > > >
> > > >
> > > >
> > &
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]
>
>
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
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
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
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
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
[EMAIL PROTECTED]
>
>
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
>
>
>
-
>
t;
-----
> > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > For additional commands, e-mail:
> [EMAIL PROTECTED]
> >
> >
>
>
> --
> play tetris http://pepone.on-rez.com/tetris
> ru
> 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
> >
>
> 10
>
>
>
> MySQLDataSource
> javax.sql.DataSource
> Container
>
>
>
> OracleDataSource
> javax.sql.DataSource
> Container
>
>
>
>
>
_
-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
&
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
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
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
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
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
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
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]
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
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,
>
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
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.
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]
>
&
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
-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,
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
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
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
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
--
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
---
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
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
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]
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
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:
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
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
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,
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
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.
>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
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
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
Could you explain please why it is the "must"?
James Carman <[EMAIL PROTECTED]> wrote:Including the "apache feather" is a must
IMHO.
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
-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
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
>>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
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
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
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
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
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
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
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
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
86 matches
Mail list logo