Re: [xwiki-users] Issue on Registration

2008-11-28 Thread Jean-Vincent Drean
\On Mon, Nov 3, 2008 at 7:16 PM, Jerome Velociter [EMAIL PROTECTED] wrote:
 Hello,

 syam_kg wrote:
 Hi
 I am facing a problem with user registration. An user registers by putting
 all the required fields and he gets a page saying that 'Registration is
 successfull'. A validation email is also been send to him. If he tries to
 login without activation, XWiki logs him in and gives a message 'Your
 account is not yet active, because your email has not yet been confirmed.'.
 He goes back to his mail box, copies the activation link and paste it on the
 same window. But the page remains the same and doesn't allow the user to
 activate his account. He need to open a new browser or logout  to activate
 his account and login to XWiki. This looks like a bug. Any comments on this
 ? I am using XE 1.6.

 Indeed, this looks like a real bug :) can you create an issue for it on
 JIRA ?


I've created an issue : http://jira.xwiki.org/jira/browse/XWIKI-2901

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


Re: [xwiki-users] tab characters in editor

2008-11-28 Thread Jean-Vincent Drean
I've created an issue so that this discussion doesn't disappear in the
deep of this mailing list :)
http://jira.xwiki.org/jira/browse/XWIKI-2903

Note that a little POC patch for the wiki editor would be very welcome.

I'd love to be able to indent my velocity code with the tab key (a 2
spaces setting for me please).

JV.

On Wed, Nov 5, 2008 at 5:52 PM, Regan Gill [EMAIL PROTECTED] wrote:

 Thomas Mortagne wrote:
  Hi,
 
  On Tue, Nov 4, 2008 at 7:33 PM, Regan Gill
 [EMAIL PROTECTED]
 wrote:
  Hi,
 
  I have set up xwiki for my company's wiki. One complaint I am
 getting a
  lot from users is that the tab key doesn't insert a tab when
 editing,
  instead it works like a form and moves the focus. Is there a good
 reason
  for this or just something no one got around to implementing?
 
  If you are using Firefox, I think it's the default behavior of this
  browser (when IE insert a tab character) in an input field.
 
  Now, maybe we can catch the tab key event in some way... but I will
  let more WYSIWYG experienced guys answer for this ;)

 It can be done. From JavaScript we can prevent the default behavior of
 the browser and add our own logic. But then we would have to ask more
 questions:

 * do all the users expect the tab to indent?
 * which character should be used? space or real tab. If space, how
 many?
 * what if the JavaScript is disabled?

 Regards,
 Marius

 It could be an option setting for the wiki:
 1. Default (focus change)
 2. Insert Tab
 3. Insert Space

 I think if Javascript is disabled then they just get the default
 behavior. (wouldn't other things not work in that case as well? )

 My company is pretty picky about editors (we include FCKeditor in our
 product and there are a lot of enhancement requests for that) so I am
 getting quite a few requests for enhancements on the wiki including this
 one. The other big one is a request for double click to edit. So I don't
 know if I just have picky customers or not, but personally I would
 really like to have tabs since they make code easier to write in the
 pages.

 Thanks for your replies,
 Regan
 ___
 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] Password Policies

2008-11-28 Thread Jean-Vincent Drean
Hi,

Thanks for the suggestion, I've created an improvement proposal :
http://jira.xwiki.org/jira/browse/XWIKI-2902

JV.

On Wed, Nov 5, 2008 at 11:54 AM, syam_kg [EMAIL PROTECTED] wrote:

 Hi
 Does XWiki has any password policies ?. I could see that it accepts the
 password even if it is a single character. Or is there any configuration
 need to be provided for this ? Please help. I am using XE1.6

 Regards
 Syam
 --
 View this message in context: 
 http://n2.nabble.com/Password-Policies-tp1459548p1459548.html
 Sent from the XWiki- Users mailing list archive at Nabble.com.

 ___
 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] Default skin for guest user

2008-11-28 Thread Robert Munro
Hi

I have made a skin for my xwiki installation but it doesnt show up when no
user is logged in. Is there a different space or persmiison for guest users
- i have set the View permission for my XWikiGuest group on the skin, but it
still doesnt show up.

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


Re: [xwiki-users] Default skin for guest user

2008-11-28 Thread Vincent Massol
Hi Robert,

On Nov 28, 2008, at 6:36 PM, Robert Munro wrote:

 Hi

 I have made a skin for my xwiki installation but it doesnt show up  
 when no
 user is logged in. Is there a different space or persmiison for  
 guest users
 - i have set the View permission for my XWikiGuest group on the  
 skin, but it
 still doesnt show up.

The most likely reason is indeed that your guest users don't have the  
view permissions for the user. Can you try navigating to the skin page  
when you're not logged in?

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


[xwiki-users] strange access rights phenomena

