Wicket CMS functionality for updating text and adding links

2008-10-01 Thread unka_hahrry

Hello!

I'm looking for some CMS functionality that that give me the opportunity to
update a text in a given div-tag. My first approach was to put the text into
wicket:message tags and then overwrite the corresponding .properties file,
using a textarea for updating the text and BufferedWriter for overwriting
the .properties file.
2 problems occured: 
1) In deployment mode the changes don't take effect (except you set
resourceSettings.setResourcePollFrequency(Duration d))
2) I have no idea how to add a link to this text pointing to a page inside
my application

I also take a look at Brix, the Wicket-based CMS, but there is only little
documentation and examples and so it's difficult for me to understand.

It would be very nice if someone could offer me a possiblity how to solve
this problem.

-- 
View this message in context: 
http://www.nabble.com/Wicket-CMS-functionality-for-updating-text-and-adding-links-tp19765748p19765748.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Wicket CMS

2008-06-24 Thread james yong

Hi,

Is there anyone who would like to pool efforts for a wicket-based cms?

Currently, I have a prototype verson at http://code.google.com/p/welo/, but
I would like to put efforts into a better one (not necessary mine).

Regards,
James
-- 
View this message in context: 
http://www.nabble.com/Wicket-CMS-tp18092129p18092129.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket CMS

2008-06-24 Thread Thomas Mäder
It might spark interest if you add a bit of documentation and a live demo.
Not everyone has the time to read through your code.

Thomas

On Tue, Jun 24, 2008 at 4:21 PM, james yong [EMAIL PROTECTED] wrote:


 Hi,

 Is there anyone who would like to pool efforts for a wicket-based cms?

 Currently, I have a prototype verson at http://code.google.com/p/welo/,
 but
 I would like to put efforts into a better one (not necessary mine).

 Regards,
 James
 --
 View this message in context:
 http://www.nabble.com/Wicket-CMS-tp18092129p18092129.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: Wicket CMS

2008-06-24 Thread Rodolfo Hansen
Yeah, we are interested in working out a CMS based on wicket too...
haven't had much time for it just yet. but its a must do for us...

On Tue, Jun 24, 2008 at 11:46 AM, Thomas Mäder [EMAIL PROTECTED]
wrote:

 It might spark interest if you add a bit of documentation and a live demo.
 Not everyone has the time to read through your code.

 Thomas

 On Tue, Jun 24, 2008 at 4:21 PM, james yong [EMAIL PROTECTED] wrote:

 
  Hi,
 
  Is there anyone who would like to pool efforts for a wicket-based cms?
 
  Currently, I have a prototype verson at http://code.google.com/p/welo/,
  but
  I would like to put efforts into a better one (not necessary mine).
 
  Regards,
  James
  --
  View this message in context:
  http://www.nabble.com/Wicket-CMS-tp18092129p18092129.html
  Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 



Re: Wicket CMS

2008-06-24 Thread james yong

I'll put up the doc and demo by this week or so. Thanks. :-)
-- 
View this message in context: 
http://www.nabble.com/Wicket-CMS-tp18092129p18102616.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AW: Wicket + CMS

2008-04-18 Thread Frank van Lankvelt
Hi,

that is correct, Hippo CMS 7 should be ready for release in a few months
time.  It is a rewrite where the CMS itself is implemented in Wicket.

plug shameless=true

The repository is a JCR (JackRabbit) repository extended with workflow
and faceted navigation.  The CMS is composed as a set of plugins.  These
Wicket components can be configured and that can be dynamically swapped
in and out of the application.  We use this for example for the
templates.  Templates consist of a set of (template) plugins and a
configuration in the repository.  The template configuration can be
edited in the CMS itself!

/plug

At the moment we're rethinking the architecture, so I can't give details
on how plugins are implemented or how they are linked together at
runtime.

cheers, Frank

