You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Andy Huhn <am...@hrtc.net> on 2008/04/03 06:57:52 UTC

[T5]: label in properties file

OK, this is driving me crazy.

I have a .tml named FindCoops.tml that contains the following fragment:

<t:label for="userPstlCodeField"/>
<input t:type="TextField" t:id="userPstlCodeField"
t:value="userPstlCode" />

In the same directory as the corresponding .java page file, I have a
file named FindCoops.properties that contains the following:

userPstlCodeField-label=ZIP

Yet when the input is rendered, it is rendered with a label of "User
Pstl Code Field".  Shouldn't it be rendered as ZIP?

I'm on T5.0.11.

Thanks!
Andy


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5] Interesting bug of link render?

Posted by Ted Steen <te...@gmail.com>.
A fix is committed, this issue will close when the commit goes through.
https://issues.apache.org/jira/browse/TAPESTRY-2333

2008/4/4, Howard Lewis Ship <hl...@gmail.com>:
> I think it's a bug; I believe there's an error related to the
>  RequestPathOptimizer ... the code that generates relative URLs from
>  Link instances; I think there's a bug there related to a trailing
>  slash in the request.  I noticed it because with a trailing slash,
>  relative URLs to assets are often broken.
>
>
>  On Fri, Apr 4, 2008 at 10:16 AM, Peter Beshai <pe...@gmail.com> wrote:
>  > I think this may work (as a workaround at least):
>  >
>  >  public class Start
>  >  {
>  >    private Integer _result;
>  >    public Integer getResult() {
>  >        return _result;
>  >    }
>  >
>  >    public void setResult(Integer result) {
>  >        _result = result;
>  >    }
>  >    Integer onPassivate() {
>  >        return _result;
>  >    }
>  >    Object onActivate(Integer result) {
>  >        _result = result;
>  >        if(result != null)
>  >              return null; // continue activating the page with context
>  >         else
>  >               return Start.class; // since the context is invalid, return
>  >  the page without context. This may happen automatically if you just change
>  >  the int to Integer and leave this method untouched, but I'm unsure.
>  >    }
>  >  }
>  >
>  >
>  >  Peter Beshai
>  >
>  >
>  >
>  >
>  >  On Thu, Apr 3, 2008 at 6:25 AM, dhning <dh...@gaonline.com.cn> wrote:
>  >
>  >  > Hi,
>  >  >
>  >  > I get a intersting problem:
>  >  >
>  >  > Start.java:
>  >  > public class Start
>  >  > {
>  >  >    private int _result;
>  >  >    public int getResult() {
>  >  >        return this._result;
>  >  >    }
>  >  >
>  >  >    public void setResult(int result) {
>  >  >        _result = result;
>  >  >    }
>  >  >    int onPassivate() {
>  >  >        return _result;
>  >  >    }
>  >  >    void onActivate(int result) {
>  >  >        _result = result;
>  >  >    }
>  >  > }
>  >  >
>  >  > Start.tml
>  >  > <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
>  >  >    <head>
>  >  >        <title>t5first Start Page</title>
>  >  >    </head>
>  >  >    <body>
>  >  >        <h1>t5first Start Page</h1>
>  >  >
>  >  >            <a href="#" t:type="actionlink" t:id="view">View</a>
>  >  >
>  >  >    </body>
>  >  > </html>
>  >  >
>  >  > Steps:
>  >  > When inputting url such as /t5start/start, no problem. But when I input
>  >  > url /t5start/start/ (pay attention to this redundant /), the href of
>  >  > actionlink component will be rendered as "
>  >  > http://localhost:8080/t5first/start/start.view?t:ac=0", then I click on
>  >  > "view" link, exception happens.
>  >  > a.. org.apache.tapestry.runtime.ComponentEventException
>  >  > Exception in method com.yanziwang.pages.Start.onActivate(int) (at
>  >  > Start.java:34), parameter #1: Coercion of start.view to type
>  >  > java.lang.Integer (via String --> Long, Long --> Integer) failed: For input
>  >  > string: "start.view"
>  >  >  context
>  >  >    a.. start.view
>  >  >  eventType
>  >  >  activate
>  >  > a.. java.lang.NumberFormatException
>  >  > For input string: "start.view"
>  >  >
>  >  > The correct url of view component should be "
>  >  > http://localhost:8080/t5first/start.view?t:ac=0"
>  >  >
>  >  > How to handle such problems, please help.
>  >  >
>  >  > Thanks!
>  >  > DH
>  >
>
>
>
>
> --
>  Howard M. Lewis Ship
>
>  Creator Apache Tapestry and Apache HiveMind
>
>  ---------------------------------------------------------------------
>  To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>  For additional commands, e-mail: users-help@tapestry.apache.org
>
>


