[xwiki-users] Problem getting structured tags working wiht Xwiki 3.5

2012-05-02 Thread Bergquist, Brett
I have edited the XWiki Tag Class

http://server/xwiki/bin/view/XWiki/TagClasshttp://%3cserver%3e/xwiki/bin/view/XWiki/TagClass

and set the Tags property.  The name is tags and I have edited the Values to 
be the list of tags I want.  However on a page, I do not see the list of tags 
when I click on the Tags(+).   Is this only effective for a newly created page 
or should the tags appear on the existing pages?

Any help or thoughts will be appreciated.

Brett
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Problem getting structured tags working wiht Xwiki 3.5

2012-05-03 Thread Bergquist, Brett
Thanks for your input but I am still confused and the confusion comes from

http://extensions.xwiki.org/xwiki/bin/view/Extension/Tag+Application

No matter what I select (checkbox display or select display), I do not see the 
Tags listed like in the image of Document Information on this page.   

So either this page is wrong or I have something wrong.  It would be useful to 
know which...

From this page I see:

To setup the Checkbox display, you need to select checkbox on the TagClass 
page. Once this is done, users will be able to assign a tag to a given page by 
ticking the relevant box.

This is what I want users to be able do, to assign a tag to a given page by 
ticking the relevant box.

I really like XWiki but I think this is one of the major problems is that the 
documentation does not match what actually is.

Again, thank you for your response and hopefully you will have more info on the 
above.

Brett



-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Marius Dumitru Florea
Sent: Thursday, May 03, 2012 2:53 AM
To: XWiki Users
Subject: Re: [xwiki-users] Problem getting structured tags working wiht Xwiki 
3.5

On Wed, May 2, 2012 at 8:17 PM, Bergquist, Brett bbergqu...@canoga.com wrote:
 I have edited the XWiki Tag Class

 http://server/xwiki/bin/view/XWiki/TagClasshttp://%3cserver%3e/xwik
 i/bin/view/XWiki/TagClass

 and set the Tags property.  The name is tags and I have edited the Values to 
 be the list of tags I want.  However on a page, I do not see the list of tags 
 when I click on the Tags(+).   Is this only effective for a newly created 
 page or should the tags appear on the existing pages?

 Any help or thoughts will be appreciated.

If you also change the Display Type to select and put this code in a page 
with tags:

{{velocity}}
$doc.display('tags')
{{/velocity}}

and then edit this page in Inline form edit mode (?editor=inline) you'll see 
the list of tags you have set in XWiki.TagClass

But the tag UI, i.e. what you get when clicking on Tags(+), doesn't take into 
account neither the Display Type nor the Values meta properties of tags. 
So you either modify the tag UI or write a custom one, or you can write an 
event listener ( 
http://extensions.xwiki.org/xwiki/bin/view/Extension/Observation+Module+Local
) that is notified when a document is saved and filters the tags.

Hope this helps,
Marius


 Brett
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] A question on Skin Extensions (not working)

2012-05-03 Thread Bergquist, Brett
I tried doing exactly what I see in this tutorial:

http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial

to to the Minimal StyleSheet eXtension.I do everything as the tutorial says 
but there is no effect.

So is the tutorial wrong or does the option Always on this wiki not work?

I can do:

{{velocity}}
$xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
{{/velocity}}

In a page and have it work, but I want to have an extension for all of the Wiki 
so I want to use the Always on this wiki.

Thanks for any pointers one might give.

Brett

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
Logged in as Admin so I believe so. 

Brett Bergquist
Principal Software Engineer
Canoga Perkins


On May 4, 2012, at 3:08 AM, Thomas Mortagne thomas.morta...@xwiki.com wrote:

 Hi,
 
 Are you saving the document with a users having programming rights
 like the tutorial suggest ?
 
 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 I tried doing exactly what I see in this tutorial:
 
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial
 
 to to the Minimal StyleSheet eXtension.I do everything as the tutorial 
 says but there is no effect.
 
 So is the tutorial wrong or does the option Always on this wiki not work?
 
 I can do:
 
 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}
 
 In a page and have it work, but I want to have an extension for all of the 
 Wiki so I want to use the Always on this wiki.
 
 Thanks for any pointers one might give.
 
 Brett
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 -- 
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
Yes a standalone xwiki set up for scratch. 

I just did the velocity macro suggested and it returns true. 

