Re: [xwiki-users] debian installer

2011-12-21 Thread Vincent Massol
And also: Do we have a documentation page somewhere on xwiki.org?

Thanks
-Vincent

On Dec 20, 2011, at 10:47 PM, Legeinfo wrote:

 Thanks for reply!
 What do the package? 
 Making a MySQL database? 
 What is the name of database?
 How to start Xwiki? ... /etc/init.d/xwiki start
 Where to change the port? 
 Is Apache and Tomcat working together? (I have apache2 on my servers)
 ...
 Volker

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


Re: [xwiki-users] XwikiConfiguration to expire the session automattically after any specified time say 15 minutes

2011-12-21 Thread Vincent Massol
Hi,

On Dec 21, 2011, at 5:16 AM, mohit gupta wrote:

 Hi All,
 
 Is there any way to configure in xwiki configuration files so thst the
 session expires automatically after some specified time say
 20 minutes in case user does not do any activity in last 20 minutes. I
 looked in to xwiki.cfg and xwiki.properties file but could not
 find any such thing.Please let me know if this kind of stuff already exists
 in xwiki?

See http://www.xwiki.org/xwiki/bin/view/FAQ/How+can+I+change+the+Session+timeout

Thanks
-Vincent

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


Re: [xwiki-users] XwikiConfiguration to expire the session automattically after any specified time say 15 minutes

2011-12-21 Thread Sergiu Dumitriu

On 12/21/2011 03:19 AM, Vincent Massol wrote:

Hi,

On Dec 21, 2011, at 5:16 AM, mohit gupta wrote:


Hi All,

Is there any way to configure in xwiki configuration files so thst the
session expires automatically after some specified time say
20 minutes in case user does not do any activity in last 20 minutes. I
looked in to xwiki.cfg and xwiki.properties file but could not
find any such thing.Please let me know if this kind of stuff already exists
in xwiki?


See http://www.xwiki.org/xwiki/bin/view/FAQ/How+can+I+change+the+Session+timeout


I'm not sure that answers the right question. That will expire the 
application (servlet) session, but it won't logout the user, since the 
authentication is done via clientside cookies, not via serverside sessions.


Mohit, if what you want is to automatically log out users after a given 
period of inactivity, then that's not something already supported. It 
could be done with some changes in 
com.xpn.xwiki.user.impl.xwiki.MyPersistentLoginManager.

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


Re: [xwiki-users] [Announcement] XWiki Enterprise 3.3 and XWiki Enterprise Manager 3.3 Released

2011-12-21 Thread Sergiu Dumitriu

On 12/17/2011 03:02 AM, Eugen Colesnicov wrote:

Thanks for great job!
Especially for the Oracle support! Also AppWithinMinutes looks very
interesting - I will start to feel it!

Also, regarding to your discussion about 3.4 roadmap and 3.x cycle, I want
one more time to focus you at an older problem - supporting of russian
symbols (or other non-latin characters, spaces and special symbols) in
attachment names.

Interesting moment. If you using office importer and your office-file named
in russian, and your file contains some pictures, when wiki-page creates -
ALL PICTURE ATTACHMENT FILENAMES WRITTEN ON RUSSIAN WITHOUT ANY PROBLEM! I
can download them, get link, etc.

According to this I can make a conclusion, that supporting of non-latin
attachment filenames is ALREADY DONE ON A PLATFORM LEVEL. And, right now,
for my opinion, NEED ONLY SMALL STEP - DELETE FUNCTION OF CUTTING NON-LATIN
SYMBOLS FROM ATTACHMENT FILENAMES DURING NORMAL ATTACH PROCESS.

Please, include this issue in your roadmap of 3.x cycle! This is really
important thing - because without this XWiki cannot named as multilanguage
web platform. ALL OTHER MODERN WEB-PLATFORMS ALREADY HAVE THIS FUTURE...
Only XWiki lagging ...



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