-- 
/ted

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5] Interesting bug of link render?

Posted by Howard Lewis Ship <hl...@gmail.com>.
I think it's a bug; I believe there's an error related to the
RequestPathOptimizer ... the code that generates relative URLs from
Link instances; I think there's a bug there related to a trailing
slash in the request.  I noticed it because with a trailing slash,
relative URLs to assets are often broken.

On Fri, Apr 4, 2008 at 10:16 AM, Peter Beshai <pe...@gmail.com> wrote:
> I think this may work (as a workaround at least):
>
>  public class Start
>  {
>    private Integer _result;
>    public Integer getResult() {
>        return _result;
>    }
>
>    public void setResult(Integer result) {
>        _result = result;
>    }
>    Integer onPassivate() {
>        return _result;
>    }
>    Object onActivate(Integer result) {
>        _result = result;
>        if(result != null)
>              return null; // continue activating the page with context
>         else
>               return Start.class; // since the context is invalid, return
>  the page without context. This may happen automatically if you just change
>  the int to Integer and leave this method untouched, but I'm unsure.
>    }
>  }
>
>
>  Peter Beshai
>
>
>
>
>  On Thu, Apr 3, 2008 at 6:25 AM, dhning <dh...@gaonline.com.cn> wrote:
>
>  > Hi,
>  >
>  > I get a intersting problem:
>  >
>  > Start.java:
>  > public class Start
>  > {
>  >    private int _result;
>  >    public int getResult() {
>  >        return this._result;
>  >    }
>  >
>  >    public void setResult(int result) {
>  >        _result = result;
>  >    }
>  >    int onPassivate() {
>  >        return _result;
>  >    }
>  >    void onActivate(int result) {
>  >        _result = result;
>  >    }
>  > }
>  >
>  > Start.tml
>  > <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
>  >    <head>
>  >        <title>t5first Start Page</title>
>  >    </head>
>  >    <body>
>  >        <h1>t5first Start Page</h1>
>  >
>  >            <a href="#" t:type="actionlink" t:id="view">View</a>
>  >
>  >    </body>
>  > </html>
>  >
>  > Steps:
>  > When inputting url such as /t5start/start, no problem. But when I input
>  > url /t5start/start/ (pay attention to this redundant /), the href of
>  > actionlink component will be rendered as "
>  > http://localhost:8080/t5first/start/start.view?t:ac=0", then I click on
>  > "view" link, exception happens.
>  > a.. org.apache.tapestry.runtime.ComponentEventException
>  > Exception in method com.yanziwang.pages.Start.onActivate(int) (at
>  > Start.java:34), parameter #1: Coercion of start.view to type
>  > java.lang.Integer (via String --> Long, Long --> Integer) failed: For input
>  > string: "start.view"
>  >  context
>  >    a.. start.view
>  >  eventType
>  >  activate
>  > a.. java.lang.NumberFormatException
>  > For input string: "start.view"
>  >
>  > The correct url of view component should be "
>  > http://localhost:8080/t5first/start.view?t:ac=0"
>  >
>  > How to handle such problems, please help.
>  >
>  > Thanks!
>  > DH
>



-- 
Howard M. Lewis Ship

Creator Apache Tapestry and Apache HiveMind

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5] Interesting bug of link render?

Posted by Peter Beshai <pe...@gmail.com>.
I think this may work (as a workaround at least):

public class Start
{
   private Integer _result;
   public Integer getResult() {
       return _result;
   }

   public void setResult(Integer result) {
       _result = result;
   }
   Integer onPassivate() {
       return _result;
   }
   Object onActivate(Integer result) {
       _result = result;
       if(result != null)
             return null; // continue activating the page with context
        else
              return Start.class; // since the context is invalid, return
the page without context. This may happen automatically if you just change
the int to Integer and leave this method untouched, but I'm unsure.
   }
}


Peter Beshai


On Thu, Apr 3, 2008 at 6:25 AM, dhning <dh...@gaonline.com.cn> wrote:

> Hi,
>
> I get a intersting problem:
>
> Start.java:
> public class Start
> {
>    private int _result;
>    public int getResult() {
>        return this._result;
>    }
>
>    public void setResult(int result) {
>        _result = result;
>    }
>    int onPassivate() {
>        return _result;
>    }
>    void onActivate(int result) {
>        _result = result;
>    }
> }
>
> Start.tml
> <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
>    <head>
>        <title>t5first Start Page</title>
>    </head>
>    <body>
>        <h1>t5first Start Page</h1>
>
>            <a href="#" t:type="actionlink" t:id="view">View</a>
>
>    </body>
> </html>
>
> Steps:
> When inputting url such as /t5start/start, no problem. But when I input
> url /t5start/start/ (pay attention to this redundant /), the href of
> actionlink component will be rendered as "
> http://localhost:8080/t5first/start/start.view?t:ac=0", then I click on
> "view" link, exception happens.
> a.. org.apache.tapestry.runtime.ComponentEventException
> Exception in method com.yanziwang.pages.Start.onActivate(int) (at
> Start.java:34), parameter #1: Coercion of start.view to type
> java.lang.Integer (via String --> Long, Long --> Integer) failed: For input
> string: "start.view"
>  context
>    a.. start.view
>  eventType
>  activate
> a.. java.lang.NumberFormatException
> For input string: "start.view"
>
> The correct url of view component should be "
> http://localhost:8080/t5first/start.view?t:ac=0"
>
> How to handle such problems, please help.
>
> Thanks!
> DH

[T5] Interesting bug of link render?

Posted by dhning <dh...@gaonline.com.cn>.
Hi,

I get a intersting problem:

Start.java:
public class Start
{
    private int _result;
    public int getResult() {
        return this._result;
    }

    public void setResult(int result) {
        _result = result;
    }    
    int onPassivate() {
        return _result;
    }
    void onActivate(int result) {
        _result = result;
    }
}

Start.tml
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
    <head>
        <title>t5first Start Page</title>
    </head>
    <body>
        <h1>t5first Start Page</h1>

            <a href="#" t:type="actionlink" t:id="view">View</a>

    </body>
</html>

Steps: 
When inputting url such as /t5start/start, no problem. But when I input url /t5start/start/ (pay attention to this redundant /), the href of actionlink component will be rendered as "http://localhost:8080/t5first/start/start.view?t:ac=0", then I click on "view" link, exception happens.
a.. org.apache.tapestry.runtime.ComponentEventException 
Exception in method com.yanziwang.pages.Start.onActivate(int) (at Start.java:34), parameter #1: Coercion of start.view to type java.lang.Integer (via String --> Long, Long --> Integer) failed: For input string: "start.view"
  context 
    a.. start.view
  eventType 
  activate
a.. java.lang.NumberFormatException 
For input string: "start.view"

The correct url of view component should be "http://localhost:8080/t5first/start.view?t:ac=0"

How to handle such problems, please help.

Thanks!
DH

Re: [T5]: label in properties file

Posted by Andy Blower <an...@proquest.co.uk>.

I thought the properties file needs to end up next to the class file in the
classpath when the project is built - regardless of where it comes from.
(src/main/java/... or src/main/resources/... or wherever) 


Petros Petrou wrote:
> 
> I think you need to move your FindCoops.properties  file to be next to
> your .tml file and not the .java file. 
> 
> Petros
> 
> 
> Andy Huhn-2 wrote:
>> 
>> OK, this is driving me crazy.
>> 
>> I have a .tml named FindCoops.tml that contains the following fragment:
>> 
>> <t:label for="userPstlCodeField"/>
>> <input t:type="TextField" t:id="userPstlCodeField"
>> t:value="userPstlCode" />
>> 
>> In the same directory as the corresponding .java page file, I have a
>> file named FindCoops.properties that contains the following:
>> 
>> userPstlCodeField-label=ZIP
>> 
>> Yet when the input is rendered, it is rendered with a label of "User
>> Pstl Code Field".  Shouldn't it be rendered as ZIP?
>> 
>> I'm on T5.0.11.
>> 
>> Thanks!
>> Andy
>> 
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>> 
>> 
>> 
> 
> 

-- 
View this message in context: http://www.nabble.com/-T5-%3A-label-in-properties-file-tp16467115p16467350.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5]: label in properties file

Posted by Andy Huhn <am...@hrtc.net>.
Thank you so much for your help, Petros, Filip, Josh.  This did the
trick!  My new directory structure is

src
  main
    java
      com
        companyname
          pages
            coops
              FindCoops.java
    resources
      com
        companyname
          pages
            coops
              FindCoops.tml
              FindCoops.properties

