Hi, There is a new test release 0.9.1252 which is a major evolution versus 0.9.840 and contains mainly fixes since 0.9.1252 Any user is welcome to test it and report any problems. Ludovic -- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
It seems that xwiki-0.9.1252 can only be deployed to the context path "/xwiki". If deployed elsewhere, all the links will still point to /xwiki. In XWikiServletURLFactory::init(), a local variable "servletpath" is set but never really used, and this.servletPath is not set. Since I don't understand the related actionPath code, and getEngineContext()).getServletContext().getServletContextName() returns "" for me, I don't have a complete fix. But the following code seems to work for my purposes: package com.xpn.xwiki.web; ... public class XWikiServletURLFactory extends XWikiDefaultURLFactory { ... public void init(XWikiContext context) { URL url = context.getURL(); String path = url.getPath(); //String servletpath = context.getRequest().getServletPath(); servletPath = (context.getWiki()==null) ? "" : context.getWiki().Param("xwiki.servletpath", ""); if (servletPath.equals("")) { //try { // servletPath = ((XWikiServletContext)context.getEngineContext()).getServletContext().getServletContextName() + "/"; //} catch (Exception e) { servletPath = path.substring(0, path.indexOf('/', 1) + 1); //} } actionPath = context.getWiki().Param("xwiki.actionpath", ""); if (actionPath.equals("")) { //if (servletPath.startsWith ("/bin")) { actionPath = "bin/"; //} //else if (context.getRequest().getServletPath().startsWith ("/testbin")) { actionPath = "testbin/"; } //else { // actionPath = context.getWiki().Param("xwiki.defaultactionpath", "xwiki/");; //} } try { serverURL = new URL(url, "/"); } catch (MalformedURLException e) { // This can't happen } } Ludovic Dubost wrote:
Hi,
There is a new test release 0.9.1252 which is a major evolution versus 0.9.840 and contains mainly fixes since 0.9.1252 Any user is welcome to test it and report any problems.
Ludovic
------------------------------------------------------------------------
-- Trevor Cox skahasoftware.com Vancouver, Canada
Hi Ludovic, Where is the new test release located? I'm currently using svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/trunk Thanks Duke On 7/12/06, Ludovic Dubost <ludovic@xwiki.com> wrote:
Hi,
There is a new test release 0.9.1252 which is a major evolution versus 0.9.840 and contains mainly fixes since 0.9.1252 Any user is welcome to test it and report any problems.
Ludovic
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
-- You receive this message as a subscriber of the xwiki-dev@objectweb.orgmailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Hi, here : http://forge.objectweb.org/project/showfiles.php?group_id=170 On 7/20/06, Duke Tantiprasut <duketantiprasut@gmail.com> wrote:
Hi Ludovic,
Where is the new test release located? I'm currently using svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/trunk
Thanks Duke
On 7/12/06, Ludovic Dubost <ludovic@xwiki.com> wrote:
Hi,
There is a new test release 0.9.1252 which is a major evolution versus 0.9.840 and contains mainly fixes since 0.9.1252 Any user is welcome to test it and report any problems.
Ludovic
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org mailing list. To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org mailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- jeremi
What about from SVN? so I can merge in my diffs. On 7/19/06, jeremi joslin <jeremi23@gmail.com> wrote:
Hi, here : http://forge.objectweb.org/project/showfiles.php?group_id=170
On 7/20/06, Duke Tantiprasut <duketantiprasut@gmail.com> wrote:
Hi Ludovic,
Where is the new test release located? I'm currently using svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/trunk
Thanks Duke
On 7/12/06, Ludovic Dubost <ludovic@xwiki.com> wrote:
Hi,
There is a new test release 0.9.1252 which is a major evolution versus 0.9.840 and contains mainly fixes since 0.9.1252 Any user is welcome to test it and report any problems.
Ludovic
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org mailing list. To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org mailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- jeremi
-- You receive this message as a subscriber of the xwiki-dev@objectweb.orgmailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
The latest code in SVN is 1252 Ludovic Duke Tantiprasut a écrit :
What about from SVN? so I can merge in my diffs.
On 7/19/06, *jeremi joslin* <jeremi23@gmail.com <mailto:jeremi23@gmail.com>> wrote:
Hi, here : http://forge.objectweb.org/project/showfiles.php?group_id=170 <http://forge.objectweb.org/project/showfiles.php?group_id=170>
On 7/20/06, Duke Tantiprasut <duketantiprasut@gmail.com <mailto:duketantiprasut@gmail.com>> wrote: > Hi Ludovic, > > Where is the new test release located? I'm currently using > svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/trunk > > Thanks > Duke > > > On 7/12/06, Ludovic Dubost <ludovic@xwiki.com <mailto:ludovic@xwiki.com>> wrote: > > > > Hi, > > There is a new test release 0.9.1252 which is a major evolution versus > 0.9.840 and contains mainly fixes since 0.9.1252 > Any user is welcome to test it and report any problems. > > Ludovic > > -- > Ludovic Dubost > XPertNet: http://www.xpertnet.fr/ > Blog: http://www.ludovic.org/blog/ <http://www.ludovic.org/blog/> > XWiki: http://www.xwiki.com > Skype: ldubost AIM: nvludo Yahoo: ludovic > > > > > > -- > You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> > mailing list. > To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > For general help: mailto: sympa@objectweb.org <mailto:sympa@objectweb.org>?subject=help > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws > > > > > > -- > You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> > mailing list. > To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > For general help: mailto:sympa@objectweb.org <mailto:sympa@objectweb.org>?subject=help > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws > > >
-- jeremi
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> mailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> For general help: mailto:sympa@objectweb.org <mailto:sympa@objectweb.org> ?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
------------------------------------------------------------------------
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org mailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
Yeah - I just went through the 1252 and it's the same as the SVN. For some reason I thought there were some new stuff coming down the line from a different branch because the SVN hasnt changed for some time (except for today with the LevelsClass.java and Attachment.vm). Guess the good news is that I'm up to date and merging will be easier going forward. Cheers Duke On 7/20/06, Ludovic Dubost <ludovic@xwiki.com> wrote:
The latest code in SVN is 1252
Ludovic
Duke Tantiprasut a écrit :
What about from SVN? so I can merge in my diffs.
On 7/19/06, *jeremi joslin* <jeremi23@gmail.com <mailto:jeremi23@gmail.com>> wrote:
Hi, here : http://forge.objectweb.org/project/showfiles.php?group_id=170 <http://forge.objectweb.org/project/showfiles.php?group_id=170>
On 7/20/06, Duke Tantiprasut <duketantiprasut@gmail.com <mailto:duketantiprasut@gmail.com>> wrote: > Hi Ludovic, > > Where is the new test release located? I'm currently using > svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/trunk > > Thanks > Duke > > > On 7/12/06, Ludovic Dubost <ludovic@xwiki.com <mailto:ludovic@xwiki.com>> wrote: > > > > Hi, > > There is a new test release 0.9.1252 which is a major evolution versus > 0.9.840 and contains mainly fixes since 0.9.1252 > Any user is welcome to test it and report any problems. > > Ludovic > > -- > Ludovic Dubost > XPertNet: http://www.xpertnet.fr/ > Blog: http://www.ludovic.org/blog/ <http://www.ludovic.org/blog/> > XWiki: http://www.xwiki.com > Skype: ldubost AIM: nvludo Yahoo: ludovic > > > > > > -- > You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> > mailing list. > To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > For general help: mailto: sympa@objectweb.org <mailto:sympa@objectweb.org>?subject=help > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws > > > > > > -- > You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> > mailing list. > To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > For general help: mailto:sympa@objectweb.org <mailto:sympa@objectweb.org>?subject=help > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws > > >
-- jeremi
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> mailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> For general help: mailto:sympa@objectweb.org <mailto:sympa@objectweb.org> ?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
------------------------------------------------------------------------
-- You receive this message as a subscriber of the xwiki-dev@objectweb.orgmailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
-- You receive this message as a subscriber of the xwiki-dev@objectweb.orgmailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Yes, 1252 was just a build of the version that wasn't changed for sometime. We have updated xwiki.com which has running version 840, so this was a big upgrade. We have some features in the works like Captcha, new registration, improvements in memory handling of versions but these have not been commited yet Ludovic Duke Tantiprasut a écrit :
Yeah - I just went through the 1252 and it's the same as the SVN. For some reason I thought there were some new stuff coming down the line from a different branch because the SVN hasnt changed for some time (except for today with the LevelsClass.java and Attachment.vm).
Guess the good news is that I'm up to date and merging will be easier going forward.
Cheers Duke
On 7/20/06, * Ludovic Dubost* <ludovic@xwiki.com <mailto:ludovic@xwiki.com>> wrote:
The latest code in SVN is 1252
Ludovic
Duke Tantiprasut a écrit : > What about from SVN? so I can merge in my diffs. > > On 7/19/06, *jeremi joslin* < jeremi23@gmail.com <mailto:jeremi23@gmail.com> > <mailto:jeremi23@gmail.com <mailto:jeremi23@gmail.com>>> wrote: > > Hi, > here : > http://forge.objectweb.org/project/showfiles.php?group_id=170 > <http://forge.objectweb.org/project/showfiles.php?group_id=170> > > On 7/20/06, Duke Tantiprasut <duketantiprasut@gmail.com <mailto:duketantiprasut@gmail.com> > <mailto:duketantiprasut@gmail.com <mailto:duketantiprasut@gmail.com> >> wrote: > > Hi Ludovic, > > > > Where is the new test release located? I'm currently using > > svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/trunk > > > > Thanks > > Duke > > > > > > On 7/12/06, Ludovic Dubost <ludovic@xwiki.com <mailto:ludovic@xwiki.com> > <mailto: ludovic@xwiki.com <mailto:ludovic@xwiki.com>>> wrote: > > > > > > > Hi, > > > > There is a new test release 0.9.1252 which is a major evolution > versus > > 0.9.840 and contains mainly fixes since 0.9.1252 > > Any user is welcome to test it and report any problems. > > > > Ludovic > > > > -- > > Ludovic Dubost > > XPertNet: http://www.xpertnet.fr/ > > Blog: http://www.ludovic.org/blog/ < http://www.ludovic.org/blog/> > > XWiki: http://www.xwiki.com > > Skype: ldubost AIM: nvludo Yahoo: ludovic > > > > > > > > > > > > -- > > You receive this message as a subscriber of the > xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> <mailto: xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org>> > > mailing list. > > To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > <mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org>> > > For general help: mailto: sympa@objectweb.org <mailto:sympa@objectweb.org> > <mailto:sympa@objectweb.org <mailto:sympa@objectweb.org>>?subject=help > > ObjectWeb mailing lists service home page: > http://www.objectweb.org/wws > > > > > > > > > > > > -- > > You receive this message as a subscriber of the > xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> <mailto: xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org>> > > mailing list. > > To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > <mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org>> > > For general help: mailto:sympa@objectweb.org <mailto:sympa@objectweb.org> > <mailto:sympa@objectweb.org <mailto:sympa@objectweb.org>>?subject=help > > ObjectWeb mailing lists service home page: > http://www.objectweb.org/wws > > > > > > > > > -- > jeremi > > > > > -- > You receive this message as a subscriber of the > xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> <mailto:xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org>> mailing list. > To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > <mailto:xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org>> > For general help: mailto:sympa@objectweb.org <mailto:sympa@objectweb.org> > <mailto:sympa@objectweb.org <mailto:sympa@objectweb.org>> ?subject=help > ObjectWeb mailing lists service home page: > http://www.objectweb.org/wws <http://www.objectweb.org/wws> > > > > ------------------------------------------------------------------------ > > > -- > You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> mailing list. > To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> > For general help: mailto: sympa@objectweb.org <mailto:sympa@objectweb.org>?subject=help > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws >
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org <mailto:xwiki-dev@objectweb.org> mailing list. To unsubscribe: mailto: xwiki-dev-unsubscribe@objectweb.org <mailto:xwiki-dev-unsubscribe@objectweb.org> For general help: mailto:sympa@objectweb.org <mailto:sympa@objectweb.org>?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
------------------------------------------------------------------------
-- You receive this message as a subscriber of the xwiki-dev@objectweb.org mailing list. To unsubscribe: mailto:xwiki-dev-unsubscribe@objectweb.org For general help: mailto:sympa@objectweb.org?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
-- Ludovic Dubost XPertNet: http://www.xpertnet.fr/ Blog: http://www.ludovic.org/blog/ XWiki: http://www.xwiki.com Skype: ldubost AIM: nvludo Yahoo: ludovic
participants (4)
-
Duke Tantiprasut -
jeremi joslin -
Ludovic Dubost -
Trevor Cox