On Thu, 2008-04-17 at 14:12 +0200, Noz, Felix wrote:
 Hi,
 
 I've also read about plans to use wicket integration in Hippo Cms and I will 
 keep an eye on it. I've also managed to access OpenCms content with wicket 
 but because we have a lot of JSP that we would like to reuse and we 
 contemporary need a solid frontend framework integration we will - as a start 
 - concentrate on a classic rerquest-based one with jsp view for now. Maybe we 
 will recur to wicket again later.  
 Thanks for your and all other people's answers.
 
 Regards
 
 Felix Noz
  
 
 
 -Ursprüngliche Nachricht-
 Von: StephenP [mailto:[EMAIL PROTECTED] 
 Gesendet: Mittwoch, 16. April 2008 11:57
 An: users@wicket.apache.org
 Betreff: Re: Wicket + CMS
 
 
 Our project has tied in HippoCMS for pulling a portion of content into wicket 
 pages. 
 I don't have many details to hand but it wasn't too hard. 
 Hippo has a xml over http interface that we use to cache content, before 
 putting the xml elements into wicket models.
 
 We are using hippo version 6, but I think hippo version 7 (the next version) 
 will be using wicket internally. I don't know if this will allow any stronger 
 integration with a wicket app.
 
 
 
 
 
 Noz, Felix wrote:
  
  Hello everybody,
   
  I'm currently evaluating different Frontend Frameworks to use them 
  with a Java-Based CMS (OpenCms) and I'm very interested in trying 
  wicket. The CMS has got its own Template mechanism which is based on 
  JSP. Because it would be a problem for us to throw away all existing 
  Templates and JSP Tags my idea was to implement a 
  ResourceStreamLocator that connects to the CMS via http and delivers 
  the resources directly from the CMS so that the CMS is rather a pure 
  persistence and template system.
  My questions are:
  
  - Is this a passible way to connect wicket to a jsp based system?
  - Are there any better solutions?
  - Does anybody else has experience in connecting OpenCms + wicket?
  
  Regards
  
  i.A. Felix Noz
   
  __
  __
   
  Felix Noz
  Junior IT-Berater
  Dipl. Informatiker (FH)
   
  comundus GmbH
  Schüttelgrabenring 3, 71332 Waiblingen
   
  Telefon +49 (0) 71 51-5 00 28-22
  Internet www.comundus.com
   
  Geschäftsführer: Klaus Hillemeier
  Amtsgericht Stuttgart, HRB 264290
   
  comundus ist ein Unternehmen der IT EXCELLENCE Group.
  __
  __
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
 
 --
 View this message in context: 
 http://www.nabble.com/Wicket-%2B-CMS-tp16696564p16720234.html
 Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AW: Wicket + CMS

2008-04-18 Thread Uwe Schäfer

Frank van Lankvelt schrieb:

Hi Frank,

think we´ve talked at the meetup about that.


plug shameless=true

The repository is a JCR (JackRabbit) repository extended with workflow
and faceted navigation.  The CMS is composed as a set of plugins.  These
Wicket components can be configured and that can be dynamically swapped
in and out of the application.  We use this for example for the
templates.  Templates consist of a set of (template) plugins and a
configuration in the repository.  The template configuration can be
edited in the CMS itself!

/plug


will the actual delivery be done by a JSP frontend, or a Wicket frontend?

And if JSP will be delivering, can we build CMS-agnostic wicket 
components that could wor as they would in a normal wicket app (wrapped 
by some plugin adapter of course)?


cu uwe
--

THOMAS DAILY GmbH
Adlerstraße 19
79098 Freiburg
Deutschland
T  + 49 761 3 85 59 0
F  + 49 761 3 85 59 550
E  [EMAIL PROTECTED]
www.thomas-daily.de

Geschäftsführer/Managing Directors:
Wendy Thomas, Susanne Larbig
Handelsregister Freiburg i.Br., HRB 3947

Registrieren Sie sich unter http://morningnews.thomas-daily.de für die 
kostenfreien TD Morning News, eine Auswahl aktueller Themen des Tages 
morgens um 9:00 in Ihrer Mailbox.


Hinweis: Der Redaktionsschluss für unsere TD Morning News ist täglich um 
8:30 Uhr. Es werden vorrangig Informationen berücksichtigt, die nach 
16:00 Uhr des Vortages eingegangen sind. Die Email-Adresse unserer 
Redaktion lautet [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AW: Wicket + CMS

2008-04-18 Thread Frank van Lankvelt
Hi Uwe,

  plug shameless=true
  
  The repository is a JCR (JackRabbit) repository extended with workflow
  and faceted navigation.  The CMS is composed as a set of plugins.  These
  Wicket components can be configured and that can be dynamically swapped
  in and out of the application.  We use this for example for the
  templates.  Templates consist of a set of (template) plugins and a
  configuration in the repository.  The template configuration can be
  edited in the CMS itself!
  
  /plug
 
 will the actual delivery be done by a JSP frontend, or a Wicket frontend?
 
at the moment, we're focussing on JSP.  A custom tag library is under
development that accesses the repository and allows url mapping.

It should certainly be possible to develop a frontend in Wicket; the
models that we use to access the repository are easily reused.
To embed plugins, e.g. those used by the CMS, does require some support
from the environment.  The Wicket session needs to provide a valid JCR
session, for example.

 And if JSP will be delivering, can we build CMS-agnostic wicket 
 components that could wor as they would in a normal wicket app (wrapped 
 by some plugin adapter of course)?
 
yes, if you're components don't need to have any interaction with the
CMS then this is certainly possible.

When you do want to have an interaction, some additional constaints will
(likely) be present due to the possible actions of other plugins.

If you want to further discuss the Hippo CMS, then we should move the
discussion to the hipporepos-dev mailing list.  You can subscribe and
visit the archives at
http://lists.hippo.nl/mailman/listinfo/hipporepos-dev
The traffic mainly consists of JIRA updates and svn-logs, but it should
be possible to filter these out if you want to.

thanks for the interest!

cheers, Frank


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AW: Wicket + CMS

2008-04-18 Thread Paolo Di Tommaso
Someones in this thread have ever seen Riot CMS ?!

*Riot is a web-based Open Source Content Management System written in Java.
It's quite different from other systems as it has been designed to match the
needs of custom applications, [..]*

http://www.riotfamily.org


I think would be relatively easy to add Wicket support to it.


// Paolo



On Fri, Apr 18, 2008 at 9:28 PM, Frank van Lankvelt 
[EMAIL PROTECTED] wrote:

 Hi Uwe,

   plug shameless=true
  
   The repository is a JCR (JackRabbit) repository extended with workflow
   and faceted navigation.  The CMS is composed as a set of plugins.
  These
   Wicket components can be configured and that can be dynamically
 swapped
   in and out of the application.  We use this for example for the
   templates.  Templates consist of a set of (template) plugins and a
   configuration in the repository.  The template configuration can be
   edited in the CMS itself!
  
   /plug
 
  will the actual delivery be done by a JSP frontend, or a Wicket
 frontend?
 
 at the moment, we're focussing on JSP.  A custom tag library is under
 development that accesses the repository and allows url mapping.

 It should certainly be possible to develop a frontend in Wicket; the
 models that we use to access the repository are easily reused.
 To embed plugins, e.g. those used by the CMS, does require some support
 from the environment.  The Wicket session needs to provide a valid JCR
 session, for example.

  And if JSP will be delivering, can we build CMS-agnostic wicket
  components that could wor as they would in a normal wicket app (wrapped
  by some plugin adapter of course)?
 
 yes, if you're components don't need to have any interaction with the
 CMS then this is certainly possible.

 When you do want to have an interaction, some additional constaints will
 (likely) be present due to the possible actions of other plugins.

 If you want to further discuss the Hippo CMS, then we should move the
 discussion to the hipporepos-dev mailing list.  You can subscribe and
 visit the archives at
 http://lists.hippo.nl/mailman/listinfo/hipporepos-dev
 The traffic mainly consists of JIRA updates and svn-logs, but it should
 be possible to filter these out if you want to.

 thanks for the interest!

 cheers, Frank


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




AW: Wicket + CMS

2008-04-17 Thread Noz, Felix
Hi,

I've also read about plans to use wicket integration in Hippo Cms and I will 
keep an eye on it. I've also managed to access OpenCms content with wicket but 
because we have a lot of JSP that we would like to reuse and we contemporary 
need a solid frontend framework integration we will - as a start - concentrate 
on a classic rerquest-based one with jsp view for now. Maybe we will recur to 
wicket again later.  
Thanks for your and all other people's answers.

Regards

Felix Noz
 


-Ursprüngliche Nachricht-
Von: StephenP [mailto:[EMAIL PROTECTED] 
Gesendet: Mittwoch, 16. April 2008 11:57
An: users@wicket.apache.org
Betreff: Re: Wicket + CMS


Our project has tied in HippoCMS for pulling a portion of content into wicket 
pages. 
I don't have many details to hand but it wasn't too hard. 
Hippo has a xml over http interface that we use to cache content, before 
putting the xml elements into wicket models.

We are using hippo version 6, but I think hippo version 7 (the next version) 
will be using wicket internally. I don't know if this will allow any stronger 
integration with a wicket app.





Noz, Felix wrote:
 
 Hello everybody,
  
 I'm currently evaluating different Frontend Frameworks to use them 
 with a Java-Based CMS (OpenCms) and I'm very interested in trying 
 wicket. The CMS has got its own Template mechanism which is based on 
 JSP. Because it would be a problem for us to throw away all existing 
 Templates and JSP Tags my idea was to implement a 
 ResourceStreamLocator that connects to the CMS via http and delivers 
 the resources directly from the CMS so that the CMS is rather a pure 
 persistence and template system.
 My questions are:
 
 - Is this a passible way to connect wicket to a jsp based system?
 - Are there any better solutions?
 - Does anybody else has experience in connecting OpenCms + wicket?
 
 Regards
 
 i.A. Felix Noz
  
 __
 __
  
 Felix Noz
 Junior IT-Berater
 Dipl. Informatiker (FH)
  
 comundus GmbH
 Schüttelgrabenring 3, 71332 Waiblingen
  
 Telefon +49 (0) 71 51-5 00 28-22
 Internet www.comundus.com
  
 Geschäftsführer: Klaus Hillemeier
 Amtsgericht Stuttgart, HRB 264290
  
 comundus ist ein Unternehmen der IT EXCELLENCE Group.
 __
 __
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

--
View this message in context: 
http://www.nabble.com/Wicket-%2B-CMS-tp16696564p16720234.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket + CMS

2008-04-16 Thread StephenP

Our project has tied in HippoCMS for pulling a portion of content into wicket
pages. 
I don't have many details to hand but it wasn't too hard. 
Hippo has a xml over http interface that we use to cache content, before
putting the xml elements into wicket models.

We are using hippo version 6, but I think hippo version 7 (the next version)
will be using wicket internally. I don't know if this will allow any
stronger integration with a wicket app.





Noz, Felix wrote:
 
 Hello everybody,
  
 I'm currently evaluating different Frontend Frameworks to use them with a
 Java-Based CMS (OpenCms) and I'm very interested in trying wicket. The CMS
 has got its own Template mechanism which is based on JSP. Because it would
 be a problem for us to throw away all existing Templates and JSP Tags my
 idea was to implement a ResourceStreamLocator that connects to the CMS via
 http and delivers the resources directly from the CMS so that the CMS is
 rather a pure persistence and template system.
 My questions are:
 
 - Is this a passible way to connect wicket to a jsp based system?
 - Are there any better solutions?
 - Does anybody else has experience in connecting OpenCms + wicket?
 
 Regards
 
 i.A. Felix Noz
  
 
  
 Felix Noz
 Junior IT-Berater
 Dipl. Informatiker (FH)
  
 comundus GmbH
 Schüttelgrabenring 3, 71332 Waiblingen
  
 Telefon +49 (0) 71 51-5 00 28-22
 Internet www.comundus.com
  
 Geschäftsführer: Klaus Hillemeier
 Amtsgericht Stuttgart, HRB 264290
  
 comundus ist ein Unternehmen der IT EXCELLENCE Group.
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Wicket-%2B-CMS-tp16696564p16720234.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket + CMS

2008-04-16 Thread Martin Funk
Is that the same one you were talking about here:
http://www.nabble.com/wicket-%2B-CMS-to14895305.html#a14913697

If so, what happened to the the versioning/tagging for free?

mf

2008/4/15, Igor Vaynberg [EMAIL PROTECTED]:

 the cms matej and i are working on will be opened shortly after may
 1st. it is based on wicket and jcr. mind you it is not meant to be a
 full-blown cms system yet, but rather a framework/library that makes
 it easy to integrate a cms system into a wicket app. the small example
 app we will provide will demonstrate a stand-alone cms. also note that
 just because we are putting the source out there on may 1st it is far
 from complete/pretty, we are doing it so early because a lot of people
 want to take a peek.

 -igor


 2008/4/15 Uwe Schäfer [EMAIL PROTECTED]:

  Jan Kriesten schrieb:
 
 
 
   I just did something like this to have a certain panel use FreeMarker
  templates which dynamically creates wicket:components (actually, this
 will
  be a new CMS based on Wicket... 8 Weeks to go I suppose)!
  
 
   go go go! people are waiting for smth like that ;)
 
   i´ve 'heard' there is another CMS-like app currently being built with
  wicket in the front-end?
   any details on that approach?
 
   igor? :)
 
 
   cu uwe
   --
 
   THOMAS DAILY GmbH
   Adlerstraße 19
   79098 Freiburg
   Deutschland
   T  + 49 761 3 85 59 0
   F  + 49 761 3 85 59 550
   E  [EMAIL PROTECTED]
   www.thomas-daily.de
 
   Geschäftsführer/Managing Directors:
   Wendy Thomas, Susanne Larbig
   Handelsregister Freiburg i.Br., HRB 3947
 
   Registrieren Sie sich unter http://morningnews.thomas-daily.de für die
  kostenfreien TD Morning News, eine Auswahl aktueller Themen des Tages
  morgens um 9:00 in Ihrer Mailbox.
 
   Hinweis: Der Redaktionsschluss für unsere TD Morning News ist täglich
 um
  8:30 Uhr. Es werden vorrangig Informationen berücksichtigt, die nach
 16:00
  Uhr des Vortages eingegangen sind. Die Email-Adresse unserer Redaktion
  lautet [EMAIL PROTECTED]
 
 
   -
 
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: Wicket + CMS

2008-04-16 Thread Igor Vaynberg
our requirements changed to the point where jcr became a better fit.
remember this is driven by my company's requirements, not my own. we
are opening it to give back to the community.

-igor


On Wed, Apr 16, 2008 at 4:50 AM, Martin Funk [EMAIL PROTECTED] wrote:
 Is that the same one you were talking about here:
  http://www.nabble.com/wicket-%2B-CMS-to14895305.html#a14913697

  If so, what happened to the the versioning/tagging for free?

  mf

  2008/4/15, Igor Vaynberg [EMAIL PROTECTED]:


 
   the cms matej and i are working on will be opened shortly after may
   1st. it is based on wicket and jcr. mind you it is not meant to be a
   full-blown cms system yet, but rather a framework/library that makes
   it easy to integrate a cms system into a wicket app. the small example
   app we will provide will demonstrate a stand-alone cms. also note that
   just because we are putting the source out there on may 1st it is far
   from complete/pretty, we are doing it so early because a lot of people
   want to take a peek.
  
   -igor
  
  
   2008/4/15 Uwe Schäfer [EMAIL PROTECTED]:
  
Jan Kriesten schrieb:
   
   
   
 I just did something like this to have a certain panel use FreeMarker
templates which dynamically creates wicket:components (actually, this
   will
be a new CMS based on Wicket... 8 Weeks to go I suppose)!

   
 go go go! people are waiting for smth like that ;)
   
 i´ve 'heard' there is another CMS-like app currently being built with