Andy


On Thu, 2008-04-03 at 14:25 +0200, Filip S. Adamsen wrote:
> Hi,
> 
> Try putting it in src/main/resources/com/companyname/pages/coops.
> 
> -Filip
> 
> On 2008-04-03 14:23, Andy Huhn wrote:
> > Thanks for your reply, Petros.  I tried that, and I have the same issue.
> > 
> > Here is my directory structure:
> > 
> > src
> >   main
> >     java
> >       com
> >         companyname
> >           pages
> >             coops
> >               FindCoops.java
> >     webapp
> >       coops
> >         FindCoops.tml
> >         FindCoops.properties
> > 
> > I have not had any issues to date with the directory structure; Tapestry
> > finds all the pages just fine, it finds the hibernate.cfg.xml, it finds
> > my assets, etc.  But for some reason, I can't get this properties file
> > to work.  Am I missing something obvious?
> > 
> > Thanks,
> > Andy
> > 
> > On Thu, 2008-04-03 at 02:14 -0700, Petros Petrou wrote:
> >> I think you need to move your FindCoops.properties  file to be next to your
> >> .tml file and not the .java file. 
> >>
> >> Petros
> >>
> >>
> >> Andy Huhn-2 wrote:
> >>> OK, this is driving me crazy.
> >>>
> >>> I have a .tml named FindCoops.tml that contains the following fragment:
> >>>
> >>> <t:label for="userPstlCodeField"/>
> >>> <input t:type="TextField" t:id="userPstlCodeField"
> >>> t:value="userPstlCode" />
> >>>
> >>> In the same directory as the corresponding .java page file, I have a
> >>> file named FindCoops.properties that contains the following:
> >>>
> >>> userPstlCodeField-label=ZIP
> >>>
> >>> Yet when the input is rendered, it is rendered with a label of "User
> >>> Pstl Code Field".  Shouldn't it be rendered as ZIP?
> >>>
> >>> I'm on T5.0.11.
> >>>
> >>> Thanks!
> >>> Andy
> >>>
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >>> For additional commands, e-mail: users-help@tapestry.apache.org
> >>>
> >>>
> >>>
> > 
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> > 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5]: label in properties file

Posted by "Filip S. Adamsen" <fs...@fsadev.com>.
Hi,

Try putting it in src/main/resources/com/companyname/pages/coops.

-Filip

On 2008-04-03 14:23, Andy Huhn wrote:
> Thanks for your reply, Petros.  I tried that, and I have the same issue.
> 
> Here is my directory structure:
> 
> src
>   main
>     java
>       com
>         companyname
>           pages
>             coops
>               FindCoops.java
>     webapp
>       coops
>         FindCoops.tml
>         FindCoops.properties
> 
> I have not had any issues to date with the directory structure; Tapestry
> finds all the pages just fine, it finds the hibernate.cfg.xml, it finds
> my assets, etc.  But for some reason, I can't get this properties file
> to work.  Am I missing something obvious?
> 
> Thanks,
> Andy
> 
> On Thu, 2008-04-03 at 02:14 -0700, Petros Petrou wrote:
>> I think you need to move your FindCoops.properties  file to be next to your
>> .tml file and not the .java file. 
>>
>> Petros
>>
>>
>> Andy Huhn-2 wrote:
>>> OK, this is driving me crazy.
>>>
>>> I have a .tml named FindCoops.tml that contains the following fragment:
>>>
>>> <t:label for="userPstlCodeField"/>
>>> <input t:type="TextField" t:id="userPstlCodeField"
>>> t:value="userPstlCode" />
>>>
>>> In the same directory as the corresponding .java page file, I have a
>>> file named FindCoops.properties that contains the following:
>>>
>>> userPstlCodeField-label=ZIP
>>>
>>> Yet when the input is rendered, it is rendered with a label of "User
>>> Pstl Code Field".  Shouldn't it be rendered as ZIP?
>>>
>>> I'm on T5.0.11.
>>>
>>> Thanks!
>>> Andy
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>>
>>>
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5]: label in properties file

Posted by Josh Canfield <jo...@thedailytube.com>.
As I understand it putting your template files in webapps is an
exception for some people who can't get away from that folder
structure. I believe everything else needs to be found on the
classpath. Your properties file should be in a folder that gets put in
the WEB-INF/classes folder, or into your application jar.

