Hi all,
can you confirm me this problem?
If I give to XWikiAllGroup view true and edit false on a single space and I
create inside that space a page with an empty table rights, xwiki doesn't
allow to view that page for a not admin user
Regards
Raffo
--
View this message in context: http://www.nabble.com/rights-problem-tp15592824p15592824.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi all,
We are using XWiki to share/develop R code.
R has a source() command that can call a remote web page where the code
is stored and execute it locally. We can figure out more sophisticated
ways of getting R involved, but as an starting point it could be enough
to be able to call restricted access XWiki URLs from local R
installations with the source() command. Thus, I think that we need to
send to XWiki the username and the password together with this URL.
Please, could you now if this is possible and point me in the right
direction? Thanks!
Best regards,
Ricardo
--
Ricardo Rodríguez
Your EPEC Network ICT Team
The XWiki development team is pleased to announce the release of XWiki
Enterprise1.3 Milestone 2.
Go grab it at http://www.xwiki.org/xwiki/bin/view/Main/Download
Second and last milestone of the XWiki Enterprise 1.3 version. Next
version will be a release candidate.
Main changes from 1.3M1:
* Lots of bugs fixed
* New Toucan Skin. Warning: The Toucan skin requires that you have the
Albatross 1.2 or greater version installed and that you have XWiki
Enterprise 1.3M2 or greater installed.
* Complete rewrite of the LDAP authentication support (see XWIKI-1079
for more details). Main changes:
o Support for LDAP groups
o If LDAP authentication fails, XWiki DB authentication takes over
o Improved configuration parameters
* Allow skin document attachments to override/provide templates
* Tightened Wiki Syntax for strikethrough (XWIKI-1207), underline
(XWIKI-1243), italics (XWIKI-1245) and strong (XWIKI-1248).
* Verified XWiki on PostGreSQL 8.3
* Syntax Help Panel now opens the XWiki Syntax help from xwiki.org in
a separate window
+ lots of other changes
For more information see the Release notes at:
http://www.xwiki.org/xwiki/bin/view/Main/ReleaseNotesXWikiEnterprise13M2
Thanks
-The XWiki dev team
Hello,
In my wiki, I granted the rights for the top menu header bar to be showed only to administrators by using #if($hasadmin.....#end) in the menuview.vm file. Now I am faced with extending this right to members of a certain group only in one space rather than the entire wiki. How would this be possible as I already tried setting a new parameter ($entry="entry") and trying to pass it in the menuview folder. This did not work as the header was disappeared the entire time. What would be the best way about going along with this since when you simply grant rights, the menu bar does not appear?
Tim Campbell
Junior, Computer Science Major
Winston-Salem State University NC
I'm browsing http://xwiki.org using Opera 9.01 for Windows XP, and I'm
noticing significant performance problems. Specifically, scrolling the
page is slow and jerky. When I suffix a page with "?skin=albatross" I
no longer notice these problems, and when I view the same page instead
using Firefox (v2.0.0.12) I again do not notice these problems. Any
idea what is going on?
Thanks,
Paul D. Grodt
Hi Jeremie,
The sql query you suggested is cleaner and at least as efficient as the
current one. It was my first option but unfortunately it's not supported
by the newer versions of mysql. I've no idea why..
mysql> select xws_name, sum(xws_page_views) as pageviewcount from
xwikistatsdoc where xws_action='view' and xws_name like '%.%' group by
xws_name order by pageviewscount desc;
ERROR 1054 (42S22): Unknown column 'pageviewscount' in 'order clause'
Anyway, hibernate should be responsible for the correct translation from
hql to a specific sql dialect. A solution would be to use the (idea from
the) above sql but configure the dialect to MySQL5Dialect (in my case). I
have to test this. I'll give you feedback soon.
Best Regards,
Marius.
> To be complete, this same error occurs for all the Statistics panels ...
>
>
> -----Original Message-----
> From: BOUSQUET Jeremie
> Sent: lundi 18 février 2008 15:50
> To: 'XWiki Users'
> Subject: RE: [xwiki-users] MySQL Error "invalid use of group function" in
> Statistics application
>
>
> Hi Marius and thanks,
>
> Your SQL request returns the same error "invalid use of group function" in
> my mysql version ...
>
> BTW I could have it work by explicitly naming the sum, and using it in the
> order by :
>
> select xws_name, sum(xws_page_views) as pageviewcount from xwikistatsdoc
> where
> xws_action='view' and xws_name like '%.%' group by xws_name order by
> pageviewscount desc
>
> I believe it's a difference in behaviour between MySQL 1.4 and 1.5 ... Do
> you want me to create a JIRA issue for this ?
>
> Best Regards,
>
> Jeremie
>
>
>
>
> -----Original Message-----
> From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf
> Of Marius Dumitru Florea
> Sent: lundi 18 février 2008 15:19
> To: users(a)xwiki.org
> Subject: Re: [xwiki-users] MySQL Error "invalid use of group function" in
> Statistics application
>
> Hi Jeremie,
>
> Sorry for the inconvenience. Your tables' description seems fine. I
> attached the description of my tables so you can check it for yourself. I
> think it all resumes to the following SQL query:
>
> select xws_name, sum(xws_page_views) from xwikistatsdoc where
> xws_action='view' and xws_name like '%.%' group by xws_name order by
> sum(xws_page_views) desc
>
> This query is very similar to the one used for retrieving the Most Viewed
> Pages. It works fine under:
>
> mysql Ver 14.12 Distrib 5.0.45, for pc-linux-gnu (x86_64) using readline
> 5.2
>
> It would be great if you could run this query and tell me if it works in
> your case.
>
> Best Regards,
> Marius.
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
Oh f... !
So simple ;)
Well, solution is now to rename the links and using underscores in the
page-names.
Thanks ;)
> -----Ursprüngliche Nachricht-----
> Von: Vincent Massol [mailto:vincent@massol.net]
> Gesendet: Dienstag, 19. Februar 2008 11:08
> An: XWiki Users
> Betreff: Re: [xwiki-users] Can't use IP as pagename, why?
>
> Hi Florian,
>
> This is because dots are not currently allowed in page names
> since they are separators between space name and page name.
>
> -Vincent
>
> On Feb 19, 2008, at 11:13 AM, Rustedt, Florian wrote:
>
> > Hello List,
> >
> > I wanted to edit a list with IP's and every listed IP is
> backlinked to
> > a page with the IP as name.
> >
> > Wikicode-example (xwiki v1.2.2.7518):
> > Page "Main":
> > * [192.168.1.1]: Blabla
> > * [192.168.1.2]: Blabla
> > * [192.168.1.3]: Blabla
> >
> > Now i look at "Main" and i see following:
> >
> > 168.1.1: Blabla
> > 168.1.2: Blabla
> > 168.1.3: Blabla
> >
> > In HTML:
> > <li><span class="wikilink"><a
> > href="/xwiki/bin/view/192.168.1/1">168.1.1</a></span>:Blabla</li>
> > <li><span class="wikilink"><a
> > href="/xwiki/bin/view/192.168.1/2">168.1.2</a></span>:Blabla</li>
> > <li><span class="wikilink"><a
> > href="/xwiki/bin/view/192.168.1/3">168.1.3</a></span>:Blabla</li>
> >
> > The URL behind the links are now:
> > http://localhost:8080/xwiki/bin/view/192.168.1/1
> > http://localhost:8080/xwiki/bin/view/192.168.1/2
> > http://localhost:8080/xwiki/bin/view/192.168.1/3
> >
> > Instead of linking pages, the wiki did add a complete
> webspace called
> > "192.168.1"?? And additionally, the "192." is gone???
> >
> > How do i have to understand this behaviour?
> >
> > Kind regards,
> > Florian
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
Hello List,
I wanted to edit a list with IP's and every listed IP is backlinked to a
page with the IP as name.
Wikicode-example (xwiki v1.2.2.7518):
Page "Main":
* [192.168.1.1]: Blabla
* [192.168.1.2]: Blabla
* [192.168.1.3]: Blabla
Now i look at "Main" and i see following:
168.1.1: Blabla
168.1.2: Blabla
168.1.3: Blabla
In HTML:
<li><span class="wikilink"><a
href="/xwiki/bin/view/192.168.1/1">168.1.1</a></span>:Blabla</li>
<li><span class="wikilink"><a
href="/xwiki/bin/view/192.168.1/2">168.1.2</a></span>:Blabla</li>
<li><span class="wikilink"><a
href="/xwiki/bin/view/192.168.1/3">168.1.3</a></span>:Blabla</li>
The URL behind the links are now:
http://localhost:8080/xwiki/bin/view/192.168.1/1http://localhost:8080/xwiki/bin/view/192.168.1/2http://localhost:8080/xwiki/bin/view/192.168.1/3
Instead of linking pages, the wiki did add a complete webspace called
"192.168.1"?? And additionally, the "192." is gone???
How do i have to understand this behaviour?
Kind regards,
Florian
When attempting to upload a 10.5MB file attachment to a page in XE
1.2-milestone-2.5917, user consistently get the error:
Java Heap Space Out Of Memory Exception !
and the operation fails.
Any suggestions on where to start (default java config?)
--
Jim Dowson
CTO, Global Services, EMC Corporation