wicket in the front-end?
 any details on that approach?
   
 igor? :)
   
   
 cu uwe
 --
   
 THOMAS DAILY GmbH
 Adlerstraße 19
 79098 Freiburg
 Deutschland
 T  + 49 761 3 85 59 0
 F  + 49 761 3 85 59 550
 E  [EMAIL PROTECTED]
 www.thomas-daily.de
   
 Geschäftsführer/Managing Directors:
 Wendy Thomas, Susanne Larbig
 Handelsregister Freiburg i.Br., HRB 3947
   
 Registrieren Sie sich unter http://morningnews.thomas-daily.de für die
kostenfreien TD Morning News, eine Auswahl aktueller Themen des Tages
morgens um 9:00 in Ihrer Mailbox.
   
 Hinweis: Der Redaktionsschluss für unsere TD Morning News ist täglich
   um
8:30 Uhr. Es werden vorrangig Informationen berücksichtigt, die nach
   16:00
Uhr des Vortages eingegangen sind. Die Email-Adresse unserer Redaktion
lautet [EMAIL PROTECTED]
   
   
 -
   
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
   
   
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket + CMS

2008-04-15 Thread Uwe Schäfer

Noz, Felix schrieb:


I'm currently evaluating different Frontend Frameworks to use them with a 
Java-Based CMS (OpenCms) and I'm very interested in trying wicket. The CMS has 
got its own Template mechanism which is based on JSP. Because it would be a 
problem for us to throw away all existing Templates and JSP Tags my idea was to 
implement a ResourceStreamLocator that connects to the CMS via http and 
delivers the resources directly from the CMS so that the CMS is rather a pure 
persistence and template system.