Note that I can do as suggested in the tutorial and on demand include the skin 
extension in a page and that works fine and I see the style changes so it 
appears the extension is ok just not the ability to have it apply to the whole 
wiki which is what I need. 

Brett Bergquist
Principal Software Engineer
Canoga Perkins


On May 4, 2012, at 9:21 AM, Thomas Mortagne thomas.morta...@xwiki.com wrote:

 On Fri, May 4, 2012 at 2:35 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 Logged in as Admin so I believe so.
 
 Admin on main wiki or admin on a subwiki ? Or maybe it's a standalone wiki.
 
 To have programming right you need to have admin right on main wiki
 (so you need to use a global user). A simply way to test it is by
 putting the following code in a page:
 
 {{velocity}}
 $hasProgramming
 {{/velocity}}
 
 You should get true if you have programming right.
 
 
 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins
 
 
 On May 4, 2012, at 3:08 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:
 
 Hi,
 
 Are you saving the document with a users having programming rights
 like the tutorial suggest ?
 
 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 I tried doing exactly what I see in this tutorial:
 
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial
 
 to to the Minimal StyleSheet eXtension.I do everything as the tutorial 
 says but there is no effect.
 
 So is the tutorial wrong or does the option Always on this wiki not work?
 
 I can do:
 
 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}
 
 In a page and have it work, but I want to have an extension for all of the 
 Wiki so I want to use the Always on this wiki.
 
 Thanks for any pointers one might give.
 
 Brett
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 -- 
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
Will do.  In fact I am going to download the jar installer fresh for both 3.5.1 
and the new 4.0 and follow the tutorial on both and verify it works or does not 
with these. 

Thanks for your input. 

Brett Bergquist
Principal Software Engineer
Canoga Perkins


On May 4, 2012, at 10:17 AM, Thomas Mortagne thomas.morta...@xwiki.com 
wrote:

 On Fri, May 4, 2012 at 3:59 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 Yes a standalone xwiki set up for scratch.
 
 I just did the velocity macro suggested and it returns true.
 
 Note that I can do as suggested in the tutorial and on demand include the 
 skin extension in a page and that works fine and I see the style changes so 
 it appears the extension is ok just not the ability to have it apply to the 
 whole wiki which is what I need.
 
 Ok so unless someone has another idea it looks a lot like a bug to me.
 
 So I would say the next step is to create a bug issue on
 http://jira.xwiki.org and put everything you can think of to reproduce
 exactly your use case including the version of XE you are using.
 
 
 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins
 
 
 On May 4, 2012, at 9:21 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:
 
 On Fri, May 4, 2012 at 2:35 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 Logged in as Admin so I believe so.
 
 Admin on main wiki or admin on a subwiki ? Or maybe it's a standalone wiki.
 
 To have programming right you need to have admin right on main wiki
 (so you need to use a global user). A simply way to test it is by
 putting the following code in a page:
 
 {{velocity}}
 $hasProgramming
 {{/velocity}}
 
 You should get true if you have programming right.
 
 
 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins
 
 
 On May 4, 2012, at 3:08 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:
 
 Hi,
 
 Are you saving the document with a users having programming rights
 like the tutorial suggest ?
 
 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 I tried doing exactly what I see in this tutorial:
 
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial
 
 to to the Minimal StyleSheet eXtension.I do everything as the 
 tutorial says but there is no effect.
 
 So is the tutorial wrong or does the option Always on this wiki not 
 work?
 
 I can do:
 
 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}
 
 In a page and have it work, but I want to have an extension for all of 
 the Wiki so I want to use the Always on this wiki.
 
 Thanks for any pointers one might give.
 
 Brett
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 -- 
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
Ok, I just downloaded the standalone jar installer for 3.5.1 and installed on 
Windows and following the tutorial works.  Now I will do the same thing on 
Solaris which is where I am having the problem.

So it looks like the problem will be related to the environment or other things 
installed. 

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Thomas Mortagne
Sent: Friday, May 04, 2012 10:22 AM
To: XWiki Users
Subject: Re: [xwiki-users] A question on Skin Extensions (not working)

On Fri, May 4, 2012 at 4:20 PM, Bergquist, Brett bbergqu...@canoga.com wrote:
 Will do.  In fact I am going to download the jar installer fresh for both 
 3.5.1 and the new 4.0 and follow the tutorial on both and verify it works or 
 does not with these.

