Re: Attribute namespace prefix usage

2015-11-23 Thread David Taylor
t;. "t:id" is used to map component definitions in templates to component injections in Java classes. "id" (without namespace) is HTML "id" attribute, and while often Tapestry generates "id" that is equal to "t:id", it is not always true (IIRC, e.g. when co

Re: Attribute namespace prefix usage

2015-11-23 Thread Cezary Biernacki
Hi David, Regarding your point 1). "t:id" is quite different than "id". "t:id" is used to map component definitions in templates to component injections in Java classes. "id" (without namespace) is HTML "id" attribute, and while often Tapestry

Attribute namespace prefix usage

2015-11-23 Thread David Taylor
Hello, I am working on a custom component library and have observed some unexpected behavior regarding attribute namespace prefix usage. Can someone please clarify the official Tapestry rules regarding the usage of component attribute namespace prefixes? Here are two scenarios that I believe

Re: 5.4-alpha jQuery namespace

2013-06-14 Thread Howard Lewis Ship
t to whatever name you like. P.S. JavaScript: define(["jquery","underscore","t5/core/dom"],function($, _, dom) { ... }); On Fri, Jun 14, 2013 at 8:12 AM, George Christman wrote: > I noticed while using jQuery in 5.4 your required to alias the jQuery > namesp

5.4-alpha jQuery namespace

2013-06-14 Thread George Christman
I noticed while using jQuery in 5.4 your required to alias the jQuery namespace with jQuery. I'm assuming this is a result of the noConflict rule within jquery.js on line 16. Is there any future plans to do away with the noConflict rule enabling us to use $ for the namespace rather than jQuery?

Re: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Thiago H de Paula Figueiredo
On Fri, 07 Dec 2012 20:05:45 -0200, Ken in Nashua wrote: The problem I have with these replies... Is no body wants to demonstrate with syntax using code Are you sure we're talking about the same user mailing list? Its guesswork sure I have used block component before but semantically how

Re: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Josh Canfield
* You are closing the t:beaneditor element. * ** On Fri, Dec 7, 2012 at 5:22 PM, Ken in Nashua wrote: > > Well here is the code... > > It yeilds same solution from Josh snippet. > > > > > >