i´m facing a similar problem without having found a proper solution that 
works for me. i´m free to use a cms, but i need to deliver (and extend) 
via wicket.



- Is this a passible way to connect wicket to a jsp based system?
- Are there any better solutions?
- Does anybody else has experience in connecting OpenCms + wicket?


Kind of Hacky, but:
http://herebebeasties.com/2007-03-01/jsp-and-wicket-sitting-in-a-tree/

cu uwe
--

THOMAS DAILY GmbH
Adlerstraße 19
79098 Freiburg
Deutschland
T  + 49 761 3 85 59 0
F  + 49 761 3 85 59 550
E  [EMAIL PROTECTED]
www.thomas-daily.de

Geschäftsführer/Managing Directors:
Wendy Thomas, Susanne Larbig
Handelsregister Freiburg i.Br., HRB 3947

Registrieren Sie sich unter http://morningnews.thomas-daily.de für die 
kostenfreien TD Morning News, eine Auswahl aktueller Themen des Tages 
morgens um 9:00 in Ihrer Mailbox.


Hinweis: Der Redaktionsschluss für unsere TD Morning News ist täglich um 
8:30 Uhr. Es werden vorrangig Informationen berücksichtigt, die nach 
16:00 Uhr des Vortages eingegangen sind. Die Email-Adresse unserer 
Redaktion lautet [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket + CMS

2008-04-15 Thread Markus Strickler

Hi,

same thing here. I'd definitely be interested in a solution, as we are using
OpenCMS (and other CMSes that write content statically) quite a lot for our
customer's projects and I'd rather like to use Wicket (as opposed to JSP or
PHP) for form processing and other interactive parts of the website in future
projects.
Writing static html files from the CMS that are valid wicket templates
wouldn't
be a problem. Making wicket use them (and reload them if they change)
should be
doable.
However you would potentially have many HTML templates that are all
backed by
the same wicket page class. And so far I couldn't think of a way to
handle this
in wicket.

greetings,

-markus


Zitat von Rüdiger Schulz [EMAIL PROTECTED]:


Hello,

I have no solution, just an idea on what could work as well, as I have
thought about a Wicket / openCMS connection before (never had to implement
it though).

AFAIK OpenCms can publish its pages statically. Maybe you could configure
your CMS templates in a way that they become valid wicket templates after
publishing, and then use them in your application.

I never used OpenCms in a real world application, but I am sure something
similar would work with the (commercial) RedDot CMS, which is also doing
static page publishing.

Whatever way you will go, I'd be interested in the outcome, just out of
curiosity :-)


