Re: [xwiki-users] centering a DIV

2008-04-06 Thread Martijn.Ras
Heya Ricardo,

The  is centered automatically when you 
either do not use any panels, or use both left and right panels.

Mazzel,

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


Re: [xwiki-users] xwiki vhost in apache

2008-04-06 Thread David Hláčik
Thanks!, but it only works for www.domain.com/xwiki , what about only
www.domain.com ?

Thanks!

David

2008/4/5 Squirrel <[EMAIL PROTECTED]>:

>  On Sat, Apr 5, 2008 at 3:45 PM, David Hláčik <[EMAIL PROTECTED]> wrote:
>
> > Hi, i have xwiki running on
> http://myserver.example.org:8080/xwiki(tomcat5)
> >
> > I have also apache2 running on my centos5 server with virtual hosts.
> >
> > I want to create a virtual host (on port 80) named wiki.example.org  --
> > which will proxy to xwiki and action will be transparent.
> > I found a howto on xwiki pages
> >
> >
> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Performances#HModProxyAJPConfiguration
> > .
> > but this config works for me without vhost only.
> >
> > I have Centos 5 server ,with httpd  and tomcat
> >
> > Thanks in advance!
> >
> > David 
>
>
> Hi David
>
> 
> ServerName domain.com
> ServerAlias www.domain.com
> RewriteRule ^/$ http://www.domain.com/xwiki
> ProxyPass /xwiki http://www.domain.com:8082/xwiki
> ProxyPassReverse /xwiki http://www.domain.com:8082/xwiki
> 
>
> Or have a look into my Howto on
> HowtoForge(look
> to the comments at the bottom, too).
>
> Hope that helps.
> ___
> 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] xwiki vhost in apache

2008-04-06 Thread Sergiu Dumitriu
David Hláčik wrote:
> Thanks!, but it only works for www.domain.com/xwiki , what about only
> www.domain.com ?

See http://platform.xwiki.org/xwiki/bin/view/Main/ShortURLs

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


Re: [xwiki-users] xwiki vhost in apache

2008-04-06 Thread David Hláčik
Thanks but what i mean exactly is to :

redirect www.domain.com to www.domain.com:8080/xwiki/bin . in way to
just set it in vhost

My first idea was to remove /xwiki , to have it like this :


ServerName domain.com
ServerAlias www.domain.com
RewriteRule ^/$ http://www.domain.com
ProxyPass / http://www.domain.com:8082/xwiki
ProxyPassReverse / http://www.domain.com:8082/xwiki


but unfurtunately, this is not working .

Thanks in advance!

2008/4/6 Sergiu Dumitriu <[EMAIL PROTECTED]>:

> David Hláčik wrote:
> > Thanks!, but it only works for www.domain.com/xwiki , what about only
> > www.domain.com ?
>
> See http://platform.xwiki.org/xwiki/bin/view/Main/ShortURLs
>
> --
> 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] having hard-time with wiki manager

2008-04-06 Thread Thomas Mortagne
Hi,

On Sun, Apr 6, 2008 at 12:21 AM, David Hláčik <[EMAIL PROTECTED]> wrote:
> Hi all friends,
>
>  i am currently using serveral xwiki instances (xwiki-enterprise 1.3).
>
>  I need to try xwiki-enterprise-manager to be able to create virtual wiki
>  sites. I am having a really hard time with installation.
>
>  I have used 
> xwiki-enterprise-manager-web-1.1.war
>  ,
>  tomcat 5 as a container, mysql as a database. I processed exactly same steps
>  as i did several times installing xwiki enterprise.
>
>  I have put war file into tomcat5 webapps directory, started/stoped tomcat in
>  order to unpack it, configured hibernate..xml to mysql database. I have
>  installed mysql connector to lib directory. I have copied custom log4j file
>  to classes directory. I have created a wiki mysql user with full rights to
>  create databases , created a wiki database.
>
>  When i will point on http://mydomain:8080/xwiki according to xwiki.log it
>  will fill mysql database xwiki and then i will get "page cannot be displayed
>  message" (internet explorer message). I found no error in xwiki.log, no
>  error nowhere else. When i will point it again at that adress
>  http://mydomain:8080/xwiki still nothing -page cannot be displayed and zero
>  messages in log.

