Templates in Wicket

2010-01-15 Thread Marek Šabo

Hi everyone,

I would like to know if someone can share their experience with 
graphical templates under wicket. It's easy to provide markup code for 
designers, they just need to preserve hierarchy of wicket elements, 
right? But how do you cope with things like attribute modifier inside 
application and dynamic loading of other css files? Or what is the most 
common approach to this kind of thing?


Regards,

Marek

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Templates in Wicket

2010-01-15 Thread Igor Vaynberg
so you are giving designers markup from a wicket app? why not just let
them run the app, that way they can go in and do things themselves?

in my company out developers checkout the code and run mvn jetty to
get the app up and running with markup reloading, then they go in with
textmate or coda and tweak the markup.

-igor

On Fri, Jan 15, 2010 at 8:00 AM, Marek Šabo ms...@buk.cvut.cz wrote:
 Hi everyone,

 I would like to know if someone can share their experience with graphical
 templates under wicket. It's easy to provide markup code for designers, they
 just need to preserve hierarchy of wicket elements, right? But how do you
 cope with things like attribute modifier inside application and dynamic
 loading of other css files? Or what is the most common approach to this kind
 of thing?

 Regards,

 Marek

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Templates in Wicket

2010-01-15 Thread Douglas Ferguson
That's what we are doing as well.

The big gotcha is when you end up doing something in code, it throws them off.

I.E. SimpleAttributeModifier, 

D/

On Jan 15, 2010, at 10:14 AM, Jonathan Locke wrote:

 
 
 we did almost exactly the same thing at thoof.  although occasionally you'll
 get a designer stuck on a build problem or something, it works really well.
 definitely the best approach in my mind.
 
 
 igor.vaynberg wrote:
 
 so you are giving designers markup from a wicket app? why not just let
 them run the app, that way they can go in and do things themselves?
 
 in my company out developers checkout the code and run mvn jetty to
 get the app up and running with markup reloading, then they go in with
 textmate or coda and tweak the markup.
 
 -igor
 
 On Fri, Jan 15, 2010 at 8:00 AM, Marek Šabo ms...@buk.cvut.cz wrote:
 Hi everyone,
 
 I would like to know if someone can share their experience with graphical
 templates under wicket. It's easy to provide markup code for designers,
 they
 just need to preserve hierarchy of wicket elements, right? But how do you
 cope with things like attribute modifier inside application and dynamic
 loading of other css files? Or what is the most common approach to this
 kind
 of thing?
 
 Regards,
 
 Marek
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 
 -- 
 View this message in context: 
 http://old.nabble.com/Templates-in-Wicket-tp27179274p27179469.html
 Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Templates in Wicket

2010-01-15 Thread Igor Vaynberg
thats what html comments are for.

-igor

On Fri, Jan 15, 2010 at 9:55 AM, Douglas Ferguson
doug...@douglasferguson.us wrote:
 That's what we are doing as well.

 The big gotcha is when you end up doing something in code, it throws them off.

 I.E. SimpleAttributeModifier,

 D/

 On Jan 15, 2010, at 10:14 AM, Jonathan Locke wrote:



 we did almost exactly the same thing at thoof.  although occasionally you'll
 get a designer stuck on a build problem or something, it works really well.
 definitely the best approach in my mind.


 igor.vaynberg wrote:

 so you are giving designers markup from a wicket app? why not just let
 them run the app, that way they can go in and do things themselves?

 in my company out developers checkout the code and run mvn jetty to
 get the app up and running with markup reloading, then they go in with
 textmate or coda and tweak the markup.

 -igor

 On Fri, Jan 15, 2010 at 8:00 AM, Marek Šabo ms...@buk.cvut.cz wrote:
 Hi everyone,

 I would like to know if someone can share their experience with graphical
 templates under wicket. It's easy to provide markup code for designers,
 they
 just need to preserve hierarchy of wicket elements, right? But how do you
 cope with things like attribute modifier inside application and dynamic
 loading of other css files? Or what is the most common approach to this
 kind
 of thing?

 Regards,

 Marek

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 View this message in context: 
 http://old.nabble.com/Templates-in-Wicket-tp27179274p27179469.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Templates in Wicket