greetings,

Rüdiger


2008/4/15, Noz, Felix [EMAIL PROTECTED]:


Hello everybody,

I'm currently evaluating different Frontend Frameworks to use them with a
Java-Based CMS (OpenCms) and I'm very interested in trying wicket. The CMS
has got its own Template mechanism which is based on JSP. Because it would
be a problem for us to throw away all existing Templates and JSP Tags my
idea was to implement a ResourceStreamLocator that connects to the CMS via
http and delivers the resources directly from the CMS so that the CMS is
rather a pure persistence and template system.
My questions are:

- Is this a passible way to connect wicket to a jsp based system?
- Are there any better solutions?
- Does anybody else has experience in connecting OpenCms + wicket?

Regards

i.A. Felix Noz




Felix Noz
Junior IT-Berater
Dipl. Informatiker (FH)

comundus GmbH
Schüttelgrabenring 3, 71332 Waiblingen

Telefon +49 (0) 71 51-5 00 28-22
Internet www.comundus.com

Geschäftsführer: Klaus Hillemeier
Amtsgericht Stuttgart, HRB 264290

comundus ist ein Unternehmen der IT EXCELLENCE Group.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
greetings from Berlin,

Rüdiger Schulz

www.2rue.de
www.indyphone.de - Coole Handy Logos einfach selber bauen






This message was sent using IMP, the Internet Messaging Program.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket + CMS

2008-04-15 Thread Rüdiger Schulz
2008/4/15, Markus Strickler [EMAIL PROTECTED]:

 However you would potentially have many HTML templates that are all
 backed by
 the same wicket page class. And so far I couldn't think of a way to handle
 this
 in wicket.


If think you can override getVariation() to accomplish this:
http://wicketstuff.org/wicket13doc/org/apache/wicket/Component.html#getVariation()

Or, you find ways where the HTML templates are used for Panels (depends on
your use case). Remember, only markup between wicket:panel will be used,
everything outside will be omitted.

-- 
greetings from Berlin,

Rüdiger Schulz

www.2rue.de
www.indyphone.de - Coole Handy Logos einfach selber bauen


Re: Wicket + CMS

2008-04-15 Thread Jan Kriesten


Hi,


However you would potentially have many HTML templates that are all
backed by the same wicket page class. And so far I couldn't think of a

 way to handle this in wicket.

hmm, I don't know OpenCMS good enough, but I'd say it shouldn't be a problem to 
map static files thru a wicket-page/panel/whatever... you just need some logic 
to map the source of the page/panel to the given files.


I just did something like this to have a certain panel use FreeMarker templates 
which dynamically creates wicket:components (actually, this will be a new CMS 
based on Wicket... 8 Weeks to go I suppose)!


Best regards, --- Jan.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket + CMS

2008-04-15 Thread Uwe Schäfer

Jan Kriesten schrieb:

I just did something like this to have a certain panel use FreeMarker 
templates which dynamically creates wicket:components (actually, this 
will be a new CMS based on Wicket... 8 Weeks to go I suppose)!


go go go! people are waiting for smth like that ;)

i´ve 'heard' there is another CMS-like app currently being built with 
wicket in the front-end?

any details on that approach?

igor? :)

cu uwe
--

THOMAS DAILY GmbH
Adlerstraße 19
79098 Freiburg
Deutschland
T  + 49 761 3 85 59 0
F  + 49 761 3 85 59 550
E  [EMAIL PROTECTED]
www.thomas-daily.de

Geschäftsführer/Managing Directors:
Wendy Thomas, Susanne Larbig
Handelsregister Freiburg i.Br., HRB 3947

Registrieren Sie sich unter http://morningnews.thomas-daily.de für die 
kostenfreien TD Morning News, eine Auswahl aktueller Themen des Tages 
morgens um 9:00 in Ihrer Mailbox.


Hinweis: Der Redaktionsschluss für unsere TD Morning News ist täglich um 
8:30 Uhr. Es werden vorrangig Informationen berücksichtigt, die nach 
16:00 Uhr des Vortages eingegangen sind. Die Email-Adresse unserer 
Redaktion lautet [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket + CMS

2008-04-15 Thread Igor Vaynberg
the cms matej and i are working on will be opened shortly after may
1st. it is based on wicket and jcr. mind you it is not meant to be a
full-blown cms system yet, but rather a framework/library that makes
it easy to integrate a cms system into a wicket app. the small example
app we will provide will demonstrate a stand-alone cms. also note that
just because we are putting the source out there on may 1st it is far
from complete/pretty, we are doing it so early because a lot of people
want to take a peek.

-igor


2008/4/15 Uwe Schäfer [EMAIL PROTECTED]:
 Jan Kriesten schrieb:



  I just did something like this to have a certain panel use FreeMarker
 templates which dynamically creates wicket:components (actually, this will
 be a new CMS based on Wicket... 8 Weeks to go I suppose)!
 

  go go go! people are waiting for smth like that ;)

  i´ve 'heard' there is another CMS-like app currently being built with
 wicket in the front-end?
  any details on that approach?

  igor? :)


  cu uwe
  --

  THOMAS DAILY GmbH
  Adlerstraße 19
  79098 Freiburg
  Deutschland
  T  + 49 761 3 85 59 0
  F  + 49 761 3 85 59 550
  E  [EMAIL PROTECTED]
  www.thomas-daily.de

  Geschäftsführer/Managing Directors:
  Wendy Thomas, Susanne Larbig
  Handelsregister Freiburg i.Br., HRB 3947

  Registrieren Sie sich unter http://morningnews.thomas-daily.de für die
 kostenfreien TD Morning News, eine Auswahl aktueller Themen des Tages
 morgens um 9:00 in Ihrer Mailbox.

  Hinweis: Der Redaktionsschluss für unsere TD Morning News ist täglich um
 8:30 Uhr. Es werden vorrangig Informationen berücksichtigt, die nach 16:00
 Uhr des Vortages eingegangen sind. Die Email-Adresse unserer Redaktion
 lautet [EMAIL PROTECTED]


  -

  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-17 Thread Jan Kriesten


