Re: [xwiki-users] Table style not being affected

2008-10-30 Thread Mihails Agafonovs
Hi, Sergiu! "!important" will be ignored by IE6 and lower, so no need to use it here. Also, "border: none" is really the same as "border: 0". Quoting Sergiu Dumitriu : Mihails Agafonovs wrote: > In stylesheet, a border for td or th element may be specified. Look > for those. IF you don't want to

Re: [xwiki-users] Lucene and substring search

2008-10-30 Thread Reto Hotz
Hi, Vincent Massol wrote: > Hi, > > Please feel free to create a jira issue at http://jira.xwiki.org Ok, I have created an issue: http://jira.xwiki.org/jira/browse/XPLUCENE-28 Thanks Reto ___ users mailing list users@xwiki.org http://lists.xwiki.org/

Re: [xwiki-users] Need some explanation about virtual xwiki

2008-10-30 Thread Gallois Frédéric
Hi Some adds. After looking at the doc (http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Configuration#HConfigurethenamesofdatabaseschemas28since16M129), I understood that in a multi wiki environnment (i.e. XEM + virtual wikis) : - there's one scheme by virtual wiki - the distinction between

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread Sergiu Dumitriu
Mihails Agafonovs wrote: > Hi, Sergiu! > "!important" will be ignored by IE6 and lower, so no need to use it > here. Also, "border: none" is really the same as "border: 0". Why do you say that !important is ignored by IE6? It works pretty fine. -- Sergiu Dumitriu http://purl.org/net/sergiu/

[xwiki-users] Using [0-9] pattern in HQL

2008-10-30 Thread Henk Schouten
Hello, I have a simple question, although I could not find the answer in the archives or google. Is it possible to use a [0-9] pattern in the where clause of a HQL query. Something like: where doc.title like '[0-9]%' Hope someone can help me with this. Thanks, Henk == Henk F. Schouten, ICT

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread BrianJones
Greg, Tried your suggestion (style="border-width:0px"), same result. Table is still being presented with a border... Gregor Speck wrote: > > Hey did you tested style="border-width:0px" ? > > Greetz Greg > > 2008/10/29 BrianJones <[EMAIL PROTECTED]> > >> >> Sorry, this may be a bit of a pe

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread BrianJones
Mihails, Thanks for your advice, but what stylesheet are you referring to? In the documentation, it says the 'table.css' stylesheet is responsible for the table styles. However, there is NO 'table.css' for the skin I'm using (default skin). The only 'table.css' I have is for the Albatross skin

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread Sergiu Dumitriu
BrianJones wrote: > Mihails, > > Thanks for your advice, but what stylesheet are you referring to? In the > documentation, it says the 'table.css' stylesheet is responsible for the > table styles. However, there is NO 'table.css' for the skin I'm using > (default skin). The only 'table.css' I h

Re: [xwiki-users] Using [0-9] pattern in HQL

2008-10-30 Thread Sergiu Dumitriu
Henk Schouten wrote: > Hello, > > I have a simple question, although I could not find the answer in the > archives or google. > > Is it possible to use a [0-9] pattern in the where clause of a HQL > query. Something like: > > where doc.title like '[0-9]%' > I don't think so. Hibernate levera

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread BrianJones
Thanks Sergiu, This worked, although I had to use: table, td, th { border: none !important; } And, I had to put this in the toucan.css file, not the style.css file (it didn't work in the style.css file for some reason). Thanks for all your help! Sergiu Dumitriu-2 wrote: > > BrianJones w

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread Mihails Agafonovs
Again, be aware, that this rule will not apply to IE6. Quoting BrianJones : Thanks Sergiu, This worked, although I had to use: table, td, th { border: none !important; } And, I had to put this in the toucan.css file, not the style.css file (it didn't work in the style.css file for some reaso

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread BrianJones
Mihails, I'm viewing using IE7, and the border: none !important; seemed to work just fine. Actually, when I tried to change it to use something else that is more compliant to all browsers, nothing seemed to work: border: none; border: 0; border: 0px; border-style: none; border-width: 0; border-

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread BrianJones
Ahhh, I solved the problem. There was actually nothing wrong with any of the other ones I tried, the reason they weren't being utilized when the page was being rendered is because they were at the very top of the .css file, so when the !important keyword was removed, another element of the same t

Re: [xwiki-users] How to add new categories to the Event Calendar? And why are my Tags not appearing?

2008-10-30 Thread stephanie pouliquen
I have the same problem with first issue. Hi all, First issue: I'm currently working with XWiki 1.4M1 (the standalone installation) and when I go the Event Calendar I get an empty Category list in the New Event area. I did already some research but I just can't find the place to add new catego

Re: [xwiki-users] How to add new categories to the Event Calendar? And why are my Tags not appearing?

2008-10-30 Thread BrianJones
The category property of the CalendarEvent class is just a static list. Go to /XWiki/CalendarEvent?editor=class, select the 'Category' property, and add in your desired categorys in the 'Values' textbox, using the '|' character to separate the choices. I have the same problem with first issue.

[xwiki-users] LDAP Authentication on Workspaces

2008-10-30 Thread Gregor Speck
Hey Hoh, I have a small (or big) problem... I wanted to configure my LDAP Authentication on XWS. There I have used the settings of my XE, but it won't work... Its strange, because if i disable xwiki.authentication.authclass=com.xpn.xwiki.user.impl.LDAP.XWikiLDAPAuthServiceImpl i can login with

[xwiki-users] Loginsubmit

2008-10-30 Thread Gregor Speck
Hey! Does anybody know if i can change the LoginSubmit Process? I want , the users have to set their email adress as their username. but when they submit the form, they should only logged in with their aliases ([EMAIL PROTECTED] ) Is it possible? And my next question: If yes, where? Greetz Greg

[xwiki-users] Login troubles when using a domain name instead of IP address

2008-10-30 Thread BrianJones
Hello all, I'm not sure if I'm explaining this correctly but here goes... I'm using XWiki Enterprise 1.6.1.13621 with Tomcat 6.0.16. Everything works fine when I access the XWiki site through the URL: http://www.my_ip_address:8080/xwiki/, I can login fine, everything works etc... However, when

[xwiki-users] Use page as parent instead of space

2008-10-30 Thread BrianJones
Quick question regarding the 'parent' feature. I'd like to be able to use pages within a space as parents for other pages in that space, to provide a more complete breadcrumbs trail for the user to see. As of now, whenever I create a new page, it is created under the the current space being view

Re: [xwiki-users] Use page as parent instead of space

2008-10-30 Thread Sergiu Dumitriu
BrianJones wrote: > Quick question regarding the 'parent' feature. I'd like to be able to use > pages within a space as parents for other pages in that space, to provide a > more complete breadcrumbs trail for the user to see. > > As of now, whenever I create a new page, it is created under the t

Re: [xwiki-users] login

2008-10-30 Thread BrianJones
Enrique: This line does not exist in the login.vm file (input type="hidden" name="j_rememberme" value="" /> ). Using XWiki Enterprise 1.6.1.13621. Has it been changed to something else? I would like to eliminate the functionality that even if you logout/close the browser, you are automatically

Re: [xwiki-users] Use page as parent instead of space

2008-10-30 Thread BrianJones
Sergiu, Not sure how I missed this before Feeling slightly sheepish! Many thanks Sergiu Dumitriu-2 wrote: > > BrianJones wrote: >> Quick question regarding the 'parent' feature. I'd like to be able to >> use >> pages within a space as parents for other pages in that space, to provide >> a

Re: [xwiki-users] Table style not being affected

2008-10-30 Thread Mihails Agafonovs
Sure. Without !important keyword the table is still rendered with borders, because it might be specified somewhere else in your stylesheet more precisely, like "table.xwikitable { ... }". Yes, IE7 does understand the "!important" keyword. That's not new. About why would anyone would use IE6 instead