Ok great.


 Thanks for your input.

 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins


 On May 4, 2012, at 10:17 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:

 On Fri, May 4, 2012 at 3:59 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 Yes a standalone xwiki set up for scratch.

 I just did the velocity macro suggested and it returns true.

 Note that I can do as suggested in the tutorial and on demand include the 
 skin extension in a page and that works fine and I see the style changes so 
 it appears the extension is ok just not the ability to have it apply to the 
 whole wiki which is what I need.

 Ok so unless someone has another idea it looks a lot like a bug to me.

 So I would say the next step is to create a bug issue on 
 http://jira.xwiki.org and put everything you can think of to 
 reproduce exactly your use case including the version of XE you are using.


 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins


 On May 4, 2012, at 9:21 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:

 On Fri, May 4, 2012 at 2:35 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 Logged in as Admin so I believe so.

 Admin on main wiki or admin on a subwiki ? Or maybe it's a standalone wiki.

 To have programming right you need to have admin right on main wiki 
 (so you need to use a global user). A simply way to test it is by 
 putting the following code in a page:

 {{velocity}}
 $hasProgramming
 {{/velocity}}

 You should get true if you have programming right.


 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins


 On May 4, 2012, at 3:08 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:

 Hi,

 Are you saving the document with a users having programming 
 rights like the tutorial suggest ?

 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brett 
 bbergqu...@canoga.com wrote:
 I tried doing exactly what I see in this tutorial:

 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensions
 Tutorial

 to to the Minimal StyleSheet eXtension.    I do everything as the 
 tutorial says but there is no effect.

 So is the tutorial wrong or does the option Always on this wiki not 
 work?

 I can do:

 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}

 In a page and have it work, but I want to have an extension for all of 
 the Wiki so I want to use the Always on this wiki.

 Thanks for any pointers one might give.

 Brett

 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



--
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
With the standalone installer, I was able to get the Stylesheet Extension 
working correctly on Solaris so it is something in my setup that is a problem.  
I am going to drop back and rebuild my Wiki and see why it fails.

Sorry about the confusion but thanks for the help!

Brett

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Bergquist, Brett
Sent: Friday, May 04, 2012 11:16 AM
To: XWiki Users
Subject: Re: [xwiki-users] A question on Skin Extensions (not working)

Ok, I just downloaded the standalone jar installer for 3.5.1 and installed on 
Windows and following the tutorial works.  Now I will do the same thing on 
Solaris which is where I am having the problem.

So it looks like the problem will be related to the environment or other things 
installed. 

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Thomas Mortagne
Sent: Friday, May 04, 2012 10:22 AM
To: XWiki Users
Subject: Re: [xwiki-users] A question on Skin Extensions (not working)

On Fri, May 4, 2012 at 4:20 PM, Bergquist, Brett bbergqu...@canoga.com wrote:
 Will do.  In fact I am going to download the jar installer fresh for both 
 3.5.1 and the new 4.0 and follow the tutorial on both and verify it works or 
 does not with these.

Ok great.


 Thanks for your input.

 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins


 On May 4, 2012, at 10:17 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:

 On Fri, May 4, 2012 at 3:59 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 Yes a standalone xwiki set up for scratch.

 I just did the velocity macro suggested and it returns true.

 Note that I can do as suggested in the tutorial and on demand include the 
 skin extension in a page and that works fine and I see the style changes so 
 it appears the extension is ok just not the ability to have it apply to the 
 whole wiki which is what I need.

 Ok so unless someone has another idea it looks a lot like a bug to me.

 So I would say the next step is to create a bug issue on 
 http://jira.xwiki.org and put everything you can think of to 
 reproduce exactly your use case including the version of XE you are using.


 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins


 On May 4, 2012, at 9:21 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:

 On Fri, May 4, 2012 at 2:35 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 Logged in as Admin so I believe so.

 Admin on main wiki or admin on a subwiki ? Or maybe it's a standalone wiki.

 To have programming right you need to have admin right on main wiki 
 (so you need to use a global user). A simply way to test it is by 
 putting the following code in a page:

 {{velocity}}
 $hasProgramming
 {{/velocity}}

 You should get true if you have programming right.


 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins


 On May 4, 2012, at 3:08 AM, Thomas Mortagne thomas.morta...@xwiki.com 
 wrote:

 Hi,

 Are you saving the document with a users having programming 
 rights like the tutorial suggest ?

 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brett 
 bbergqu...@canoga.com wrote:
 I tried doing exactly what I see in this tutorial:

 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensions
 Tutorial

 to to the Minimal StyleSheet eXtension.    I do everything as the 
 tutorial says but there is no effect.

 So is the tutorial wrong or does the option Always on this wiki not 
 work?

 I can do:

 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}

 In a page and have it work, but I want to have an extension for all of 
 the Wiki so I want to use the Always on this wiki.

 Thanks for any pointers one might give.

 Brett

 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users


 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users