What exactly is your domain ?

By default in virtual mode XWiki Platform need to have a descriptor
for the wiki you want to access except if you domain name starts with
"www" or if you acces using direct IP address. I think your problem is
that you are trying to access your main wiki with "something.ext"
domain. To be able to access you main wiki with "something.ext" you
have to add this alias in its descriptor :
/xwiki/bin/view/XWiki/XWikiServerXwiki

It is explained in
http://manager.xwiki.org/xwiki/bin/view/AdminGuide/Installation#HConvertanexistingXWikiEnterpriseinstance
but i will add a more warning box for the two ways to install XEM
because this XWiki platform domain management is not very clear. I
think that we should maybe add an option in xwiki.cfg to indicate if
wrong domain goes to main wiki in place of showing an error.

>
>  I spent 4 hours and that is enought time for me to ask for a help.
>
>  Thanks in advance!
>
>  David
>  ___
>  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


Re: [xwiki-users] xwiki vhost in apache

2008-04-06 Thread Squirrel
2008/4/6 David Hláčik <[EMAIL PROTECTED]>:

>
> > > Thanks!, but it only works for www.domain.com/xwiki , what about only
> > > www.domain.com ?
>

Thanks but what i mean exactly is to :
>
> redirect www.domain.com to www.domain.com:8080/xwiki/bin . in way to
> just set it in vhost
>
> but unfurtunately, this is not working .


Hmm..the apache setting I gave to you is perfectly working for me. Do you
have the mod_alias and mod_proxy modules of Apache enabled?
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] xwiki vhost in apache

2008-04-06 Thread David Hláčik
Hi, thanks for your help. I did not say it is not woking. But configuration
you provided me works for http://www.domain.com/xwiki , not for
http://www.domain.com what i was looking for. But anyway thanks !

D.

2008/4/6 Squirrel <[EMAIL PROTECTED]>:

> 2008/4/6 David Hláčik <[EMAIL PROTECTED]>:
>
> >
> > > > Thanks!, but it only works for www.domain.com/xwiki , what about
> only
> > > > www.domain.com ?
> >
>
> Thanks but what i mean exactly is to :
> >
> > redirect www.domain.com to www.domain.com:8080/xwiki/bin . in way to
> > just set it in vhost
> >
> > but unfurtunately, this is not working .
>
>
> Hmm..the apache setting I gave to you is perfectly working for me. Do you
> have the mod_alias and mod_proxy modules of Apache enabled?
>  ___
> 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] xwiki vhost in apache

2008-04-06 Thread Squirrel
2008/4/6 David Hláčik <[EMAIL PROTECTED]>:

> Hi, thanks for your help. I did not say it is not woking. But
> configuration
> you provided me works for http://www.domain.com/xwiki , not for
> http://www.domain.com what i was looking for. But anyway thanks !
>
> D.


No, what I'm saying is, for me it is working for www.domain.com =>
www.domain.com:8082/xwiki/..

It must (imho) working with the given setting. would you mind to post your
whole apache setting (without real domain/ip)?
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


[xwiki-users] Usability Question - Blog Edit

2008-04-06 Thread Squirrel
Hi

Maybe I just don't get it, but it seems to me that on the blog level the
usability, meaning to edit the document, suddenly breakes with the usual way
to do it (Inline from). Is it a feature or a bug?

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


[xwiki-users] Toucan - I've created new colors

2008-04-06 Thread Squirrel
Hi all,

Yesterday I found out that there are indeed other colors for the Toucan
skin. I've created now a black and a darkblue one and I'd like to share it.
Where can I drop the files?

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


Re: [xwiki-users] Toucan - I've created new colors

2008-04-06 Thread Guillaume Lerouge
Hi Squirrel,

Cool :-)

Simply post a JIRA issue in the toucan skin project on jira.xwiki.org
and attach the css files + images to the page.

Guillaume