hi jonathan,


i'm curious.  who out there is using wicket for CMS?  i know hippo is, but is
there another as well?


working on (rewriting) one, but nothing in production yet.

regards, --- jan.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: wicket + CMS

2008-01-17 Thread Hoover, William
or even http://www.magnolia.info/en/magnolia.html

-Original Message-
From: Florian Sperber [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 17, 2008 2:36 AM
To: users@wicket.apache.org
Subject: Re: wicket + CMS


Hi Igor,

have you seen: http://cocoondev.org/daisy/index.html ?

Maybe their approach of keeping a repository could be interesting for 
you ;-)

Kind regards
Florian Sperber

Igor Vaynberg schrieb:
 same way all the java apps do, svnkit.com :)
 
 -igor
 
 
 On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
 Hi Igor,

 just curiosity, how do you cross that gap from java to svn?

 mf

 Igor Vaynberg schrieb:

 i am writing one right now for my company. i am building it on top of
 svn so you get versioning/tagging for free. it also allows you to
 embed tiles which are wicket components into the pages for all the
 dynamic parts. there is a good chance it will open sourced once i get
 it to a point where it is approaching something useful.

 -igor


 On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:

 i'm curious.  who out there is using wicket for CMS?  i know hippo is, but 
 is
 there another as well?
 --
 View this message in context: 
 http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-17 Thread Igor Vaynberg
magnolia is GPL

also how would you embed stateful wicket components into magnolia pages?

-igor


On Jan 17, 2008 4:22 AM, Hoover, William [EMAIL PROTECTED] wrote:
 or even http://www.magnolia.info/en/magnolia.html


 -Original Message-
 From: Florian Sperber [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 17, 2008 2:36 AM
 To: users@wicket.apache.org
 Subject: Re: wicket + CMS


 Hi Igor,

 have you seen: http://cocoondev.org/daisy/index.html ?

 Maybe their approach of keeping a repository could be interesting for
 you ;-)

 Kind regards
 Florian Sperber

 Igor Vaynberg schrieb:
  same way all the java apps do, svnkit.com :)
 
  -igor
 
 
  On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
  Hi Igor,
 
  just curiosity, how do you cross that gap from java to svn?
 
  mf
 
  Igor Vaynberg schrieb:
 
  i am writing one right now for my company. i am building it on top of
  svn so you get versioning/tagging for free. it also allows you to
  embed tiles which are wicket components into the pages for all the
  dynamic parts. there is a good chance it will open sourced once i get
  it to a point where it is approaching something useful.
 
  -igor
 
 
  On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:
 
  i'm curious.  who out there is using wicket for CMS?  i know hippo is, 
  but is
  there another as well?
  --
  View this message in context: 
  http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
  Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-17 Thread Igor Vaynberg
right, but then you can do that in any cms...im talking about really
embedding components, which is what i am building will allow since its
built w/wicket from the ground up...

-igor


On Jan 17, 2008 10:49 AM, Bruno Borges [EMAIL PROTECTED] wrote:
 It's possible to deploy wicket applications inside Magnolia, but as a fake
 portlet, inside an iframe.




 On Jan 17, 2008 3:42 PM, Igor Vaynberg [EMAIL PROTECTED] wrote:

  magnolia is GPL
 
  also how would you embed stateful wicket components into magnolia pages?
 
  -igor
 
 
  On Jan 17, 2008 4:22 AM, Hoover, William [EMAIL PROTECTED] wrote:
   or even http://www.magnolia.info/en/magnolia.html
  
  
   -Original Message-
   From: Florian Sperber [mailto:[EMAIL PROTECTED]
   Sent: Thursday, January 17, 2008 2:36 AM
   To: users@wicket.apache.org
   Subject: Re: wicket + CMS
  
  
   Hi Igor,
  
   have you seen: http://cocoondev.org/daisy/index.html ?
  
   Maybe their approach of keeping a repository could be interesting for
   you ;-)
  
   Kind regards
   Florian Sperber
  
   Igor Vaynberg schrieb:
same way all the java apps do, svnkit.com :)
   
-igor
   
   
On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
Hi Igor,
   
just curiosity, how do you cross that gap from java to svn?
   
mf
   
Igor Vaynberg schrieb:
   
i am writing one right now for my company. i am building it on top
  of
svn so you get versioning/tagging for free. it also allows you to
embed tiles which are wicket components into the pages for all the
dynamic parts. there is a good chance it will open sourced once i
  get
it to a point where it is approaching something useful.
   
-igor
   
   
On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED]
  wrote:
   
i'm curious.  who out there is using wicket for CMS?  i know hippo
  is, but is
there another as well?
--
View this message in context:
  http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