--
Thomas Mortagne
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing

Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
Okay, so I have found a setup that is not working.   

I am running with a WAR installation using Glassfish 3.1.1.   I just deleted my 
database and redeployed the WAR which created the database again.  Of course 
there was no content, so I enabled the superadmin and then uploaded the 
xwiki-enterprise-ui-all-3.5.xar and imported this.   I then logged out of 
superadmin and logged in as Admin.  

Creating the Skin Stylesheet extension the same way as with the standalone JAR 
installer installation, and the extension has no effect.  

Any ideas on where to look.   I need to use Glassfish 3.1.1 in this environment 
so I need to do a WAR installation.   Did I do something wrong during this 
installation?


-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Bergquist, Brett
Sent: Friday, May 04, 2012 8:36 AM
To: XWiki Users
Cc: XWiki Users
Subject: Re: [xwiki-users] A question on Skin Extensions (not working)

Logged in as Admin so I believe so. 

Brett Bergquist
Principal Software Engineer
Canoga Perkins


On May 4, 2012, at 3:08 AM, Thomas Mortagne thomas.morta...@xwiki.com wrote:

 Hi,
 
 Are you saving the document with a users having programming rights 
 like the tutorial suggest ?
 
 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 I tried doing exactly what I see in this tutorial:
 
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutor
 ial
 
 to to the Minimal StyleSheet eXtension.I do everything as the tutorial 
 says but there is no effect.
 
 So is the tutorial wrong or does the option Always on this wiki not work?
 
 I can do:
 
 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}
 
 In a page and have it work, but I want to have an extension for all of the 
 Wiki so I want to use the Always on this wiki.
 
 Thanks for any pointers one might give.
 
 Brett
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
Okay, I figure this out.  While logged in as Admin, I re-imported 
xwiki-enterprise-ui-all-3.5.xar, replacing all of the content.   So now with 
my WAR installation under Glassfish 3.1.1, the Stylesheet Extension is now 
working.

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Bergquist, Brett
Sent: Friday, May 04, 2012 12:56 PM
To: XWiki Users
Subject: Re: [xwiki-users] A question on Skin Extensions (not working)

Okay, so I have found a setup that is not working.   

I am running with a WAR installation using Glassfish 3.1.1.   I just deleted my 
database and redeployed the WAR which created the database again.  Of course 
there was no content, so I enabled the superadmin and then uploaded the 
xwiki-enterprise-ui-all-3.5.xar and imported this.   I then logged out of 
superadmin and logged in as Admin.  

Creating the Skin Stylesheet extension the same way as with the standalone JAR 
installer installation, and the extension has no effect.  

Any ideas on where to look.   I need to use Glassfish 3.1.1 in this environment 
so I need to do a WAR installation.   Did I do something wrong during this 
installation?


-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Bergquist, Brett
Sent: Friday, May 04, 2012 8:36 AM
To: XWiki Users
Cc: XWiki Users
Subject: Re: [xwiki-users] A question on Skin Extensions (not working)

Logged in as Admin so I believe so. 

Brett Bergquist
Principal Software Engineer
Canoga Perkins


On May 4, 2012, at 3:08 AM, Thomas Mortagne thomas.morta...@xwiki.com wrote:

 Hi,
 
 Are you saving the document with a users having programming rights 
 like the tutorial suggest ?
 
 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brett bbergqu...@canoga.com 
 wrote:
 I tried doing exactly what I see in this tutorial:
 
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutor
 ial
 
 to to the Minimal StyleSheet eXtension.I do everything as the tutorial 
 says but there is no effect.
 
 So is the tutorial wrong or does the option Always on this wiki not work?
 
 I can do:
 
 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}
 
 In a page and have it work, but I want to have an extension for all of the 
 Wiki so I want to use the Always on this wiki.
 
 Thanks for any pointers one might give.
 
 Brett
 
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 
 
 --
 Thomas Mortagne
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
Did not know that and really could not see that in the documentation. 