[xwiki-users] Locked out :(

2011-12-21 Thread Kjartan Hauksson
So, I managed to lock myself out of my xwiki site. Is there a way I can
reset the rights in mysql ?

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


Re: [xwiki-users] Locked out :(

2011-12-21 Thread Paul Libbrecht
there used to be a superadmin setting in xwiki.cfg which is commented out by 
default.
In MySQL, you'd have to find the right record for the value of the admin's 
password.
paul

Le 21 déc. 2011 à 15:21, Kjartan Hauksson a écrit :

 So, I managed to lock myself out of my xwiki site. Is there a way I can
 reset the rights in mysql ?
 
 Regards
 -Kjartan
 ___
 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] Locked out :(

2011-12-21 Thread Edo Beutler
On Wed, Dec 21, 2011 at 4:02 PM, Paul Libbrecht p...@hoplahup.net wrote:
 there used to be a superadmin setting in xwiki.cfg which is commented out by 
 default.
 In MySQL, you'd have to find the right record for the value of the admin's 
 password.
And in MySQL the password is saved as a hash, so you would have to
encode your new password correctly to replace the old one ... I'd
stick to the superuser, it's much simpler.

 paul

 Le 21 déc. 2011 à 15:21, Kjartan Hauksson a écrit :

 So, I managed to lock myself out of my xwiki site. Is there a way I can
 reset the rights in mysql ?

 Regards
 -Kjartan
 ___
 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] XwikiConfiguration to expire the session automattically after any specified time say 15 minutes

2011-12-21 Thread mohit gupta
Thanks Vincent for redirecting to right direction

On Wed, Dec 21, 2011 at 1:49 PM, Vincent Massol vinc...@massol.net wrote:

 Hi,

 On Dec 21, 2011, at 5:16 AM, mohit gupta wrote:

  Hi All,
 
  Is there any way to configure in xwiki configuration files so thst the
  session expires automatically after some specified time say
  20 minutes in case user does not do any activity in last 20 minutes. I
  looked in to xwiki.cfg and xwiki.properties file but could not
  find any such thing.Please let me know if this kind of stuff already
 exists
  in xwiki?

 See
 http://www.xwiki.org/xwiki/bin/view/FAQ/How+can+I+change+the+Session+timeout

 Thanks
 -Vincent

 ___
 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] XwikiConfiguration to expire the session automattically after any specified time say 15 minutes

2011-12-21 Thread mohit gupta
Thanks  Sergiu Dumitriu  for replying. I will explore both the options to
see which one suits me better.

On Wed, Dec 21, 2011 at 4:34 PM, Sergiu Dumitriu ser...@xwiki.com wrote:

 On 12/21/2011 03:19 AM, Vincent Massol wrote:

 Hi,

 On Dec 21, 2011, at 5:16 AM, mohit gupta wrote:

  Hi All,

 Is there any way to configure in xwiki configuration files so thst the
 session expires automatically after some specified time say
 20 minutes in case user does not do any activity in last 20 minutes. I
 looked in to xwiki.cfg and xwiki.properties file but could not
 find any such thing.Please let me know if this kind of stuff already
 exists
 in xwiki?


 See http://www.xwiki.org/xwiki/**bin/view/FAQ/How+can+I+change+**
 the+Session+timeouthttp://www.xwiki.org/xwiki/bin/view/FAQ/How+can+I+change+the+Session+timeout


 I'm not sure that answers the right question. That will expire the
 application (servlet) session, but it won't logout the user, since the
 authentication is done via clientside cookies, not via serverside sessions.

 Mohit, if what you want is to automatically log out users after a given
 period of inactivity, then that's not something already supported. It could
 be done with some changes in com.xpn.xwiki.user.impl.xwiki.**
 MyPersistentLoginManager.
 --
 Sergiu Dumitriu
 http://purl.org/net/sergiu/

 __**_
 users mailing list
 users@xwiki.org
 http://lists.xwiki.org/**mailman/listinfo/usershttp://lists.xwiki.org/mailman/listinfo/users

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