2010-01-15 Thread Marek Šabo
Yep, thank you all for sharing your insights, anyway, most of the time I
work with single ui projects. I was just curious how you guys do it so I
would have PreparedStatement for pointy haired bosses :)


On 01/15/2010 06:55 PM, Douglas Ferguson wrote:
 That's what we are doing as well.

 The big gotcha is when you end up doing something in code, it throws them off.

 I.E. SimpleAttributeModifier, 

 D/

 On Jan 15, 2010, at 10:14 AM, Jonathan Locke wrote:

   

 we did almost exactly the same thing at thoof.  although occasionally you'll
 get a designer stuck on a build problem or something, it works really well.
 definitely the best approach in my mind.


 igor.vaynberg wrote:
 
 so you are giving designers markup from a wicket app? why not just let
 them run the app, that way they can go in and do things themselves?

 in my company out developers checkout the code and run mvn jetty to
 get the app up and running with markup reloading, then they go in with
 textmate or coda and tweak the markup.

 -igor

 On Fri, Jan 15, 2010 at 8:00 AM, Marek Šabo ms...@buk.cvut.cz wrote:
   
 Hi everyone,

 I would like to know if someone can share their experience with graphical
 templates under wicket. It's easy to provide markup code for designers,
 they
 just need to preserve hierarchy of wicket elements, right? But how do you
 cope with things like attribute modifier inside application and dynamic
 loading of other css files? Or what is the most common approach to this
 kind
 of thing?

 Regards,

 Marek

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



   
 -- 
 View this message in context: 
 http://old.nabble.com/Templates-in-Wicket-tp27179274p27179469.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


   


-- 
Marek Šabo
Server Manager
Club SU CVUT Buben
Bubenečská Kolej (421)
XMPP: zeratul...@gmail.com


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Creating a blog engine with templates using Wicket

2009-08-08 Thread nino martinez wael
Id did a blog tutorial loong ago

http://cwiki.apache.org/WICKET/blog-tutorial.html

you could give that a go.. However its wicket 1.3 and somewhat out dated..

