Yes, I could work around part of the problem spelling out absolute
pathes for assets. However, the template could still not be found for
templated components, even if it was in the very same package/directory.
Marcus
> -Original Message-
> From: Steve Shucker [mailto:[EMAIL PROTECTED]
>
Looks good to me; somehow you must have the JAR file on the classpath
twice. Can we see your Ant build.xml (you obviously aren't using
Maven).
In T4 I've seen a lot of people set up an eclipse project and store
dependencies in src/context/WEB-INF/lib AND add them to the Eclipse
project build path
In a separate Eclipse project from my T5 project, I write a service
called MyService
Interface:
package org.example.mylib;
public interface MyService
{
public String doSomething ();
}
Impl:
package org.example.mylib;
public class MyServiceImpl
implements MyService
{
Nice,
Did you guys see his dissertation on tapestry. Pretty good work right there.
On 4/4/07, Andreas Andreou <[EMAIL PROTECTED]> wrote:
Looks like http://www.devshed.com/ have started a series of Tapestry 4
tutorials
authored by Alexander Kolesnikov.
The first part is at
http://www.devshed.c
FYI - I just submitted an implementation of a file upload component
to JIRA.
It can be downloaded from
https://issues.apache.org/jira/browse/TAPESTRY-1354
You'll have to build it yourself, but it should "just work" using
maven.
If anyone tries it out, please let me know if you have any problems
o
Looks like http://www.devshed.com/ have started a series of Tapestry 4
tutorials
authored by Alexander Kolesnikov.
The first part is at
http://www.devshed.com/c/a/Apache/Apache-Tapestry-4-Tutorial/
and it sure looks like quite interesting.
--
Andreas Andreou - [EMAIL PROTECTED] - http://andyhot
Hi All,
at our company we are going to build a page where our clients will be able
to choose from maybe 10-15 different Portlets to be displayed (say that that
the page only can take 4-5 Portlets )
Example:
___
|_Menu_|
| X || X |
| X |
Sorry, I was in a bad mood this morning.
Just now I tried again with 4.1.2 to see if OGNL-16 is still the problem
and guess what - it isn't. I will continue with 4.1.2-SNAPSHOT.
Thanks for all the hard work Jesse!
Best,
Borut
Jesse Kuhnert wrote:
I'm not sure that's how it normally works. It
I'm not sure where you'd call it from, but
IRequestCycle.forgetPage(String) will cause it to dump any state
connected to a given page.
-Steve
Gareth wrote:
hi,
I am storing a list of items in the session using @Persist("session") and that
is working well, however I would like to remove that
I saw there are plans to get jscalendar working in T5 and that a
separate project was already created to do so but I was curious if there
are any plans to port the current dojo-based DropdownDatePicker or the
original Tapestry DatePicker to T5. The reason I ask is we had several
problems with jscal
Are we supposed to use some other form of session persistence, or is it a good
pattern to create a user Visit Object and keep all user session variables
inside it?
Thanks
___
What kind of emailer are you? Find out today
We're just getting started in Tapestry and our login is initialized as
seen below.
But a second browser (mixing IE and Foxfire) seem to "share" the login
of the first person - so I believe this is wrong.
I'm guessing that the Start class is only initialized once for all
users, is that true?
Any
hi,
I am storing a list of items in the session using @Persist("session") and that
is working well, however I would like to remove that list from the session if
that area of my application is left by the user. Is it possible to establish
via the PageDetachListener or some other method which pa
My recent experience (with 4.1.1) is that injecting relative resources
isn't working. I have a few components in a library with associated
*.script files. Some have templates and use the @Script tag in the
template. Others don't have templates and use the @InjectScript
annotation. I tried t
I didn't misunderstand the XTile purpose.
I was just hoping i could use it to implement the functionality i described,
bearing in mind that this is not in the scope of the XTile component.
Thanks,
Hugo
On 4/4/07, Andreas Andreou <[EMAIL PROTECTED]> wrote:
i'm pretty sure there's a general mis
I can see from your reply that there's no easy way of doing this :o(
I wish all of us that are stuck with JDK1.4 could have the same
functionality available as the EventListener annotation presents.
Should i create an issue for this or do you think that this will never be
implemented ?
Thanks,
H
i'm pretty sure there's a general misunderstanding of what XTile's purpose
is/was.
It's simply a way to call a server-side method, something like what DWR does
(and close to what http://issues.apache.org/jira/browse/TAPESTRY-979describes)
No page is rendered while processing that service...
See
Choose one:
1) A completely accurate tutorial.
2) Access to latest snapshots and alpha builds.
On 4/3/07, Peter Schröder <[EMAIL PROTECTED]> wrote:
i think that there is no need for a tutorial that does not work.
i would appreciate it, if someone fixes the archetype, so that beginners dont
h
Garr oh well . If only we had a servlet spec person around who would
know for sure if this is possible.
On 4/4/07, Hans Drexler <[EMAIL PROTECTED]> wrote:
On Tue, 3 Apr 2007 20:49:02 -0400, Jesse Kuhnert wrote
> You can still do HttpServletResponse.setStatus(int code, String
> message);
>
> It's
The chain of response builders all inspect the incoming http request
headers/ params to see who should handle the request type. If the
special http parameter that stands for dojo requests isn't found then
I'm guessing you're probably using the standard html response builder
which doesn't include s
I'm not sure that's how it normally works. It is resolved / fixed , just not
in 4.1.1. I couldn't even resolve it in 4.1.1 if I wanted to, because
4.1.2is the only next incremental version number available. What were
you
expecting me to do ?
On 4/4/07, Borut Bolčina <[EMAIL PROTECTED]> wrote:
Fix deploying nowSorry boot that.
On 4/4/07, Jesse Kuhnert <[EMAIL PROTECTED]> wrote:
Hey Marcus,
Yeah I just ran into that yesterday as well... Was just a dumb catch
block mistake. There will be a new tapestry update in a couple more
hours. (have to go to dr. first)
On 4/4/07, [EMAIL PROT
Sam Gendler wrote:
Generally, you would make sure the page implements the IExternalPage
interface. That allows you to specify parameters in a link and
...
--sam
Thanks a lot
Wojtek
--
Wideofelietony Tadeusza Mosza.
O biz
Why does this Code in my RegisterPage doesn´t work:
IFormComponent componentPassword = (IFormComponent)
getComponent("password");
IFormComponent componentPasswordConfirm = (IFormComponent)
getComponent("passwordConfirm");
if (!StringUtils.equals(getPas
Hi!
Can someone briefly explain why an IExternalPage is bookmarkeable while an
IPage not ?
kiuma
Generally, you would make sure the page implements the IExternalPage
interface. That allows you to specify parameters in a link and
receive them when the page is activated. If you just need to generate
the URL, you can create an instance of an ILink via the
ExternalService and then get the URL f
Hey Marcus,
Yeah I just ran into that yesterday as well... Was just a dumb catch
block mistake. There will be a new tapestry update in a couple more
hours. (have to go to dr. first)
On 4/4/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hi Jesse
first of all, thanks a lot for your efforts!
Un
Hi Jesse
first of all, thanks a lot for your efforts!
Unfortunately this doesn't seem to work for me right now
(pom.properties says it's from Mon Apr 02 09:33:49 EST 2007 )
I'll file the exception I'm getting in Jira.
Marcus
> -Original Message-
> From: Jesse Kuhnert [mailto:[EMAIL PROT
YEAAAH ... got it.
Simplie the same as the setupImplicitPage().. but setting the
setPageSpecification to false.
Furthermore I had to overwrite the ComponentSpecificationResolverImpl Class.
(Defined it in the hivemodule like this
found! thx anyway.
On 4/4/07, Andrea Chiumenti <[EMAIL PROTECTED]> wrote:
Hello,
where is the repository for Tapestry 4.1.2 ?
kiuma
Hello,
where is the repository for Tapestry 4.1.2 ?
kiuma
Hi can I obtain full textual (ie. as a String) URL to a page with some
parameters? Let's say that I have a page PageBeingCalled with a string
property:
public class PageBeingCalled extends BasePage {
public abstract void setMyProperty(String prop);
public abstract String getMyProperty();
Hey,
I have implementet the following
http://wiki.apache.org/tapestry/SpeclessPagesInWEB-INF Code and it works
fine. so I tried to it with the components too. A Component Definition looks
like that
@ComponentClass
public abstract class Border extends BaseComponent
{
}
and in the *.applic
On Tue, 3 Apr 2007 20:49:02 -0400, Jesse Kuhnert wrote
> You can still do HttpServletResponse.setStatus(int code, String
> message);
>
> It's deprecated so there may be a better way but who knows..It
> wouldn't make sense if they didn't let you do it.
>
I think the setStatus() will only affect
I'm trying to use XTile to implement a similar effect to what the
EventListener annotation does, but in JDK 1.4.
So, i have the XTile component all setup, i get it to call my listener
method and in the listener method i call
cycle.getResponseBuilder().updateComponent("mycomp").
Problem is, nothin
andyhot wrote:
Also, 2 very useful implementations of a KeyProvider and a
TreeContentProvider where added in tacos-4.1
http://fisheye3.cenqua.com/browse/tacos/tacos-4.1/trunk/tacos-core/src/java/net/sf/tacos/model/impl/BeanPropertyKeyProvider.java?r=469
http://fisheye3.cenqua.com/browse/tacos
Hy there,
Does anyone know how to localize the tacos:DatePicker. After researching the
tacos sources we noticed that all necessary resource bundles (if you wanna call
them so) are there for the underlying DHTML calendar, but the DatePicker.script
file
rom the tacos component statically includes
Is T 4.1.1 deprecated? The bug reported was for 4.1.1, not for
4.1.2-SNAPSHOT. The status should then be: Will not resolve.
Cheers,
Borut
On 3.4.2007 22:59, Jesse Kuhnert wrote:
Resolved as not valid. :)
Just so everyone else is clear, elements && component event
listeners
work equal
38 matches
Mail list logo