On Thu, Apr 3, 2008 at 5:23 AM, Andy Huhn <am...@hrtc.net> wrote:
> Thanks for your reply, Petros.  I tried that, and I have the same issue.
>
> Here is my directory structure:
>
> src
>  main
>    java
>      com
>        companyname
>          pages
>            coops
>              FindCoops.java
>    webapp
>      coops
>        FindCoops.tml
>        FindCoops.properties
>
> I have not had any issues to date with the directory structure; Tapestry
> finds all the pages just fine, it finds the hibernate.cfg.xml, it finds
> my assets, etc.  But for some reason, I can't get this properties file
> to work.  Am I missing something obvious?
>
> Thanks,
> Andy
>
>
> On Thu, 2008-04-03 at 02:14 -0700, Petros Petrou wrote:
> > I think you need to move your FindCoops.properties  file to be next to your
> > .tml file and not the .java file.
> >
> > Petros
> >
> >
> > Andy Huhn-2 wrote:
> > >
> > > OK, this is driving me crazy.
> > >
> > > I have a .tml named FindCoops.tml that contains the following fragment:
> > >
> > > <t:label for="userPstlCodeField"/>
> > > <input t:type="TextField" t:id="userPstlCodeField"
> > > t:value="userPstlCode" />
> > >
> > > In the same directory as the corresponding .java page file, I have a
> > > file named FindCoops.properties that contains the following:
> > >
> > > userPstlCodeField-label=ZIP
> > >
> > > Yet when the input is rendered, it is rendered with a label of "User
> > > Pstl Code Field".  Shouldn't it be rendered as ZIP?
> > >
> > > I'm on T5.0.11.
> > >
> > > Thanks!
> > > Andy
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > > For additional commands, e-mail: users-help@tapestry.apache.org
> > >
> > >
> > >
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>



-- 
--
TheDailyTube.com. Sign up and get the best new videos on the internet
delivered fresh to your inbox.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5]: label in properties file

Posted by Andy Huhn <am...@hrtc.net>.
Thanks for your reply, Petros.  I tried that, and I have the same issue.

Here is my directory structure:

src
  main
    java
      com
        companyname
          pages
            coops
              FindCoops.java
    webapp
      coops
        FindCoops.tml
        FindCoops.properties

I have not had any issues to date with the directory structure; Tapestry
finds all the pages just fine, it finds the hibernate.cfg.xml, it finds
my assets, etc.  But for some reason, I can't get this properties file
to work.  Am I missing something obvious?

Thanks,
Andy

On Thu, 2008-04-03 at 02:14 -0700, Petros Petrou wrote:
> I think you need to move your FindCoops.properties  file to be next to your
> .tml file and not the .java file. 
> 
> Petros
> 
> 
> Andy Huhn-2 wrote:
> > 
> > OK, this is driving me crazy.
> > 
> > I have a .tml named FindCoops.tml that contains the following fragment:
> > 
> > <t:label for="userPstlCodeField"/>
> > <input t:type="TextField" t:id="userPstlCodeField"
> > t:value="userPstlCode" />
> > 
> > In the same directory as the corresponding .java page file, I have a
> > file named FindCoops.properties that contains the following:
> > 
> > userPstlCodeField-label=ZIP
> > 
> > Yet when the input is rendered, it is rendered with a label of "User
> > Pstl Code Field".  Shouldn't it be rendered as ZIP?
> > 
> > I'm on T5.0.11.
> > 
> > Thanks!
> > Andy
> > 
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> > 
> > 
> > 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: [T5]: label in properties file

Posted by Petros Petrou <pe...@cypoz.com>.
I think you need to move your FindCoops.properties  file to be next to your
.tml file and not the .java file. 

Petros


Andy Huhn-2 wrote:
> 
> OK, this is driving me crazy.
> 
> I have a .tml named FindCoops.tml that contains the following fragment:
> 
> <t:label for="userPstlCodeField"/>
> <input t:type="TextField" t:id="userPstlCodeField"
> t:value="userPstlCode" />
> 
> In the same directory as the corresponding .java page file, I have a
> file named FindCoops.properties that contains the following:
> 
> userPstlCodeField-label=ZIP
> 
> Yet when the input is rendered, it is rendered with a label of "User
> Pstl Code Field".  Shouldn't it be rendered as ZIP?
> 
> I'm on T5.0.11.
> 
> Thanks!
> Andy
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/-T5-%3A-label-in-properties-file-tp16467115p16467339.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org