2009/8/7 Kent Larsson kent.lars...@gmail.com:
 Hi,

 I've used Wordpress for some blogging, but I've never really felt
 comfortable with it.

 I'd like to create something myself, for my own personal use to begin
 with (but there is no reason for me not to make it free (as in
 speech). Some thoughts:

 - Plugins could be created using Wicket
 - I need some way for users to create templates. Now that I think
 about it maybe the template system could simply be normal HTML-pages
 with Wicket markup?

 I'm simply looking for some feedback. Does it sound like Wicket is the
 tool to go with? (For me it does.) Do you have any suggestions on
 things to think about from the beginning when creating something like
 this? Is there something like this already?

 To start with I'll create something for me. But it's always good to
 get some input and maybe it'll help me turn the project in the right
 direction from the beginning.

 Best regards, Kent

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Creating a blog engine with templates using Wicket

2009-08-08 Thread nino martinez wael
IT should only be used as a teaser though..

2009/8/8 nino martinez wael nino.martinez.w...@gmail.com:
 Id did a blog tutorial loong ago

 http://cwiki.apache.org/WICKET/blog-tutorial.html

 you could give that a go.. However its wicket 1.3 and somewhat out dated..

 2009/8/7 Kent Larsson kent.lars...@gmail.com:
 Hi,

 I've used Wordpress for some blogging, but I've never really felt
 comfortable with it.

 I'd like to create something myself, for my own personal use to begin
 with (but there is no reason for me not to make it free (as in
 speech). Some thoughts:

 - Plugins could be created using Wicket
 - I need some way for users to create templates. Now that I think
 about it maybe the template system could simply be normal HTML-pages
 with Wicket markup?

 I'm simply looking for some feedback. Does it sound like Wicket is the
 tool to go with? (For me it does.) Do you have any suggestions on
 things to think about from the beginning when creating something like
 this? Is there something like this already?

 To start with I'll create something for me. But it's always good to
 get some input and maybe it'll help me turn the project in the right
 direction from the beginning.

 Best regards, Kent

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Creating a blog engine with templates using Wicket

2009-08-07 Thread Kent Larsson
Hi,

I've used Wordpress for some blogging, but I've never really felt
comfortable with it.

I'd like to create something myself, for my own personal use to begin
with (but there is no reason for me not to make it free (as in
speech). Some thoughts:

- Plugins could be created using Wicket
- I need some way for users to create templates. Now that I think
about it maybe the template system could simply be normal HTML-pages
with Wicket markup?

I'm simply looking for some feedback. Does it sound like Wicket is the
tool to go with? (For me it does.) Do you have any suggestions on
things to think about from the beginning when creating something like
this? Is there something like this already?

To start with I'll create something for me. But it's always good to
get some input and maybe it'll help me turn the project in the right
direction from the beginning.

Best regards, Kent

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Creating a blog engine with templates using Wicket

2009-08-07 Thread Martijn Dashorst
Take a look at brix cms components, and possibly elephas for inspiration...

Martijn

On Fri, Aug 7, 2009 at 2:47 PM, Kent Larssonkent.lars...@gmail.com wrote:
 Hi,

 I've used Wordpress for some blogging, but I've never really felt
 comfortable with it.

 I'd like to create something myself, for my own personal use to begin
 with (but there is no reason for me not to make it free (as in
 speech). Some thoughts:

 - Plugins could be created using Wicket
 - I need some way for users to create templates. Now that I think
 about it maybe the template system could simply be normal HTML-pages
 with Wicket markup?

 I'm simply looking for some feedback. Does it sound like Wicket is the
 tool to go with? (For me it does.) Do you have any suggestions on
 things to think about from the beginning when creating something like
 this? Is there something like this already?

 To start with I'll create something for me. But it's always good to
 get some input and maybe it'll help me turn the project in the right
 direction from the beginning.

 Best regards, Kent

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org





-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.4 increases type safety for web applications
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.4.0

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Creating a blog engine with templates using Wicket

2009-08-07 Thread Andrew Lombardi
Take a look at the Brix CMS.  All built in Wicket, might be just what  
the doctor ordered.


On Aug 7, 2009, at 5:47 AM, Kent Larsson wrote:


Hi,

I've used Wordpress for some blogging, but I've never really felt
comfortable with it.

I'd like to create something myself, for my own personal use to begin
with (but there is no reason for me not to make it free (as in
speech). Some thoughts:

- Plugins could be created using Wicket
- I need some way for users to create templates. Now that I think
about it maybe the template system could simply be normal HTML-pages
with Wicket markup?

I'm simply looking for some feedback. Does it sound like Wicket is the
tool to go with? (For me it does.) Do you have any suggestions on
things to think about from the beginning when creating something like
this? Is there something like this already?

To start with I'll create something for me. But it's always good to
get some input and maybe it'll help me turn the project in the right
direction from the beginning.

Best regards, Kent

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




To our success!

Mystic Coders, LLC | Code Magic | www.mysticcoders.com

ANDREW LOMBARDI | and...@mysticcoders.com
2321 E 4th St. Ste C-128, Santa Ana CA 92705
ofc: 949-528-6480
fax: 714-782-6024
cell: 714-697-8046
linked-in: http://www.linkedin.com/in/andrewlombardi
twitter: http://www.twitter.com/kinabalu

Eco-Tip: Printing e-mails is usually a waste.


This message is for the named person's use only. You must not,  
directly or indirectly, use,
 disclose, distribute, print, or copy any part of this message if you  
are not the intended recipient.