Re: [xwiki-users] xwiki blog - How to use (outdated)

2009-09-21 Thread Michael Beetz
Vincent, Yes, it could be me ... once I figure it out. However I was playing a couple of hours a few weeks ago, yesterday too, but I am lost in the code ... I'll continue end of the week. Thanks mb -Original Message- From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On

Re: [xwiki-users] xwiki blog - How to use (outdated)

2009-09-21 Thread Vincent Massol
What would be nice would be to create macros that could be used in pages: - to display all blog entries for a given blog name - to display blog entries for a given category - to display blog entries for a given date range That could be one macro with different parameters: {{blog name=...

[xwiki-users] Links in mail notification messages.

2009-09-21 Thread Николаев Дмитрий
Hello. I've set up Tomcat, MySQL and Xwiki on one of my servers called White (white.mydomain.ru). Xwiki is reachable at http://white.mydomain.ru:8080/wiki Then I've set up Apache on my main server (mail.mydomain.ru) as proxy. Now my Xwiki instance is reachable at http://mail.mydomain.ru/wiki

Re: [xwiki-users] xwiki blog - How to use (outdated)

2009-09-21 Thread Vincent Massol
On Sep 21, 2009, at 10:27 AM, Vincent Massol wrote: On Sep 21, 2009, at 9:40 AM, Vincent Massol wrote: What would be nice would be to create macros that could be used in pages: - to display all blog entries for a given blog name - to display blog entries for a given category - to

Re: [xwiki-users] xwiki blog - How to use (outdated)

2009-09-21 Thread Vincent Massol
On Sep 21, 2009, at 9:40 AM, Vincent Massol wrote: What would be nice would be to create macros that could be used in pages: - to display all blog entries for a given blog name - to display blog entries for a given category - to display blog entries for a given date range That could be

Re: [xwiki-users] Setting an object date property from a String.

2009-09-21 Thread Jean Couteau
Ok, I ended up successfully setting my date parameter from a string combining velocity and groovy. Here is what I've done : Created a Groovy class on a page named Project.DateParser : /* Groovy Class : Date parser#* */ import java.text.DateFormat; import java.text.SimpleDateFormat; import

Re: [xwiki-users] Links in mail notification messages.

2009-09-21 Thread Rune Hylleberg
Well, if you don't want to play with the access to your local network you could try the xwiki.cfg file found in your webapps/xwiki folder (on tomcat it might be different). There you have a section called URLs and it contain this paragraph. I believe it would do the trick.

[xwiki-users] [myxwiki] XWiki Enterprise 2.0 RC 2 Upgrade

2009-09-21 Thread Jerome Velociter
Hello, myxwiki.org has been upgraded to XE 2.0 RC 2, if you own a wiki hosted there you should have a look at : http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise20RC2 We also strongly recommend an upgrade to the latest wiki version. To upgrade you must download XE 2.0 RC 2

Re: [xwiki-users] FAQTutorial broken in 1.9

2009-09-21 Thread Steven Calkins
Hi Vincent, hi Zeljko, I initially got the same results as Zeljko when I tried it. It took me three or four tries before I got it right. The trouble is that so many things are going on at once. I don't exactly remember how I solved it, but I remember that the problem I had was changing the

Re: [xwiki-users] xwiki blog - How to use (outdated)

2009-09-21 Thread Michael Beetz
Hi Vincent, all, These are really good hints to develop some structured code. However I've never wrote a xwiki macro. I do not know what slang I should use (velocity, xwiki, ...). I am pleasing you kindly to show some direction ... and I will try to follow it. (I've done some really small

Re: [xwiki-users] Setting an object date property from a String.

2009-09-21 Thread Niels Mayer
On Mon, Sep 21, 2009 at 1:45 AM, Jean Couteau cout...@codelutin.com wrote: /* Groovy Class : Date parser#* */ import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; class DateParser { Date parse(toParse) { def formatter = new