RE: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Ken in Nashua
Well here is the code... It yeilds same solution from Josh snippet.   or   ${message:org.tynamo.i18n.

RE: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Ken in Nashua
Thanks josh... there is a bit of confusion on my part... block block parameter block component concepts and terms my fault... and if the code wasnt up to snuff I can fix that easy too. I will give that a shot

Re: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Josh Canfield
Hey Ken. Your question was poorly formatted. You didn't include the code that was failing except the snippet that was reported in the exception. Extracting that code is extra work that I have to do to figure out what you're doing wrong. If you aren't going to take the time to format good question

RE: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Ken in Nashua
The problem I have with these replies... Is no body wants to demonstrate with syntax using code Its guesswork sure I have used block component before but semantically how ? I wish things could be more generous.

Re: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Emmanuel DEMEY
I did not see it ! you have to put the parameter block inside the beaneditor component. 2012/12/7 Thiago H de Paula Figueiredo > On Fri, 07 Dec 2012 09:00:21 -0200, Ken in Nashua > wrote: > > classpath:org/tynamo/examples/**hibernatesecurity/pages/Edit.**tml: Block >> parameters are only allo

Re: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Thiago H de Paula Figueiredo
On Fri, 07 Dec 2012 09:00:21 -0200, Ken in Nashua wrote: classpath:org/tynamo/examples/hibernatesecurity/pages/Edit.tml: Block parameters are only allowed directly within component elements. The error message is very clear. :) -- Thiago H. de Paula Figueiredo -

RE: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Ken in Nashua
Thanks Manu... But it leads to another new error. ? org.apache.tapestry5.ioc.internal.OperationExceptionFailure parsing template classpath:org/tynamo/examples/hibernatesecurity/pages/Edit.tml: Block parameters are only allowed directly within component elements.locationclasspath:org/tynamo

Re: The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Emmanuel DEMEY
Have you tried this syntax ? Manu 2012/12/7 Ken in Nashua > editor field. > > Can anyone post the proper syntax? I have searched all messages and posts. > It is > -- Emmanuel DEMEY Ingénieur Etude et Développement ATOS Worldline +33 (0)6 47 47 42 02 demey.emman...@gmail.com http://em

The element has been deprecated in Tapestry 5.3 in favour of 'tapestry:parameter' namespace.

2012-12-07 Thread Ken in Nashua
Hi Folks, I am receiving the following error when attempting to model a different bean-editor field. Can anyone post the proper syntax? I have searched all messages and posts. It isn't clear to me how to specify proper syntax in order to override property fields. Thanks Ken 87.04% unrealiz

Re: tapestry namespace

2012-07-17 Thread mu
understand. thanks a lot On Tue, Jul 17, 2012 at 7:56 PM, Thiago H de Paula Figueiredo wrote: > On Tue, 17 Jul 2012 07:57:54 -0300, mu wrote: > >> Hi all, > > > Hi, Mu! > > >> > context="user.name">welcome >> "id" has a prefix "t", but "context" has not. why? when should the "t" >> prefix be use

Re: tapestry namespace

2012-07-17 Thread Thiago H de Paula Figueiredo
On Tue, 17 Jul 2012 07:57:54 -0300, mu wrote: Hi all, Hi, Mu! context="user.name">welcome "id" has a prefix "t", but "context" has not. why? when should the "t" prefix be used? In t:id, which is the Tapestry component id attribute, the prefix is obligatory because it's very common for H

Re: Parameter namespace usage.

2011-06-16 Thread Lenny Primak
; >> It seems to me that the parameter namespace is optional. Everything works >> with or without it. > > Please be more specific. > >> Is there a specific recommended use of this namespace or am I missing >> something?

Re: Parameter namespace usage.

2011-06-16 Thread Thiago H. de Paula Figueiredo
On Thu, 16 Jun 2011 12:52:27 -0300, Lenny Primak wrote: Hi! Hi! It seems to me that the parameter namespace is optional. Everything works with or without it. Please be more specific. Is there a specific recommended use of this namespace or am I missing something? Passing block

Parameter namespace usage.

2011-06-16 Thread Lenny Primak
Hi! It seems to me that the parameter namespace is optional. Everything works with or without it. Is there a specific recommended use of this namespace or am I missing something? Thanks. - To unsubscribe, e-mail: users

Re: Getting "Library 'contrib' not found in application namespace" Exception while using MultiplePropertySelection Component

2011-06-01 Thread Andreas Andreou
ontrib' not found in application namespace. > org.apache.hivemind.ApplicationRuntimeException > location:       context:/WEB-INF/Home.html, line 3 > 1       > 2       > 3       model="ognl:sampleModel"> > 4       > 5       > > > PFB the code in my

Getting "Library 'contrib' not found in application namespace" Exception while using MultiplePropertySelection Component

2011-06-01 Thread nazarhussain_s
Hi, In my Home.html i am having a multi-select drop down. While running the Application i am getting the following Exception [ +/- ] Exception: Library 'contrib' not found in application namespace. org.apache.hivemind.ApplicationRuntimeException location: context:/WEB-INF

Re: tapestry xpath and t: namespace

2009-05-28 Thread Joost Schouten (mailing lists)
> quite complex to attempt; there are probably lots of corner cases such > as >> > components that don't generate an element (and so have no suitable > place >> > in the output to write the attributes). >> > >> > I'm interested to know in what way this &q

Re: tapestry xpath and t: namespace

2009-05-28 Thread Paul Field
ven better" for > > you... perhaps there is another way of approaching the problem. So far, > > I've written a lot of tests using PageTester and the tapestry-xpath > > library and I'm just using HTML "id" attributes with a little XPath and > > it&

Re: tapestry xpath and t: namespace

2009-05-27 Thread Joost Schouten (mailing lists)
gt; > -- > Paul Field > Research IT > Deutsche Bank > > > > > "Joost Schouten (mailing lists)" > 26/05/2009 22:23 > Please respond to > "Tapestry users" > > > To > Tapestry users > cc > > Subject > Re: tap

Re: tapestry xpath and t: namespace

2009-05-27 Thread Paul Field
7;m just using HTML "id" attributes with a little XPath and it's working great. Paul -- Paul Field Research IT Deutsche Bank "Joost Schouten (mailing lists)" 26/05/2009 22:23 Please respond to "Tapestry users" To Tapestry users cc Subj

Re: tapestry xpath and t: namespace

2009-05-26 Thread Joost Schouten (mailing lists)
I guess I'm looking for a way to tell the MarkupWriter (or other responsible DOM generators) to also output the t namespace in the generated html. In particulair, I'm after having the t:id added. Would this be hard to add, and what would be my entrypoint to start on a patch. The idea

Re: tapestry xpath and t: namespace

2009-05-26 Thread Thiago H. de Paula Figueiredo
y to tell > tapestry to print out all t: namespace params in the output xhtml (for > testing purposes). Targeting specific components on a page will be > made a lot easier. Does such a setting exist? I guess it doesn't, as the DOM XPaths works on is the generated HTML output, not th

Re: tapestry xpath and t: namespace

2009-05-26 Thread spaway
t would make life even better is if I have a way to tell > tapestry to print out all t: namespace params in the output xhtml (for > testing purposes). Targeting specific components on a page will be > made a lot easier. Does such a setting exist

tapestry xpath and t: namespace

2009-05-25 Thread Joost Schouten (mailing lists)
First off, I love the new xpath project. Unit testing components and pages is a lot easier because of it. One thing that would make life even better is if I have a way to tell tapestry to print out all t: namespace params in the output xhtml (for testing purposes). Targeting specific components

namespace feature in 5.1

2009-02-27 Thread Peter Stavrinides
Hi All, Regarding the new namespace feature in 5.1, introduced here: https://issues.apache.org/jira/browse/TAP5-66 Can anyone point me to an example of how to use this. I have tried to use it and failed to get it right. Thanks, Peter

Re: tapestry:parameter namespace

2008-12-19 Thread Andy Pahne
ried using the xmlns:p="tapestry:parameter" namespace a couple times, but it doesn't seem to work. Also, the manual says t:parameter is deprecated, but then says that the new namespace was introduced in Tapestry 5.1 - which I don't think exists yet? Any ideas? From th

Re: tapestry:parameter namespace

2008-12-18 Thread Howard Lewis Ship
h an else block), > but it diesn't seem to work. But I did not have time to investigate further. > > Andy > > > > James Hillyerd schrieb: >> >> I've tried using the xmlns:p="tapestry:parameter" namespace a couple >> times, but it doesn'

Re: tapestry:parameter namespace

2008-12-18 Thread Andy Pahne
he xmlns:p="tapestry:parameter" namespace a couple times, but it doesn't seem to work. Also, the manual says t:parameter is deprecated, but then says that the new namespace was introduced in Tapestry 5.1 - which I don't think exists yet? Any ideas? From the manual: Parameter Names

tapestry:parameter namespace

2008-12-17 Thread James Hillyerd
I've tried using the xmlns:p="tapestry:parameter" namespace a couple times, but it doesn't seem to work. Also, the manual says t:parameter is deprecated, but then says that the new namespace was introduced in Tapestry 5.1 - which I don't think exists yet? Any ideas? >

Re: Getting namespace error when partial-updating a zone with a block

2008-10-15 Thread Hugo Palma
I would prefer multiple whatever updates too, but as long as this block approach works i guess it's an "ok" workaround. Regarding ur solution, if that was the cause shouldn't the render fail when i add elements using the tapestry namespace to the block and not whe

Re: Getting namespace error when partial-updating a zone with a block

2008-10-15 Thread Thiago H. de Paula Figueiredo
t/zone/block/whatever in Tapestry out of the box. So, the page renders just fine. But, when the event is executed i get the following error logged and nothing is updated on the UI: [ERROR] TapestryModule.RequestExceptionHandler Processing of request failed with uncaught exception: Namespace prefix f

Getting namespace error when partial-updating a zone with a block

2008-10-15 Thread Hugo Palma
e event is executed i get the following error logged and nothing is updated on the UI: [ERROR] TapestryModule.RequestExceptionHandler Processing of request failed with uncaught exception: Namespace prefix for URI 'http://www.w3.org/1999/xhtml' <http://www.w3.org/1999/xh

Re: Namespace prefix for URI 'xmlns' is not defined.

2008-10-08 Thread Joel Halbert
- I take it the problem is not related to https://issues.apache.org/jira/browse/TAP5-125 ? Thx Joel Joel Halbert wrote: Hi, I'm trying to set up my first page in Tapestry but I don't seem to be able to shake this exception: java.lang.RuntimeException: Namespace prefix for U

Re: Namespace prefix for URI 'xmlns' is not defined.

2008-10-08 Thread Joel Halbert
? Thx Joel Joel Halbert wrote: Hi, I'm trying to set up my first page in Tapestry but I don't seem to be able to shake this exception: java.lang.RuntimeException: Namespace prefix for URI 'xmlns' is not defined. at org.apache.tapestry5.dom.Element.toNamespacePrefix(E

Namespace prefix for URI 'xmlns' is not defined.

2008-10-08 Thread Joel Halbert
Hi, I'm trying to set up my first page in Tapestry but I don't seem to be able to shake this exception: java.lang.RuntimeException: Namespace prefix for URI 'xmlns' is not defined. at org.apache.tapestry5.dom.Element.toNamespacePrefix(Element.java:502) I'd be gra

Re: namespace

2008-09-12 Thread Luther Baker
Ahhh ... now that does make perfect sense. Thanks Uli. On Thu, Sep 11, 2008 at 4:55 PM, Ulrich Stärk <[EMAIL PROTECTED]> wrote: > You always have to tell the xml parser the namespace of an attribute if two > attributes with the same name collide. In this case Tapestrys id attri

Re: namespace

2008-09-11 Thread Ulrich Stärk
You always have to tell the xml parser the namespace of an attribute if two attributes with the same name collide. In this case Tapestrys id attribute would collide with the (X)HTML id attribute, therefore you have to distinguish it with t:id. Cheers, Uli Luther Baker schrieb: I have what I

namespace

2008-09-11 Thread Luther Baker
I have what I hope is a simple question. Sometimes, the attributes in a Tapestry specific component tag require the tapestry namespace. Sometimes they do not. : Here, "t" is required for t:id ... does ID always required the "t&qu

Re: Tap 5.0.9 : Namespace prefix for URI http://tapestry.apache.. not defined

2008-02-01 Thread Howard Lewis Ship
I have pasted the wrong > .tml in my original email. > > Shing > > --- Jonathan Barker <[EMAIL PROTECTED]> > wrote: > > > > > > No guarantees that this is the same thing, but I had > > a strange issue once > > when my html tag was split across two li

RE: Tap 5.0.9 : Namespace prefix for URI http://tapestry.apache.. not defined

2008-02-01 Thread Shing Hing Man
han Barker <[EMAIL PROTECTED]> wrote: > > No guarantees that this is the same thing, but I had > a strange issue once > when my html tag was split across two lines. > > I couldn't reproduce it now, so this may not be > relevant, but try making the > whole tag

RE: Tap 5.0.9 : Namespace prefix for URI http://tapestry.apache.. not defined

2008-01-31 Thread Jonathan Barker
No guarantees that this is the same thing, but I had a strange issue once when my html tag was split across two lines. I couldn't reproduce it now, so this may not be relevant, but try making the whole tag with namespace declaration on the same line. Jonathan > -Original

Tap 5.0.9 : Namespace prefix for URI http://tapestry.apache.. not defined

2008-01-31 Thread Shing Hing Man
I have just upgraded to Tap 5.0.9 from 5.0.7. There is a RuntimeException when rendering the .tml page given below. Strangely, I do not have the exception for other similar .tml pages. It would be appreciated if someone could show me a fix. Shing java.lang.RuntimeException Namespace

Re: [T5] xml namespace support (facebook, fbml)

2007-10-02 Thread Fernando Padilla
Well. I haven't kept up the patches because I haven't gathered the courage to change all my templates from .html to .tml. :) :) But I should get to that soon. But just as an update, yes we created a facebook app using facebook's fbml markup using T5 (with namespace patches),

Re: [T5] xml namespace support (facebook, fbml)

2007-10-02 Thread Jon McCarty
Just to prove this is live: >>> The current time is: Thu Aug 30 13:43:19 PDT 2007. >>> >>>[ /fandom/start refresh ] >>> >>> >>> >>>

Re: @InjectPage in library -- Page 'XXX' not found in application namespace.

2007-09-18 Thread andyhot
- Add a JIRA for namespace in ExternalLink AFAICT, it is missing - i can add it soon enough. - Add another one for enhancing the InjectPage annotation to accept a boolean parameter, something like useCurrentNamespace - this too can be done pretty quickly - InjectPageLink and

Re: @InjectPage in library -- Page 'XXX' not found in application namespace.

2007-09-18 Thread carlos f
Renat Zubairov wrote: > > Your assumptions are completely correct, you can address anything you want > from the library (e.g. pages) inside the library namespace via > namespace:BlahBlah format. > Renat, thanks for the reply. Unfortunately I thought namespace handling woul

Re: @InjectPage in library -- Page 'XXX' not found in application namespace.

2007-09-17 Thread Renat Zubairov
Hello Carlos, Your assumptions are completely correct, you can address anything you want from the library (e.g. pages) inside the library namespace via namespace:BlahBlah format. Renat On 14/09/2007, carlos f <[EMAIL PROTECTED]> wrote: > > > carlos f wrote: > > >

Re: @InjectPage in library -- Page 'XXX' not found in application namespace.

2007-09-14 Thread carlos f
gt; BTW - I am using tap 4.1.2. It looks like my assumption is incorrect: http://www.nabble.com/Default-namespace-in-a-library---tf3064457.html#a8522702 Is the "default library namespace" scope only valid in a few spots such as PageLink and entries in page/component specificati

@InjectPage in library -- Page 'XXX' not found in application namespace.

2007-09-14 Thread carlos f
e library. Before I spend the better part of my afternoon tracking this down . . . is my assumption incorrect? Is there something about libraries that won't allow me to do this? Carlos -- View this message in context: http://www.nabble.com/%40InjectPage-in-libraryPage-%27XXX%27

Re: [T5] xml namespace support (facebook, fbml)

2007-09-05 Thread Fernando Padilla
I was wondering if people could look into this patch and make comments. I would love to get it accepted sooner rather than later. :) https://issues.apache.org/jira/browse/TAPESTRY-1600 Josh Canfield wrote: > This has been mentioned as a bug in this list, search for *T5: XML > declaration is m

Re: [T5] xml namespace support (facebook, fbml)

2007-09-04 Thread Charles Mason
place element/attribute names with desired versions: "fm_fbml" to > "fb:fbml". This is how I'll start, but it would be much better to have > tapestry support namespaces properly. > > 2) start submitting patches to have tapestry support namespaces: > a) Mai

Re: [T5] xml namespace support (facebook, fbml)

2007-08-31 Thread Nick Westgate
erly. 2) start submitting patches to have tapestry support namespaces: a) Maintain Namespace in Tapestry DOM 1) add url to tapestry.dom nodes 2) have tapestry parser set them 3) the information will be available for mixins/components b) We can then print them out, by default or by con

Re: [T5] xml namespace support (facebook, fbml)

2007-08-30 Thread Fernando Padilla
". This is how I'll start, but it would be much better to have tapestry support namespaces properly. 2) start submitting patches to have tapestry support namespaces: a) Maintain Namespace in Tapestry DOM 1) add url to tapestry.dom nodes 2) have tapestry parser set them 3) the inf

Re: [T5] xml namespace support (facebook, fbml)

2007-08-30 Thread Nick Westgate
Or possibly patch TemplateParser to do what you want. Tapestry uses SAX. See: org.apache.tapestry.internal.services.TemplateParserImpl Cheers, Nick. Josh Canfield wrote: This has been mentioned as a bug in this list, search for *T5: XML declaration is missing from rendered page. Any workrounds

Re: [T5] xml namespace support (facebook, fbml)

2007-08-30 Thread Josh Canfield
This has been mentioned as a bug in this list, search for *T5: XML declaration is missing from rendered page. Any workrounds?* While I haven't tried this, I imagine that you could create components to work around this for now using MarkupWriter.writeRaw(). Or possibly use the OutputRaw component.

[T5] xml namespace support (facebook, fbml)

2007-08-30 Thread Fernando Padilla
Hi. We are going to be writing a facebook application, and we want to use Tapestry 5. To do so, we have to generate FBML: http://wiki.developers.facebook.com/index.php/FBML We came hit a pretty big snag, in that it doesn't look like tapestry 5 support namespaces/prefixes. Below you see the tape

Re: not found in application namespace ERROR!!

2007-08-13 Thread dinesh kumar
> > > > > > > > > > > Page3.html > > > > > > > > > > > > > > > > > > > > > > > > > > > > welcome to page 3 > > > > > > > >

Re: not found in application namespace ERROR!!

2007-08-13 Thread Marcos Chicote
t; > > > > > > > welcome to page 3 > > > > > > > > > > > > -- > > > > > > --- > > &g

Re: not found in application namespace ERROR!!

2007-08-13 Thread dinesh kumar
-- > > > --- > > An exception has occurred. > > > > You may continue by *restarting< > > http://localhost:8084/Form

Re: not found in application namespace ERROR!!

2007-08-13 Thread Ulrich Stärk
-- --- An exception has occurred. You may continue by *restarting< http://localhost:8084/Form/app?service=restart> * the session. [ +/- ] Exception: <http://localhost:8084/Form/app?page=Page3&service=page>Page 'Page3' not foun

not found in application namespace ERROR!!

2007-08-13 Thread dinesh kumar
*restarting< http://localhost:8084/Form/app?service=restart> * the session. [ +/- ] Exception: <http://localhost:8084/Form/app?page=Page3&service=page>Page 'Page3' not found in application namespace. org.apache.tapestry.PageNotFoundException Page 'Page3' not found

t5 html tag namespace

2007-07-05 Thread Bartlomiej Styrylski
Hi I need to output the html tag with some extra xml namespace, i.e.: Simply adding the namespace definition to the html tag in the template doesn't do the job, as it's lost during parsing. Can you give me any hint how to achieve it? Che

Namespace and @InjectPage

2007-06-07 Thread Stephane Decleire
Hi, Is there a way to set a namespace in the @InjectPage annotation ? Stephane - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Default namespace in a library ?

2007-01-23 Thread Stephane Decleire
mespace().getId() which returns you the id of the namespace the page is currently registered in, so if you want to link ot a page with in the same namespace you can link to getNamespace().getId() + ":" + pageName If someone has a more ellegant solution, I would also be very h

Re: Default namespace in a library ?

2007-01-23 Thread Robert Binna
the @InjectPage annotation which needs a constant value ... :-( -- Stéphane Decleire Robert Binna a écrit : Hi You could try the following. In the page you have the method getNamespace().getId() which returns you the id of the namespace the page is currently registered in, so if you wa

Re: Default namespace in a library ?

2007-01-23 Thread Stephane Decleire
Thanks Robert but that solution can't be used in the @InjectPage annotation which needs a constant value ... :-( -- Stéphane Decleire Robert Binna a écrit : Hi You could try the following. In the page you have the method getNamespace().getId() which returns you the id of the namespac

Re: Default namespace in a library ?

2007-01-23 Thread Robert Binna
Hi You could try the following. In the page you have the method getNamespace().getId() which returns you the id of the namespace the page is currently registered in, so if you want to link ot a page with in the same namespace you can link to getNamespace().getId() + ":" + pa

Default namespace in a library ?

2007-01-23 Thread Stephane Decleire
Hi, Is there a default namespace that one can use in a library similar to the default "application" namespace for an application ? I have 2 pages in a library (say Page1 and Page2). When i make a link on one of those pages from an application page, i use the id i have declared in t

[ANN] global namespace for Tapestry 4

2007-01-13 Thread Norbert Sándor
Dear Tapestry Users, The first version of the "Tapestry Namespace Utilities" is available at http://www.erinors.com/developer/project/tapestry-nsutils/. Its main feature is the implementation of "global namespace" for Tapestry. Comments and ideas are welcome! With b

Re: "Library 'contrib' not found in application namespace" when use Tree compone

2007-01-10 Thread Zha Minjie
ary 'contrib' not found in application namespace" when use Tree component Date: Wed, 10 Jan 2007 15:20:22 +0100 try to write some nonsence the application xml so it won't render (an open ), I would suspect it is not being referenced. then check that tapestry servlet name is

Re: "Library 'contrib' not found in application namespace" when use Tree compone

2007-01-10 Thread Zha Minjie
ary 'contrib' not found in application namespace" when use Tree component Date: Wed, 10 Jan 2007 15:20:22 +0100 try to write some nonsence the application xml so it won't render (an open ), I would suspect it is not being referenced. then check that tapestry servlet name is

Re: "Library 'contrib' not found in application namespace" when use Tree component

2007-01-10 Thread Ron Piterman
.apache.org/tapestry/dtd/Tapestry_4_0.dtd";> > > specification-path="classpath:/org/apache/tapestry/contrib/Contrib.library"> > > > > > But, when I run the application, it still has: > Library 'con' not found in application namespace. &g

"Library 'contrib' not found in application namespace" when use Tree component

2007-01-10 Thread Zha Minjie
uot;classpath:/org/apache/tapestry/contrib/Contrib.library"> But, when I run the application, it still has: Library 'con' not found in application namespace. Stack Trace: * org.apache.tapestry.engine.Namespace.cre

did the namespace for components change recently?

2006-10-30 Thread Patrick Moore
I have a component in the body of @For compnent that is suddenly complaining. It looks like it is seeing and processing the same annotation twice: Very frustrated... last week has been mostly going backwards... Error: An error occured processing annotation @org.apache.tapestry.annotations.Compon

Re: [Tacos-devel] Library 'tacos' not found in application namespace

2006-10-27 Thread Ken nashua
Sorry about the cross post... wanted to put this one to bed. It turned out to be my web.xml I was specifying tap.proto-1.0 as opposed to tap.proto Versioning should be associated with deployment and not necessarily name spaces and such inside web.xml Now I have a stackoverflow exception... y

RE: Library 'tacos' not found in application namespace

2006-10-26 Thread Ken nashua
pplication namespace. Still blue in the face. You intertvention is much appreciated. Thanks ---> Here is my application file (which is identical to TacosDemo.application : http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd";> engine-class="org.apache.tapestry.engine

Re: Library 'tacos' not found in application namespace

2006-10-23 Thread Sam Gendler
I don't know anything about maven, but you definitely need to the tacos jar included in your webapp somehow. --sam On 10/23/06, Ken nashua <[EMAIL PROTECTED]> wrote: Folks, My code seems to be in order... Can anyone pick this out? There hs not been much docs on namespace(s). I

Library 'tacos' not found in application namespace

2006-10-23 Thread Ken nashua
Folks, My code seems to be in order... Can anyone pick this out? There hs not been much docs on namespace(s). I set the id="contrib" . Is this not sufficient? Do I need to add tacos to my pom.xml as a dependency? Thanks in advance --- Here is my application file http://jakarta.

Re: application namespace message catalog question

2006-09-22 Thread soir
y specification resides. > > Original-Nachricht > Datum: Thu, 21 Sep 2006 23:22:28 -0700 (PDT) > Von: soir <[EMAIL PROTECTED]> > An: users@tapestry.apache.org > Betreff: Re: application namespace message catalog question > >> >> I hav

Re: application namespace message catalog question

2006-09-22 Thread Mark Lehmacher
ff: Re: application namespace message catalog question > > I have same issue. Application-level message catalog is not accessible > from > the components which are placed into same application library. > > > Scott Jarvi wrote: > > > > Hi, > > > > I ha

Re: application namespace message catalog question

2006-09-21 Thread soir
Any ideas?? > > Regards, > Scott > > -- View this message in context: http://www.nabble.com/application-namespace-message-catalog-question-tf2314010.html#a6441707 Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: application namespace message catalog question

2006-09-21 Thread Martin Strand
I have no idea what could be wrong, nested components work fine with my global message catalog... Sorry. :( On Thu, 21 Sep 2006 22:39:45 +0200, Scott Jarvi <[EMAIL PROTECTED]> wrote: Yes, we have an .application and .properties in the same directory. This works for us as well, fo

Re: application namespace message catalog question

2006-09-21 Thread Scott Jarvi
Yes, we have an .application and .properties in the same directory. This works for us as well, for all of our pages that share resource keys. In this specific case, my component is referenced in the page, but nested inside our custom border component - is it the nested component that could

Re: application namespace message catalog question

2006-09-21 Thread Martin Strand
It should be working, it does for me. Did you put it in the same dir as your .application file? YourApp.application YourApp_en.properties On Thu, 21 Sep 2006 21:41:00 +0200, Scott Jarvi <[EMAIL PROTECTED]> wrote: Hi, I have a component that makes use of localized messages that may be sh

application namespace message catalog question

2006-09-21 Thread Scott Jarvi
Hi, I have a component that makes use of localized messages that may be shared by other components and pages. Because of this, I've put the keys in my application-level message catalog. For some reason, the keys are not found when the component is rendered on my page. This seems like it should

RE: Inject and the infrastructure namespace

2006-07-14 Thread Jim Steinberger
-to-interfaces. Jim -Original Message- From: Epstein, Ezra [mailto:[EMAIL PROTECTED] Sent: Friday, July 14, 2006 1:35 PM To: Tapestry users Subject: RE: Inject and the infrastructure namespace Yes, but the static (.xml) config'd part of it could be inspected dynamically. 'course

RE: Inject and the infrastructure namespace

2006-07-14 Thread Epstein, Ezra
users' Subject: RE: Inject and the infrastructure namespace Service providers don't have "contents." Take the "instance" provider, for example. It can provide an object of any class which has a public no-argument constructor. Or, consider the "class" pr

RE: Inject and the infrastructure namespace

2006-07-14 Thread James Carman
me. So, there's no real way for it to be able to tell you "here are all of the objects that I can provide." -Original Message- From: Epstein, Ezra [mailto:[EMAIL PROTECTED] Sent: Friday, July 14, 2006 1:21 PM To: Tapestry users Subject: RE: Inject and the infrastructu

RE: Inject and the infrastructure namespace

2006-07-14 Thread James Carman
, July 14, 2006 1:21 PM To: Tapestry users Subject: RE: Inject and the infrastructure namespace http://tapestry.apache.org/tapestry4/tapestry/apidocs/org/apache/tapestry/se rvices/Infrastructure.html But clearly the converse is not true: there are properties available via the infrastructure: prefix

RE: Inject and the infrastructure namespace

2006-07-14 Thread Epstein, Ezra
containers. Thanks, Ezra Epstein -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: Thursday, July 13, 2006 5:28 PM To: 'Tapestry users' Subject: RE: Inject and the infrastructure namespace Take a look at the Infrastructure interface. Any property from the i

RE: Inject and the infrastructure namespace GENERALIZED

2006-07-13 Thread James Carman
7:32 PM To: Tapestry users Subject: RE: Inject and the infrastructure namespace GENERALIZED More generally, how does one introspect the entire HiveMind registry? I'd really like to list out the top level entry points (namespaces) and then crawl those printing out what I find. Is there some sample code

RE: Inject and the infrastructure namespace

2006-07-13 Thread James Carman
namespace This: @InjectObject("infrastructure:context") works fine. And of course there's the 'request' available from infrastructure. Can someone kindly point me to the docs that list all the possible values that may be placed after the "infrastructure:" t

RE: Inject and the infrastructure namespace GENERALIZED

2006-07-13 Thread Epstein, Ezra
stein, Ezra [mailto:[EMAIL PROTECTED] Sent: Thursday, July 13, 2006 4:07 PM To: Tapestry users Subject: Inject and the infrastructure namespace This: @InjectObject("infrastructure:context") works fine. And of course there's the 'request' available from infrastructure.

  1   2   >