Re: [xwiki-users] Locked out :(

2011-12-21 Thread Ludovic Dubost
You just need to comment it out and restart your wiki.. you can then login
with superadmin and the password set

Ludovic

2011/12/21 Paul Libbrecht p...@hoplahup.net

 there used to be a superadmin setting in xwiki.cfg which is commented out
 by default.
 In MySQL, you'd have to find the right record for the value of the admin's
 password.
 paul

 Le 21 déc. 2011 à 15:21, Kjartan Hauksson a écrit :

  So, I managed to lock myself out of my xwiki site. Is there a way I can
  reset the rights in mysql ?
 
  Regards
  -Kjartan
  ___
  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




-- 
Ludovic Dubost
Founder and CEO
Blog: http://blog.ludovic.org/
XWiki: http://www.xwiki.com
Skype: ldubost GTalk: ldubost
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] styling PDF and ODT export

2011-12-21 Thread petskratt
I have been trying to apply styles to PDF (and hopefully also ODT) export
according to instructions in
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Configuration#HCustomizingthePDFexportLook26Feel
but...

(1) adding CSS (either as pdf.css or via PDFClass  PDFTemplate method) that
contains simple test (h1, h2, h3 {color: red;}) does not work (tested on XE
3.3 release)

(2) at the same time, changing xhtmlxsl (either by adding to PDFTemplate or
WEB-INF/classes) works nicely

Q1: Should it work with CSS?

The abovementioned instruction expects this method to work also with RTF
export - and as the ODT export is based on PDF export I hoped to be able to
style also ODT... but even when change is working in PDF headings remain
black in RTF and ODT export... as these XSL transforms seemt to be related
to FOP used for PDF generation.

Q2: How to style ODT export? Also with pdf.css (that doesn't currently
work), somehow modifying default template used by OpenOffice or somehow with
OpenOffice.xsl?

--
View this message in context: 
http://xwiki.475771.n2.nabble.com/styling-PDF-and-ODT-export-tp7116069p7116069.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


[xwiki-users] Issues/behaviour i am seeing on xwiki during implementation of Rights management on UI

2011-12-21 Thread mohit gupta
I have two intentions for my web application which i am trying to
integerate  with xwiki. Basically both these intentions are related to
right management on specific space area on xwiki.These are:-


*Intention1:-* My intention is if an user belongs to particular
organisation say Accenture he should be able to
admin,search,edit,view,delete only that organization space(provided he is
admin user for that organisation)  otherwise he should not be able to do
any operation (not even search and view) on any other space


*What I Did for to achieve above* :- I as admin created AccentureAdminUser
and AccentureAdminUserGroup . Now i added AccentureAdminUser  under
AccentureAdminUserGroup.
Also I created the space for this organization  with Name
 AccentureAdminSpace.


 Lets come to  Rights  Management. As there are two level of rights i.e at
Wiki level and Space level.


AT Wiki Level:- I gave  only view rights to AccentureAdminUserGroup


AT  Space Level:- I gave all possible rights to AccentureAdminUserGroup
 for  AccentureAdminSpace


Now when i log in with AccentureAdminUser  credentials, i do not see
AccentureSpace
space on a page just after log in and also  i am not able to search any
content(space or page) for this  AccentureAdminSpace . Not Getting Why? Do
i need to give any other Right too?



*Intention2:- *My intention is if an user belongs to particular
organisation  and he is just a registered user but not admin user for that
organization say Accenture he should be able to only view and search that
organization spacevotherwise he should not be able to do any operation (not
even search and view) on any other space


*What I Did for to achieve above* :- I as admin created AccentureUser and
AccentureUserGroup . Now i added AccentureUser  under  AccentureUserGroup.
Also I created the space for this organization  with Name  AccentureSpace.


 Lets come to  Rights  Management. As there are two level of rights i.e at
Wiki level and Space level.


AT Wiki Level:- I gave  only view rights to AccentureUserGroup


AT  Space Level:- I gave only view rights to AccentureUserGroup for
AccentureSpace


Now when i log in with AccentureUser  credentials, i can see AccentureSpace
space on a page just after log in but i am not able to search any
content(space or page) for this

AccentureSpace . Not Getting Why? Do i need to give any other Right too for
search?


I would be grateful if somebody can provide some insight about above issues
on right management.Already I have gone thru below links but did not get
 through  the issues


http://platform.xwiki.org/xwiki/bin/view/Features/RightsManagement right
management

http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Access+Rights  access
and rights




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