2008-11-28 Thread Yishay Mor
I have a few pages in my wiki, that insist on denying view rights from
registered users.
These pages are generated by form, using a template, following the todo app
example.
they should be created with view for all. edit rights are set by calling:
#setEditors($obj)

 permissions 
 allowEdit #
## set rights to allow creator and contributors to edit
#macro(allowEdit $users)
  #if($xwiki.checkAccess($doc.getFullName(),edit))
   !-- allowEdit (desObj) $doc $users --
   #set ($rights = $doc.getObject(XWiki.XWikiRights, true))
   #set ($result = $rights.set(levels, edit))
   #set ($result = $rights.set(users, $users))
   #set ($result = $rights.set(allow, 1))
   $doc.save()
  #end
#end

## setEditors ##
## set owner, contributors, and edit rights
#
#macro(setEditors $obj)
  #set ($ownr = $obj.Owner)
  #if ((!$ownr || $ownr ==  )  !$doc.getURL.endWith(ClassSheet))
#set ($needRefresh = true)
#set ($ownr = $doc.getCreator())
#if (!$ownr || $ownr == )
  #set ($ownr = $context.user)
#end
$doc.set(Owner,$ownr,$obj)
  #end
  #set ($contributors = $obj.Contributors)
   ##if ($context.user == $ownr)
  #set($editors = $contributors+,+$ownr)
  !-- Editors: $editors --
  #allowEdit($editors)
   ##end
#end
## setEditors ##

For some reason this doesn't always work.
Furthermore, for some pages (but not all), view rights are denied. I try to
set them right, and they revert to their problem state.
For example, in
http://patternlanguagenetwork.myxwiki.org/xwiki/bin/view/Patterns/VisualNarrative
I set view on for all, but when I leave the page and come back, that right
has disappeared.
___
 Yishay Mor, Researcher, London Knowledge Lab
  http://www.lkl.ac.uk/people/mor.html
  http://www.google.com/calendar/embed?src=yishaym%40gmail.com
  +44-20-7837 x5737
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] upgrade from 1.3.2 to 1.6.1 -- new administrations tool is NOT working.

2008-11-28 Thread dcjarvis

I have also run into an issue with this. I have an XWiki 1.1.2 instance I
have been working on. Got it upgraded to 1.4 just fine, but when I try to go
to 1.5 or 1.6, I get the admin message. After downloading the .xar, I can
upload it to the xwiki, but when I click on it to import the pages, it
always says there are no pages to import.

I also tried importing the xwiki-enterprise-wiki-1.6.1.xar and get the same
issue. No pages to import.

Any ideas?



Jean-Vincent Drean wrote:
 
 On Wed, Nov 26, 2008 at 3:39 PM, jbessels [EMAIL PROTECTED] wrote:

 After the upgrade everything seemed OK. The content was still there as
 were
 the created users and spaces. As version nummer 1.6.1 instead of 1.3.2
 was
 shown in the footer of each page. As of version 1.5 there is a new
 Aministration application which afaik is bundled with xwiki enterprise.
 The
 url is url/xwiki/bin/admin/XWiki/XWikiPreferences. When I try to access
 this page on my upgraded system I get the message The administration
 application is not installed. Since XWiki Enterprise 1.5 the
 Administration
 is distributed as an application. You can download it from
 http://code.xwiki.org/xwiki/bin/view/Applications/AdministrationApplication.;.
 I've double checked it on my windows system with Stable:
 xwiki-enterprise-installer-windows-1.6.1.exe. When entering the url I get
 the new Administration tool. At this moment I can't  admin my xwiki
 system.

 
 This message means that you must download and install the
 administration application, it is not supposed to be automatically
 installed.
 Please post here if you have any problem with the installation
 process. Pay attention to the pages that you must exclude from the
 install : XWikiPreferences, XWikiAllGroup, etc. This is documented in
 the application download page :
 http://code.xwiki.org/xwiki/bin/view/Applications/AdministrationApplicationDownload
 
 Thanks,
 JV.
 ___
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/mailman/listinfo/users
 
 

-- 
View this message in context: 
http://n2.nabble.com/upgrade-from-1.3.2-to-1.6.1new-administrations-tool-is-NOT-working.-tp1580954p1591629.html
Sent from the XWiki- Users mailing list archive at Nabble.com.

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


Re: [xwiki-users] Default skin for guest user

2008-11-28 Thread Sergiu Dumitriu
Robert Munro wrote:
 Hi
 
 I have made a skin for my xwiki installation but it doesnt show up when no
 user is logged in. Is there a different space or persmiison for guest users
 - i have set the View permission for my XWikiGuest group on the skin, but it
 still doesnt show up.

Do you have Always authenticate on viewing enabled?

-- 
Sergiu Dumitriu
http://purl.org/net/sergiu/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users