Re: [Wicket-user] Property file substitution

2007-03-11 Thread Alexandre Bairos

You can easily achieve this with ant filtering, for example.

ant file snippet:

(...)
   target name=-post-compile
   filter filtersfile=build-ex.properties/
   copy todir=build filtering=true
   fileset dir=.
   include name=page.properties /
   /fileset
   /copy
   /target

page.properties:
my.label=My homepage
[EMAIL PROTECTED]@ is neat.
my.label2 = My other page
[EMAIL PROTECTED]@ is weird
[EMAIL PROTECTED]@ and cool.



On 3/10/07, Jonathan Cone [EMAIL PROTECTED] wrote:



Is it possible to substitute properties into other properties? I tried the
Ant-like syntax:

Page1.properties:

my.label=My homepage
my.other.label=${my.label} is neat.


Is there a syntax which would render my.other.label as 'My homepage is
neat.'?


--
View this message in context:
http://www.nabble.com/Property-file-substitution-tf3382305.html#a9414382
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Property file substitution

2007-03-11 Thread Alexandre Bairos

oops. Of course the idea is to use the page.properties file as your
filtersfile too.

 target name=-post-compile
   filter filtersfile=page.properties/
   copy todir=build filtering=true
   fileset dir=.
   include name=page.properties /
   /fileset
   /copy
   /target

On 3/11/07, Alexandre Bairos [EMAIL PROTECTED] wrote:


You can easily achieve this with ant filtering, for example.

ant file snippet:

(...)
target name=-post-compile
filter filtersfile=build-ex.properties/
copy todir=build filtering=true
fileset dir=.
include name=page.properties /
/fileset
/copy
/target

page.properties:
my.label=My homepage
[EMAIL PROTECTED]@ is neat.
my.label2 = My other page
[EMAIL PROTECTED]@ is weird
[EMAIL PROTECTED]@ and cool.



On 3/10/07, Jonathan Cone [EMAIL PROTECTED] wrote:


 Is it possible to substitute properties into other properties? I tried
 the
 Ant-like syntax:

 Page1.properties:

 my.label=My homepage
 my.other.label=${my.label} is neat.


 Is there a syntax which would render my.other.label as 'My homepage is
 neat.'?


 --
 View this message in context: 
http://www.nabble.com/Property-file-substitution-tf3382305.html#a9414382

 Sent from the Wicket - User mailing list archive at Nabble.com.



 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
 your
 opinions on IT  business topics through brief surveys-and earn cash

 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Property file substitution

2007-03-10 Thread Jonathan Cone

Is it possible to substitute properties into other properties? I tried the
Ant-like syntax:

Page1.properties:

my.label=My homepage
my.other.label=${my.label} is neat.


Is there a syntax which would render my.other.label as 'My homepage is
neat.'?


-- 
View this message in context: 
http://www.nabble.com/Property-file-substitution-tf3382305.html#a9414382
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Property file substitution

2007-03-10 Thread Nick Heudecker

Take a look at StringResourceModel.  It should do what you want.

On 3/10/07, Jonathan Cone [EMAIL PROTECTED] wrote:



Is it possible to substitute properties into other properties? I tried the
Ant-like syntax:

Page1.properties:

my.label=My homepage
my.other.label=${my.label} is neat.


Is there a syntax which would render my.other.label as 'My homepage is
neat.'?


--
View this message in context:
http://www.nabble.com/Property-file-substitution-tf3382305.html#a9414382
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user





--
Nick Heudecker
Professional Wicket Training  Consulting
http://www.systemmobile.com

Eventful - Intelligent Event Management
http://www.eventfulhq.com
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Property file substitution

2007-03-10 Thread Eelco Hillenius
I don't think we support that. Feel free to open a feature request,
though personally, while I see the fun factor, I don't think it is
something we can't live about. So, please provide a patch if you care
about such a feature :)

Eelco


On 3/10/07, Jonathan Cone [EMAIL PROTECTED] wrote:

 Is it possible to substitute properties into other properties? I tried the
 Ant-like syntax:

 Page1.properties:

 my.label=My homepage
 my.other.label=${my.label} is neat.


 Is there a syntax which would render my.other.label as 'My homepage is
 neat.'?


 --
 View this message in context: 
 http://www.nabble.com/Property-file-substitution-tf3382305.html#a9414382
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys-and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Property file substitution

2007-03-10 Thread Nick Heudecker

Oops.  I didn't read his email very closely.

On 3/11/07, Eelco Hillenius [EMAIL PROTECTED] wrote:


I don't think we support that. Feel free to open a feature request,
though personally, while I see the fun factor, I don't think it is
something we can't live about. So, please provide a patch if you care
about such a feature :)

Eelco


On 3/10/07, Jonathan Cone [EMAIL PROTECTED] wrote:

 Is it possible to substitute properties into other properties? I tried
the
 Ant-like syntax:

 Page1.properties:

 my.label=My homepage
 my.other.label=${my.label} is neat.


 Is there a syntax which would render my.other.label as 'My homepage is
 neat.'?


 --
 View this message in context:
http://www.nabble.com/Property-file-substitution-tf3382305.html#a9414382
 Sent from the Wicket - User mailing list archive at Nabble.com.



-
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share
your
 opinions on IT  business topics through brief surveys-and earn cash

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user





--
Nick Heudecker
Professional Wicket Training  Consulting
http://www.systemmobile.com

Eventful - Intelligent Event Management
http://www.eventfulhq.com
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user