Re: [xwiki-users] Creating a Toolbar of my own

2008-05-24 Thread Vincent Massol
> -Original Message- >> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >> Behalf >> Of Mike Oliver >> Sent: 22 May 2008 20:56 >> To: users@xwiki.org >> Subject: Re: [xwiki-users] Creating a Toolbar of my own >> >> >> >

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-24 Thread Mike Oliver
> > Regards, > > Richard > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf > Of Mike Oliver > Sent: 22 May 2008 20:56 > To: users@xwiki.org > Subject: Re: [xwiki-users] Creating a Toolbar of my own > > > > Bin

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-23 Thread Mike Oliver
useful code snipets like this on the XWiki site? Thanks. > > Regards, > > Richard > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf > Of Mike Oliver > Sent: 22 May 2008 20:56 > To: users@xwiki.org > Subject: Re: [xwiki-users] Cre

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-23 Thread goldring, richard
Mike, Can you document useful code snipets like this on the XWiki site? Thanks. Regards, Richard -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Oliver Sent: 22 May 2008 20:56 To: users@xwiki.org Subject: Re: [xwiki-users] Creating a Toolbar of my

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-22 Thread Guillaume Lerouge
> > Well we stopped using XWiki Workspaces as we are building custom solutions > and if my memory serves me correctly you responded once with the comment > that Workspaces was meant to be quick and dirty not for development. > Indeed. I'll try remembering better next time ;-) > XE is great. Th

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-22 Thread Mike Oliver
Well we stopped using XWiki Workspaces as we are building custom solutions and if my memory serves me correctly you responded once with the comment that Workspaces was meant to be quick and dirty not for development. XE is great. Guillaume Lerouge wrote: > > Glad you found a solution to your i

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-22 Thread Guillaume Lerouge
Glad you found a solution to your issue, even though we weren't that helpful on it ;-) By the way, AFAIR you were using XWiki Workspaces, I'd be glad to hear from you and gather some feedback about how you're using the solution, what you enjoy about it and so on... Guillaume On Thu, May 22, 2008

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-22 Thread Mike Oliver
Bingo we have a winner... #set ($hql = ", BaseObject as obj where obj.name=doc.fullName and obj.className='XWiki.ToolbarClass' and obj.name<>'XWiki.ToolbarClassTemplate'") #set ($toolbars= $xwiki.searchDocuments($hql)) #if ($toolbars.size() > 0) #foreach ($toolbar in $toolbars) #set

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-22 Thread Mike Oliver
Ok almost there... This line works with the Click here link, but the img link doesn't. * [Click here>$itemdoc.display('GotoPage')] [$toolbar] Mike Oliver wrote: > > Ok proding right along I got the icon attached to the toolbar page to > display for each in the toolbars

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-22 Thread Mike Oliver
Ok proding right along I got the icon attached to the toolbar page to display for each in the toolbars list, but the link on the image doesn't work. Here is the latest... #set ($hql = ", BaseObject as obj where obj.name=doc.fullName and obj.className='XWiki.ToolbarClass' and obj.name<>'X

Re: [xwiki-users] Creating a Toolbar of my own

2008-05-22 Thread Mike Oliver
Ok first problem solved the img link had the arguments in the wrong order so < was bad and < was good. Now the question is, given th