Sent from the Wicket - User mailing list archive at Nabble.com.
   
   
   
  -
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
   
   
  -
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
   
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
   
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 --
 Bruno Borges
 blog.brunoborges.com.br
 +55 1185657739

 The glory of great men should always be
 measured by the means they have used to
 acquire it.
 - Francois de La Rochefoucauld


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-17 Thread Bruno Borges
It's possible to deploy wicket applications inside Magnolia, but as a fake
portlet, inside an iframe.



On Jan 17, 2008 3:42 PM, Igor Vaynberg [EMAIL PROTECTED] wrote:

 magnolia is GPL

 also how would you embed stateful wicket components into magnolia pages?

 -igor


 On Jan 17, 2008 4:22 AM, Hoover, William [EMAIL PROTECTED] wrote:
  or even http://www.magnolia.info/en/magnolia.html
 
 
  -Original Message-
  From: Florian Sperber [mailto:[EMAIL PROTECTED]
  Sent: Thursday, January 17, 2008 2:36 AM
  To: users@wicket.apache.org
  Subject: Re: wicket + CMS
 
 
  Hi Igor,
 
  have you seen: http://cocoondev.org/daisy/index.html ?
 
  Maybe their approach of keeping a repository could be interesting for
  you ;-)
 
  Kind regards
  Florian Sperber
 
  Igor Vaynberg schrieb:
   same way all the java apps do, svnkit.com :)
  
   -igor
  
  
   On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
   Hi Igor,
  
   just curiosity, how do you cross that gap from java to svn?
  
   mf
  
   Igor Vaynberg schrieb:
  
   i am writing one right now for my company. i am building it on top
 of
   svn so you get versioning/tagging for free. it also allows you to
   embed tiles which are wicket components into the pages for all the
   dynamic parts. there is a good chance it will open sourced once i
 get
   it to a point where it is approaching something useful.
  
   -igor
  
  
   On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED]
 wrote:
  
   i'm curious.  who out there is using wicket for CMS?  i know hippo
 is, but is
   there another as well?
   --
   View this message in context:
 http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
   Sent from the Wicket - User mailing list archive at Nabble.com.
  
  
  
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
  
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Bruno Borges
blog.brunoborges.com.br
+55 1185657739

The glory of great men should always be
measured by the means they have used to
acquire it.
- Francois de La Rochefoucauld


Re: wicket + CMS

2008-01-17 Thread Bruno Borges
Ok... Well, Magnolia has no builtin support for such thing, but you can
always go deeper and code some crazy stuff, 'cause Magnolia is open source
and has a good plugin system.

On Jan 17, 2008 5:17 PM, Igor Vaynberg [EMAIL PROTECTED] wrote:

 right, but then you can do that in any cms...im talking about really
 embedding components, which is what i am building will allow since its
 built w/wicket from the ground up...

 -igor


 On Jan 17, 2008 10:49 AM, Bruno Borges [EMAIL PROTECTED] wrote:
  It's possible to deploy wicket applications inside Magnolia, but as a
 fake
  portlet, inside an iframe.
 
 
 
 
  On Jan 17, 2008 3:42 PM, Igor Vaynberg [EMAIL PROTECTED] wrote:
 
   magnolia is GPL
  
   also how would you embed stateful wicket components into magnolia
 pages?
  
   -igor
  
  
   On Jan 17, 2008 4:22 AM, Hoover, William [EMAIL PROTECTED] wrote:
or even http://www.magnolia.info/en/magnolia.html
   
   
-Original Message-
From: Florian Sperber [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 17, 2008 2:36 AM
To: users@wicket.apache.org
Subject: Re: wicket + CMS
   
   
Hi Igor,
   
have you seen: http://cocoondev.org/daisy/index.html ?
   
Maybe their approach of keeping a repository could be interesting
 for
you ;-)
   
Kind regards
Florian Sperber
   
Igor Vaynberg schrieb:
 same way all the java apps do, svnkit.com :)

 -igor


 On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
 Hi Igor,

 just curiosity, how do you cross that gap from java to svn?

 mf

 Igor Vaynberg schrieb:

 i am writing one right now for my company. i am building it on
 top
   of
 svn so you get versioning/tagging for free. it also allows you
 to
 embed tiles which are wicket components into the pages for all
 the
 dynamic parts. there is a good chance it will open sourced once
 i
   get
 it to a point where it is approaching something useful.

 -igor


 On Jan 16, 2008 1:28 PM, Jonathan Locke 
 [EMAIL PROTECTED]
   wrote:

 i'm curious.  who out there is using wicket for CMS?  i know
 hippo
   is, but is
 there another as well?
 --
 View this message in context:
   http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
 Sent from the Wicket - User mailing list archive at Nabble.com.



   -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




   -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

   
   
   
 -
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
   
   
 -
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Bruno Borges
  blog.brunoborges.com.br
  +55 1185657739
 
  The glory of great men should always be
  measured by the means they have used to
  acquire it.
  - Francois de La Rochefoucauld
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Bruno Borges
blog.brunoborges.com.br
+55 1185657739

The glory of great men should always be
measured by the means they have used to
acquire it.
- Francois de La Rochefoucauld


wicket + CMS

2008-01-16 Thread Jonathan Locke

i'm curious.  who out there is using wicket for CMS?  i know hippo is, but is
there another as well?
-- 
View this message in context: 
http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-16 Thread Igor Vaynberg
i am writing one right now for my company. i am building it on top of
svn so you get versioning/tagging for free. it also allows you to
embed tiles which are wicket components into the pages for all the
dynamic parts. there is a good chance it will open sourced once i get
it to a point where it is approaching something useful.

-igor


On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:

 i'm curious.  who out there is using wicket for CMS?  i know hippo is, but is
 there another as well?
 --
 View this message in context: 
 http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-16 Thread Jonathan Locke


cool.  keep us posted!


