Great! That helped. I can now use SSOs throughout all portlets contained in a
context.
I'll start to do some real testing now and then send you diffs of the source
for tapestryportlet.
Thanks
Moritz
Am 20.04.2011 um 08:01 schrieb Markus Feindler:
> Hey Moritz,
>
> have a look at "PortletSe
Hey Moritz,
have a look at "PortletSessionImpl.class".
try to replace
session.setAttribute(name, value);
by
session.setAttribute(name, value, PortletSession.APPLICATION_SCOPE);
Do the same for all methods (like getAttribute, getAttributeNames), where a
scope can be defined:
http://www.blue
Hi Howard,
Maybe the question should really be:
Does anyone out there rely on live class
(template, message catalog, whatever) reloading in their live,
production application?
and what critical benefit does this offer?
I am with you on the paradox of choice. When I roll out new versions
On Tue, 19 Apr 2011 20:39:46 -0300, Adam Zimowski
wrote:
I plead to ask, if possible to enable a switch for template reloading.
I guess this won't be a problem, as it doesn't touch class
transformations, proxies, etc.
--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5
I plead to ask, if possible to enable a switch for template reloading.
I may be screwed, literally...
Adam
On Tue, Apr 19, 2011 at 6:36 PM, Howard Lewis Ship wrote:
> On Tue, Apr 19, 2011 at 4:22 PM, Adam Zimowski wrote:
>> Excuse me asking, but with class reloading disabled in production,
>> t
I think live reload in production is a terrible idea.
Production should be locked down. Even if you are using exploded version of
the application,
the app server should explicitly be told to reload the app, in which case live
reloading is not required.
On Apr 19, 2011, at 7:36 PM, Howard Lew
On Tue, Apr 19, 2011 at 4:22 PM, Adam Zimowski wrote:
> Excuse me asking, but with class reloading disabled in production,
> template reloading still works, correct?
>
> My designer who mostly does TML's expects templates be reloadable in
> production.
>
Well, then, you're screwed in Tapestry 5.
Excuse me asking, but with class reloading disabled in production,
template reloading still works, correct?
My designer who mostly does TML's expects templates be reloadable in production.
Adam
PS.
On a side note, what about a hybrid switch? Like component class
reloading but disable service re
On Tue, Apr 19, 2011 at 4:00 PM, Igor Drobiazko
wrote:
> I never used live reloading in production, but it might be a cool marketing
> weapon. We could promote it as seomthing similar to ZeroTurnaround's
> LiveRebel:
>
> http://www.zeroturnaround.com/liverebel/
>
> Imagine a new slogan on Tapestry
I never used live reloading in production, but it might be a cool marketing
weapon. We could promote it as seomthing similar to ZeroTurnaround's
LiveRebel:
http://www.zeroturnaround.com/liverebel/
Imagine a new slogan on Tapestry's webpage: "With Tapestry you can roll out
and roll back changes to
I have a typical address form with street, city zip textfields and two
dropdowns: country and state. The state dropdown is wrapped in a zone
so that when country is selected, states are populated:
All works okay, except for a test case my business analyst found which
I can't figure out.
You fil
It does not. I selected two items, go back to it, it remember. But if I saved
it into the database, leave the page (goto some other functionalities for
instance), come back again to the page with the multiple select, they are
obviously not selected. Question is, how do I "make/set" the two items to
Answering my own posts and asking new questions that I can maybe answer
tomorrow might have some therapeutic effects...
I've come further in my Portlets Quest by putting my 2 portlets in a single
contexts. That was my original goal. Better than having a single context for
each portlet.
But now
On Tue, Apr 19, 2011 at 2:53 PM, Howard Lewis Ship wrote:
> On Tue, Apr 19, 2011 at 11:23 AM, Thiago H. de Paula Figueiredo
> wrote:
>> On Tue, 19 Apr 2011 15:21:44 -0300, Howard Lewis Ship
>> wrote:
>>
>>> On Tue, Apr 19, 2011 at 11:07 AM, Thiago H. de Paula Figueiredo
>>> wrote:
I'm
On Tue, Apr 19, 2011 at 11:23 AM, Thiago H. de Paula Figueiredo
wrote:
> On Tue, 19 Apr 2011 15:21:44 -0300, Howard Lewis Ship
> wrote:
>
>> On Tue, Apr 19, 2011 at 11:07 AM, Thiago H. de Paula Figueiredo
>> wrote:
>>>
>>> I'm not using 5.2 yet (sigh), but I do use exploded WARs in deployment.
>
On Tue, 19 Apr 2011 15:33:53 -0300, TG wrote:
If let's say the user's select A, B and D, when the multipleselect
component is rendered, how do I pre-select A, B and D correspondingly?
If it doesn't do this automatically, like any Tapestry component provided
out of the box, it should.
--
I just realized that I have one more question, hope you do not mind.
If let's say the user's select A, B and D, when the multipleselect component
is rendered, how do I pre-select A, B and D correspondingly? What do I need
to do (without changing the HTML myself for instance, which defeats the
purp
I'm not using 5.2 yet (sigh), but I do use exploded WARs in deployment.
--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 and Hibernate consultant, developer,
and instructor
Owner, Ars Machina Tecnologia da Informação Ltda.
http://www.arsmachina.com.br
-
Out of curiosity ... does anyone out there rely on live class
(template, message catalog, whatever) reloading in their live,
production application? Now, normally, I'd think not, because the
deployed app will be packaged in a WAR and the unit of redeployment is
the entire WAR ... but I suppose som
Hi
Yes you can. In case of an enum, you can get the list using Enum.values(),
you can use EnumSelectModel as your model and the
implement MultipleValueEncoder for enum.
regards
Taha
tawus.wordpress.com
On Tue, Apr 19, 2011 at 5:28 PM, TG wrote:
> Can I replace MyObject with the Enum type e.g
For the sake of anyone else that might find this useful, this is how I
addressed it -
UserRole[] roles = UserRole.values();
for(int i = 0; i < roles.length; ++i){
myList.add(roles[i]);
}
and it works. Let m
It's called the Law of Unintended Consequences ... things that make
perfect sense once discovered, but are difficult to predict!
On Mon, Apr 18, 2011 at 10:26 PM, Dmitriy Vsekhvalnov
wrote:
> yeah, interesting it did a trick. but only when i assigned t:id for all
> components on the page.
>
> On
try surrounding the area to be updated with a div, i.e.
...(input goes here)...
and then use updateComponents="area"
On Tue, Apr 19, 2011 at 15:02, nazarhussain_s wrote:
> Hi,
> I have been trying to implement AJAX for "Insert" component but have
> been unable to do it.I had tried using "
I don't know.
However, T5 can be run alongside T4. I have an old T4 app, and write all the
new pages in T5.
--
View this message in context:
http://tapestry-users.832.n2.nabble.com/How-to-implement-AJAX-for-Insert-jwcid-in-Tapestry-4-1-tp6286999p6287572.html
Sent from the Tapestry Users mailing
Thanks Thiago - working now - simple when you know how!
Regards,
Jim.
-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org
To clarify the object oriented CSS point, I was referring to the style of
writing CSS as described at oocss.org. It outlines a convention for
writing your CSS in an "object oriented" way. Here's a nice presentation
describing it:
http://www.slideshare.net/stubbornella/object-oriented-css
I used
On Tue, 19 Apr 2011 08:27:00 -0300, Jim O'Callaghan
wrote:
In the custom field beginRender method I have:
boolean beginRender(MarkupWriter writer) {
.
.
.
} else if (useFCKEditor){
writer.element("textarea",
Hi,
I have been trying to implement AJAX for "Insert" component but have
been unable to do it.I had tried using "TextArea" type instead and it worked
out. Now I need to know what was the problem with "Insert" before
The Home.html page should accept a given input and on click of OK button
sho
Can I replace MyObject with the Enum type e.g. UserRole? Will it work?
Thanks.
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-5-Select-component-s-multiple-property-tp4304338p4313085.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
I'm having some trouble with the rendering of a custom field - I'm hoping
someone can give me a steer on the order of interpretation / execution during
rendering.
When I use the T5EasyFCKEditor in a .tml as follows:
... it works as expected and the textarea is decorated / enhanced. When I tr
On Mon, Apr 18, 2011 at 8:25 PM, Howard Lewis Ship wrote:
> Currently, we are doing quite well using the Apache Jenkins instance
> for continuous integration (rather than the Bamboo running on
> Tapestry360). We also have the Apache snapshots repository. I'd
> prefer if people stored their code
Hi,
We have 4 teams of 6-8 people each working on a pretty large Tapestry
project. We've encountered quite a few of these problems along the way ;)
I have to agree with Peter, well separated, testable code will make your
life immeasurably easier - get this bit right and everything else should
flo
Hi John,
There is no single formula, it just depends on the way you like to work..
Tapestry does make things easy though because by nature its very modular, and
IoC by nature encourages better interoperability. We currently have about 7
Tapestry applications sharing resources, so here are some
Very interesting posts Taha !
I will follow your blog :-)
Laurent
-Message d'origine-
De : Taha Hafeez [mailto:tawus.tapes...@gmail.com]
Envoyé : mardi 19 avril 2011 09:08
À : Tapestry users
Objet : Re: Blog Post: Tapestry Magic #1
And another one
http://tawus.wordpress.com/2011/04/19/
And another one
http://tawus.wordpress.com/2011/04/19/plastic-chains-simple-chainbuilder/
regards
Taha
On Mon, Apr 18, 2011 at 1:07 PM, Taha Hafeez wrote:
> Hi Thiago & everyone..
>
> Added another post
>
> http://tawus.wordpress.com/2011/04/18/meeting-plastic/
>
> regards
> Taha
>
>
> On Mon,
35 matches
Mail list logo