Thanks for letting me know.  That might be something for the FAQ. 

Brett Bergquist
Principal Software Engineer
Canoga Perkins


On May 4, 2012, at 1:47 PM, Sergiu Dumitriu ser...@xwiki.com wrote:

 On 05/04/2012 12:56 PM, Bergquist, Brett wrote:
 Okay, so I have found a setup that is not working.
 
 I am running with a WAR installation using Glassfish 3.1.1.   I just deleted 
 my database and redeployed the WAR which created the database again.  Of 
 course there was no content, so I enabled the superadmin and then uploaded 
 the xwiki-enterprise-ui-all-3.5.xar and imported this.   I then logged out 
 of superadmin and logged in as Admin.
 
 You don't need to log in at all to import the initial XAR, just click on 
 the Administer wiki link in the top menu.
 
 Creating the Skin Stylesheet extension the same way as with the standalone 
 JAR installer installation, and the extension has no effect.
 
 Any ideas on where to look.   I need to use Glassfish 3.1.1 in this 
 environment so I need to do a WAR installation.   Did I do something wrong 
 during this installation?
 
 
 -Original Message-
 From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
 Bergquist, Brett
 Sent: Friday, May 04, 2012 8:36 AM
 To: XWiki Users
 Cc: XWiki Users
 Subject: Re: [xwiki-users] A question on Skin Extensions (not working)
 
 Logged in as Admin so I believe so.
 
 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins
 
 
 On May 4, 2012, at 3:08 AM, Thomas Mortagnethomas.morta...@xwiki.com  
 wrote:
 
 Hi,
 
 Are you saving the document with a users having programming rights
 like the tutorial suggest ?
 
 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brettbbergqu...@canoga.com  
 wrote:
 I tried doing exactly what I see in this tutorial:
 
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutor
 ial
 
 to to the Minimal StyleSheet eXtension.I do everything as the tutorial 
 says but there is no effect.
 
 So is the tutorial wrong or does the option Always on this wiki not work?
 
 I can do:
 
 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}
 
 In a page and have it work, but I want to have an extension for all of the 
 Wiki so I want to use the Always on this wiki.
 
 Thanks for any pointers one might give.
 
 Brett
 
 
 
 -- 
 Sergiu Dumitriu
 http://purl.org/net/sergiu/
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] A question on Skin Extensions (not working)

2012-05-04 Thread Bergquist, Brett
I have 20 documents in the wiki that are owned/last authored by superadmin.  
I tried re-importing the xwiki-enterprise-ui-all-3.5.xar excluding the pages 
specified in 

http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Upgrade

But these do not seem to be updated to become last authored by Admin (the 
user that I am logged in as during the import).  

Maybe I am not choosing the property import options?


-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Bergquist, Brett
Sent: Friday, May 04, 2012 1:57 PM
To: XWiki Users
Cc: XWiki Users
Subject: Re: [xwiki-users] A question on Skin Extensions (not working)

Did not know that and really could not see that in the documentation. 

Thanks for letting me know.  That might be something for the FAQ. 

Brett Bergquist
Principal Software Engineer
Canoga Perkins


On May 4, 2012, at 1:47 PM, Sergiu Dumitriu ser...@xwiki.com wrote:

 On 05/04/2012 12:56 PM, Bergquist, Brett wrote:
 Okay, so I have found a setup that is not working.
 
 I am running with a WAR installation using Glassfish 3.1.1.   I just deleted 
 my database and redeployed the WAR which created the database again.  Of 
 course there was no content, so I enabled the superadmin and then uploaded 
 the xwiki-enterprise-ui-all-3.5.xar and imported this.   I then logged out 
 of superadmin and logged in as Admin.
 
 You don't need to log in at all to import the initial XAR, just click 
 on the Administer wiki link in the top menu.
 
 Creating the Skin Stylesheet extension the same way as with the standalone 
 JAR installer installation, and the extension has no effect.
 
 Any ideas on where to look.   I need to use Glassfish 3.1.1 in this 
 environment so I need to do a WAR installation.   Did I do something wrong 
 during this installation?
 
 
 -Original Message-
 From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On 
 Behalf Of Bergquist, Brett
 Sent: Friday, May 04, 2012 8:36 AM
 To: XWiki Users
 Cc: XWiki Users
 Subject: Re: [xwiki-users] A question on Skin Extensions (not 
 working)
 
 Logged in as Admin so I believe so.
 
 Brett Bergquist
 Principal Software Engineer
 Canoga Perkins
 
 
 On May 4, 2012, at 3:08 AM, Thomas Mortagnethomas.morta...@xwiki.com  
 wrote:
 
 Hi,
 
 Are you saving the document with a users having programming rights 
 like the tutorial suggest ?
 
 On Thu, May 3, 2012 at 10:33 PM, Bergquist, Brettbbergqu...@canoga.com  
 wrote:
 I tried doing exactly what I see in this tutorial:
 
 http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTut
 or
 ial
 
 to to the Minimal StyleSheet eXtension.I do everything as the tutorial 
 says but there is no effect.
 
 So is the tutorial wrong or does the option Always on this wiki not work?
 
 I can do:
 
 {{velocity}}
 $xwiki.ssx.use(XWiki.MyFirstStylesheetExtension)
 {{/velocity}}
 
 In a page and have it work, but I want to have an extension for all of the 
 Wiki so I want to use the Always on this wiki.
 
 Thanks for any pointers one might give.
 
 Brett
 
 
 
 --
 Sergiu Dumitriu
 http://purl.org/net/sergiu/
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Filter items in live table