igor.vaynberg wrote:
 
 i am writing one right now for my company. i am building it on top of
 svn so you get versioning/tagging for free. it also allows you to
 embed tiles which are wicket components into the pages for all the
 dynamic parts. there is a good chance it will open sourced once i get
 it to a point where it is approaching something useful.
 
 -igor
 
 
 On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:

 i'm curious.  who out there is using wicket for CMS?  i know hippo is,
 but is
 there another as well?
 --
 View this message in context:
 http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/wicket-%2B-CMS-tp14895305p14896859.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-16 Thread Martin Funk

Hi Igor,

just curiosity, how do you cross that gap from java to svn?

mf

Igor Vaynberg schrieb:

i am writing one right now for my company. i am building it on top of
svn so you get versioning/tagging for free. it also allows you to
embed tiles which are wicket components into the pages for all the
dynamic parts. there is a good chance it will open sourced once i get
it to a point where it is approaching something useful.

-igor


On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:
  

i'm curious.  who out there is using wicket for CMS?  i know hippo is, but is
there another as well?
--
View this message in context: 
http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

  



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-16 Thread Igor Vaynberg
same way all the java apps do, svnkit.com :)

-igor


On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
 Hi Igor,

 just curiosity, how do you cross that gap from java to svn?

 mf

 Igor Vaynberg schrieb:

  i am writing one right now for my company. i am building it on top of
  svn so you get versioning/tagging for free. it also allows you to
  embed tiles which are wicket components into the pages for all the
  dynamic parts. there is a good chance it will open sourced once i get
  it to a point where it is approaching something useful.
 
  -igor
 
 
  On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:
 
  i'm curious.  who out there is using wicket for CMS?  i know hippo is, but 
  is
  there another as well?
  --
  View this message in context: 
  http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
  Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-16 Thread Florian Sperber

Hi Igor,

have you seen: http://cocoondev.org/daisy/index.html ?

Maybe their approach of keeping a repository could be interesting for 
you ;-)


Kind regards
Florian Sperber

Igor Vaynberg schrieb:

same way all the java apps do, svnkit.com :)

-igor


On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:

Hi Igor,

just curiosity, how do you cross that gap from java to svn?

mf

Igor Vaynberg schrieb:


i am writing one right now for my company. i am building it on top of
svn so you get versioning/tagging for free. it also allows you to
embed tiles which are wicket components into the pages for all the
dynamic parts. there is a good chance it will open sourced once i get
it to a point where it is approaching something useful.

-igor


On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:


i'm curious.  who out there is using wicket for CMS?  i know hippo is, but is
there another as well?
--
View this message in context: 
http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-16 Thread Igor Vaynberg
keep in mind that this is designed towards our internal requirements
and not as a general purpose cms. that said, one of the requirements
is to provide an optimized workflow for our integrators. these guys
get down to the nitty gritty - so the most optimized workflow for them
is to be able to check out a site from svn, edit it locally with
whatever tools they prefer, and check it back in. we cant do that with
a jcr :)

-igor


On Jan 16, 2008 11:36 PM, Florian Sperber [EMAIL PROTECTED] wrote:
 Hi Igor,

 have you seen: http://cocoondev.org/daisy/index.html ?

 Maybe their approach of keeping a repository could be interesting for
 you ;-)

 Kind regards
 Florian Sperber

 Igor Vaynberg schrieb:

  same way all the java apps do, svnkit.com :)
 
  -igor
 
 
  On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
  Hi Igor,
 
  just curiosity, how do you cross that gap from java to svn?
 
  mf
 
  Igor Vaynberg schrieb:
 
  i am writing one right now for my company. i am building it on top of
  svn so you get versioning/tagging for free. it also allows you to
  embed tiles which are wicket components into the pages for all the
  dynamic parts. there is a good chance it will open sourced once i get
  it to a point where it is approaching something useful.
 
  -igor
 
 
  On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED] wrote:
 
  i'm curious.  who out there is using wicket for CMS?  i know hippo is, 
  but is
  there another as well?
  --
  View this message in context: 
  http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
  Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: wicket + CMS

2008-01-16 Thread Ayodeji Aladejebi
please is it possible to inject Panels using Spring, because my own version
of CMS will allow swapping of panels without recompilation.



On 1/17/08, Igor Vaynberg [EMAIL PROTECTED] wrote:

 keep in mind that this is designed towards our internal requirements
 and not as a general purpose cms. that said, one of the requirements
 is to provide an optimized workflow for our integrators. these guys
 get down to the nitty gritty - so the most optimized workflow for them
 is to be able to check out a site from svn, edit it locally with
 whatever tools they prefer, and check it back in. we cant do that with
 a jcr :)

 -igor


 On Jan 16, 2008 11:36 PM, Florian Sperber [EMAIL PROTECTED] wrote:
  Hi Igor,
 
  have you seen: http://cocoondev.org/daisy/index.html ?
 
  Maybe their approach of keeping a repository could be interesting for
  you ;-)
 
  Kind regards
  Florian Sperber
 
  Igor Vaynberg schrieb:
 
   same way all the java apps do, svnkit.com :)
  
   -igor
  
  
   On Jan 16, 2008 11:01 PM, Martin Funk [EMAIL PROTECTED] wrote:
   Hi Igor,
  
   just curiosity, how do you cross that gap from java to svn?
  
   mf
  
   Igor Vaynberg schrieb:
  
   i am writing one right now for my company. i am building it on top
 of
   svn so you get versioning/tagging for free. it also allows you to
   embed tiles which are wicket components into the pages for all the
   dynamic parts. there is a good chance it will open sourced once i
 get
   it to a point where it is approaching something useful.
  
   -igor
  
  
   On Jan 16, 2008 1:28 PM, Jonathan Locke [EMAIL PROTECTED]
 wrote:
  
   i'm curious.  who out there is using wicket for CMS?  i know hippo
 is, but is
   there another as well?
   --
   View this message in context:
 http://www.nabble.com/wicket-%2B-CMS-tp14895305p14895305.html
   Sent from the Wicket - User mailing list archive at Nabble.com.
  
  
  
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
  
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]