On 4/6/08, Squirrel <[EMAIL PROTECTED]> wrote:
> Hi all,
>
>  Yesterday I found out that there are indeed other colors for the Toucan
>  skin. I've created now a black and a darkblue one and I'd like to share it.
>  Where can I drop the files?
>
>  Cheers,
>
> Squirrel
>  ___
>  users mailing list
>  users@xwiki.org
>  http://lists.xwiki.org/mailman/listinfo/users
>


-- 
http://wikibc.blogspot.com/
___
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users


Re: [xwiki-users] Usability Question - Blog Edit

2008-04-06 Thread Guillaume Lerouge
Hi Squirrel,

>  Maybe I just don't get it, but it seems to me that on the blog level the
>  usability, meaning to edit the document, suddenly breakes with the usual way
>  to do it (Inline from). Is it a feature or a bug?

Do you mean on a blog article page (bin/view/Blog/SomeArticle) or on
the Blog homepage itself (bin/view/Blog/WebHome) ? On Blog.WebHome
there's no inline edition because the page holds the code required to
display the articles. To edit a given article you need to go to that
article page by clicking on the permalink poiting towards it, where
you can access the usual inline edition mode again.

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


Re: [xwiki-users] Usability Question - Blog Edit

2008-04-06 Thread Squirrel
On Sun, Apr 6, 2008 at 12:52 PM, Guillaume Lerouge <[EMAIL PROTECTED]>
wrote:

> Hi Squirrel,
>


> Do you mean on a blog article page (bin/view/Blog/SomeArticle) or on
> the Blog homepage itself (bin/view/Blog/WebHome) ? On Blog.WebHome
> there's no inline edition because the page holds the code required to
> display the articles. To edit a given article you need to go to that
> article page by clicking on the permalink poiting towards it, where
> you can access the usual inline edition mode again.
>
> Guillaume


Hi Guillaume

I mean on the blog article itself. There you can't edit the page with "Edit
=> Wiki / WYSIWYG" but only with "Edit => Inline form". When you try to edit
the blog article itself with the Wiki or WYSIWYG editor you see only
"#includeForm("XWiki.ArticleClassSheet")".

Do you know what I mean?

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


Re: [xwiki-users] Problem with Bulletin Board Application

2008-04-06 Thread Frantisek Kall

Hi Guillaume,

I created sk page of translation page, but it didn't help. Also when I
switch to en language it doesn't helps. Problem must be in another place. 

Frantisek


Guillaume Lerouge wrote:
> 
> Hi Frantisek,
> 
> 
>> Our wiki is set as multi lingual with "sk, en" languages. Default lang is
>> "sk". Is it possible that this is a problem?
> 
> 
> Absolutely, that's the cause of the issue. You need to create a sk
> translation of the en page.
> 
> To do this, simply go to
> .../xwiki/bin/edit/BBCode/Translations?language=sk&editor=wiki , then
> check
> whether the en translations show up in the page and if they do save it. If
> the page is empty when you create it, copy/paste the content
> from .../xwiki/bin/edit/BBCode/Translations?language=en&editor=wiki to it
> before saving.
> 
> Guillaume
> ___
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Problem-with-Bulletin-Board-Application-tp16491542p16529726.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] xwiki.cfg

2008-04-06 Thread Squirrel
Hi guys,

I maybe missed it, but is there a decent documentation about this file,
especially about all the plugins and for they are?

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


[xwiki-users] Disable mail activation and add automatically users to a group

2008-04-06 Thread Philippe GABERT

Hi everyone,


I retrieve the informations about people from an Active Directory server
with my xWiki.

The problem is that when someone new arrives and connect, this message will
be shown:

"Your account is not yet active, because your email has not yet been
confirmed."


so my question is quite simple, I would like either disable mail activation,
either automatically activate an new created account. How can I do that?


The next thing is about groups. Let's say that's the first time a guy
connect to the website. I would like him to be automatically added to a
group. How can I do that?


Thanks !


Philippe
-- 
View this message in context: 
http://www.nabble.com/Disable-mail-activation-and-add-automatically-users-to-a-group-tp16491078p16491078.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