Re: [Wicket-user] Wicket-CMS Templates

2006-10-26 Thread glanzel
Hi I would strongly recommend a version with wicket templates. Wouldn't it be the most important reasons for using a Wicket CMS that you don't have to deal with any scripting language but plain html ? So I would prefer Number 2 (use Wicket templates, but create additional, CMS specific

Re: [Wicket-user] Wicket-CMS Templates

2006-10-17 Thread Martijn Dashorst
Perhaps we need to define the problem better... A typical article has an author, date written, date last modified, tags, content, summary, keywords, title, subtitle, etc. Some people like to show everything on their blogs, so you get in a Wicket template: div wicket:id=article h1

Re: [Wicket-user] Wicket-CMS Templates

2006-10-11 Thread Ted Roeloffzen
The reason that Joomla and Drupal are so popular is that it is relatively easy to make custom templates and modules. But when we use Wicket and Velocity, it becomes a little too difficult for a normal user. Someone who has little or no programming experience. Then there is another problem. Wicket

Re: [Wicket-user] Wicket-CMS Templates

2006-10-11 Thread Matej Knopp
The part where wicket would really shine is the part of application where you manage content, etc. For the part where you show the content, I'd consider multiple approaches. You definitely need different templating engine (like freemarker), or maybe some scripting language. I'm not sure that

Re: [Wicket-user] Wicket-CMS Templates

2006-10-11 Thread middledot
I don't know but if you want a powerful scripting language then you should look at JRuby. If however you are concerned about users, then you could do it entiry using JavaScript. In fact that might open the door for a numer of widgets already in the public domain, yui being one of them. Les

Re: [Wicket-user] Wicket-CMS Templates

2006-10-11 Thread Ted Roeloffzen
But how could you establish a connection between the _javascript_ and the java code from the CMS?On 10/11/06, middledot [EMAIL PROTECTED] wrote:I don't know but if you want a powerful scripting language then you should look at JRuby.If however you are concerned about users, then you could do it

Re: [Wicket-user] Wicket-CMS Templates

2006-10-11 Thread Eelco Hillenius
On 10/11/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: But how could you establish a connection between the javascript and the java code from the CMS? That's the stuff you'll be learning! :) Rhino, JRuby, Jython, etc, all have excellent Java integration. By the time you get there, you'll figure

[Wicket-user] Wicket-CMS Templates

2006-10-10 Thread Ted Roeloffzen
hello all,Some of you may know that we're working on a Wicket-CMS as our grad project. We've been thinking about the use of templates. About how we are going to let people create their own templates. As we saw in Drupal and Joomla, there templates are full of PHP-code. If we're going to do the

Re: [Wicket-user] Wicket-CMS Templates

2006-10-10 Thread Gwyn Evans
My inclination would be to do as much as you can via CSS, but if you need to add scripting, I'd (a) go with Jython (b) make a major effort on examples documentation! /Gwyn On 10/10/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: hello all, Some of you may know that we're working on a Wicket-CMS

Re: [Wicket-user] Wicket-CMS Templates

2006-10-10 Thread Nick Heudecker
What about using Velocity templates for markup?On 10/10/06, Gwyn Evans [EMAIL PROTECTED] wrote: My inclination would be to do as much as you can via CSS, but if youneed to add scripting, I'd (a) go with Jython (b) make a major effort on examples documentation!/GwynOn 10/10/06, Ted Roeloffzen

Re: [Wicket-user] Wicket-CMS Templates

2006-10-10 Thread Ted Roeloffzen
We've never used that. Are there any examples available when using it with Wicket? On 10/10/06, Nick Heudecker [EMAIL PROTECTED] wrote: What about using Velocity templates for markup? On 10/10/06, Gwyn Evans [EMAIL PROTECTED] wrote: My inclination would be to do as much as you can via CSS, but

Re: [Wicket-user] Wicket-CMS Templates

2006-10-10 Thread Eelco Hillenius
Yep. Look at the wicket-velocity-contrib and wicket-contrib-examples in wicket-stuff. Eelco On 10/10/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: We've never used that. Are there any examples available when using it with Wicket? On 10/10/06, Nick Heudecker [EMAIL PROTECTED] wrote: What