2012-05-07 Thread Bergquist, Brett
I just did something like this.  I am just a novice at XWiki but I was able to 
figure out how to create a filter page and get it to work.

On the page that I needed the filter results I did this:

{{velocity}}
#set($originalMsg = $msg)
#set($msg = $services.dynamicMessageToolFactory.createDynamicMessageTool($msg, {
  'canogaviewreleasetracker.livetable.doc.name': 
$msg.get('platform.appwithinminutes.liveTableEditorDocNameColumnName')
}))
#set($columnsProperties = {
  'doc.name': {'type': 'text', 'link': 'view', 'size': 10, 'filterable': true, 
'sortable': true}
})
#set($options = {
  'resultPage' : 'CanogaView.CORE_2_2_4_ReleaseFilterJSON',
  'translationPrefix': 'canogaviewreleasetracker.livetable.',
  'rowCount': 15,
  'maxPages': 10,
  'selectedColumn': '_actions',
  'defaultOrder': 'asc'
})
#set($columns = ['doc.name'])
#livetable('canogaviewreleasetracker' $columns $columnsProperties $options)
#set($msg = $originalMsg)
{{/velocity}}


The important point is the resultPage.   From the page 
CoanogaView.CORE_2_2_4_ReleaseFilterJSON, I have this:

{{include document=XWiki.LiveTableResultsMacros /}}

{{velocity}}
#gridresultwithfilter(CanogaView Release 
Tracker.CanogaViewReleaseTrackerClass $request.collist.split(,)   and 
doc.name like 'CORE 2.2.4%')
{{/velocity}}

So what this filter is doing is filtering on the doc.name that begins with 
CORE 2.2.4.   Hopefully you can extrapolate from this.

Brett




-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Moritz Hesse (EA GmbH)
Sent: Monday, May 07, 2012 10:40 AM
To: users@xwiki.org
Subject: [xwiki-users] Filter items in live table

Hi,

 

I have created an app w/ minutes to manage some issue tickets. I am using a 
field to track the status (open, pending, closed). How can I blind out items 
which are not closed?

 

Kind regards,

Moritz

___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] What are you using AppWithinMinutes for?

2012-05-10 Thread Bergquist, Brett
Created a software release tracking system to track releases of 
software/versions/build dates etc. to our SIT group

-Original Message-
From: users-boun...@xwiki.org [mailto:users-boun...@xwiki.org] On Behalf Of 
Guillaume Lerouge
Sent: Thursday, May 10, 2012 6:06 AM
To: XWiki Users
Subject: [xwiki-users] What are you using AppWithinMinutes for?

Hi XWikiers,

now that 
AppWithinMinuteshttp://extensions.xwiki.org/xwiki/bin/view/Extension/App+Within+Minutes+Applicationhas
been available for a couple releases, I was wondering what you have been using 
it for so far.

On my side, I have seen AppWithinMinutes used for:

   - Logging safety incidents
   - Listing assets managed by a company
   - Creating a directory of software applications available to users in a
   large organization
   - Managing and classifying processes and procedures
   - Listing presentations delivered at various conferences for later
   reference

I look forward to reading about your own examples.

Thanks,

Guillaume
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users