Hi!
Maybe someone can help with getting all unique names of each user,
that has created some document in XWiki?
For example, there is table in XWiki database named "xwikidoc", which
contains all the documents. Can I create a query, that gets all the
unique values of the creators (column XWD_CREATOR)?
Ar cieņu, Mihails
On Jun 27, 2008, at 9:35 PM, Florian Rhomberg wrote:
> Hi!
> I hope someone can help me. I have troubles with spaces. I installed
> after
> the installation xar. This file creates different spaces: XWiki,
> Scheduler,
> Blog, Panels, Stats, Photos, Sandbox and Main. Now I have two
> questions:
>
> 1. How can I delete spaces? I removed all content from Sandbox and
> Scheduler
> and want to remove this spaces, but I do not know how.
You have to delete all files in a space to delete it. This can be done
manually or using a script,
see http://code.xwiki.org/xwiki/bin/view/Snippets/DeleteSpaceSnippet
Don't forget to delete the WebHome page in the space.
> 2. How can I modify the navigation panel that XWiki, which is
> necessare for
> running the wiki, as well as Blog, Panels,Stats, Photos are hidden. I
> removed the comment line from $hiddenSpaces and tried several thigs
> in the
> navigation but I was not successful!
To modify it, just edit it. Go to the Panels space (Panels.WebHome)
for example or use the Panel Wizard and edit the panel you want.
Thanks
-Vincent
If I am understanding correctly, to delete spaces I think you can go to
"Index" on the quick links panel and that will show you all your spaces.
There is even a search box for spaces, you can copy, delete, rename, and
add rights buttons from here. For your second question, if you are
talking about the quick links panel you can click the "edit this panel"
link under Quick Links panel. You need to have the necessary rights to
do all this, so if you are logged in as an Admin all of these options
should show up.
Thanks,
Brent
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf
Of Florian Rhomberg
Sent: Friday, June 27, 2008 2:36 PM
To: 'XWiki Users'
Subject: [xwiki-users] Problem with Spaces
Hi!
I hope someone can help me. I have troubles with spaces. I installed
after
the installation xar. This file creates different spaces: XWiki,
Scheduler,
Blog, Panels, Stats, Photos, Sandbox and Main. Now I have two questions:
1. How can I delete spaces? I removed all content from Sandbox and
Scheduler
and want to remove this spaces, but I do not know how.
2. How can I modify the navigation panel that XWiki, which is necessare
for
running the wiki, as well as Blog, Panels,Stats, Photos are hidden. I
removed the comment line from $hiddenSpaces and tried several thigs in
the
navigation but I was not successful!
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi!
I hope someone can help me. I have troubles with spaces. I installed after
the installation xar. This file creates different spaces: XWiki, Scheduler,
Blog, Panels, Stats, Photos, Sandbox and Main. Now I have two questions:
1. How can I delete spaces? I removed all content from Sandbox and Scheduler
and want to remove this spaces, but I do not know how.
2. How can I modify the navigation panel that XWiki, which is necessare for
running the wiki, as well as Blog, Panels,Stats, Photos are hidden. I
removed the comment line from $hiddenSpaces and tried several thigs in the
navigation but I was not successful!
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------
Hello Stuart,
[snip]
One thing I haven't been able to do as yet is to put different access
rights on individual sections of a document. It seems that XWiki only
allocates access rights to the document as a whole.
Is this possible and if so how to do it?
If it is not yet possible, is likely to be in the future?
[/snip]
[MR]
I don't think it's possible to grant edit rights to sections of a page.
As far as viewing sections of a page is concerned think that is already
possible as follows using checkAccess
(http://maven.xwiki.org/site/xwiki-core-parent/xwiki-core/apidocs/com/xpn/xw…):
- [Link to a resource available to everyone>Main.WebHome]
#if($xwiki.checkAccess("Whois.WebHome", "view"))
- [Whois>Whois.WebHome]
#end
[/MR]
Mazzel,
Martijn.
Hello,
It seems that the Search panel is coming with a hard-coded URL like
"/xwiki/bin/Main/WebSearch"
If you give your application a different name than "xwiki" it breaks.
I checked that on the 1.4 XAR.
Best regards,
--
Tiago Rinck Caveden
http://caveden.multiply.com
Hello!
In my wiki, I've saved a page that can be visualized by everybody, included
non logged users. The edition is restricted to logged users, though.
However, in this page I added a little script that changes some object
values when the page is viewed and then saves it. If somebody not logged try
to simply view the page, he receives an exception saying he doesn't have
rights for it.
IMHO, the script execution should be done with the rights of the person that
saved it.. In this case, I would like everybody that can view the page to be
able to execute the script and save the page in the terms I've decided in
the script.
Despite which is the best approach, is there any workaround for my case that
does not include allowing anonymous edition of the page?
Thank you very much,
--
Tiago Rinck Caveden
http://caveden.multiply.com
Hi!
I got the problem solved. There was a problem with my Tomcat and Apache
configuration with xwiki. Now xwiki works perfectly, and I am very happy
that I can now use it.
This is a short installation guide for people who want to use Xwiki in
combination with Apache and mod_jk and want to deploy the application
manually:
1. Download the war file in the directory you want.
2. Now you have two possibilities:
- You can use the Apache Tomcat Manager to deploy (the usual way).
If you use this way you can skip the following steps.
- You rename the war file to zip and then unzip the file (I did it
this way, hopefully it is not completely wrong)
3. Now you can modify the hibernate.conf, see this tutorial step 8 and only
8: http://www.howtoforge.com/xwiki-tomcat-mysql-debian-etch
4. Create if you want or need an alias in the httpd.conf which points to the
folder where you have unzipped xwiki.
5. create an xml file with the following content:
<?xml version="1.0" encoding="utf-8"?>
<Context displayName="xwiki" docBase="/home/tomcat/app/xwiki"
path="aloha/xwiki/">
</Context>
modify docBase and path to your needs. Aloha is my alias of the xwiki the
folder where I stored the xwiki files
6. Use the Tomcat manager to manually deploy the service by using the
created xml file. (If someone needs more information to do this please ask)
7. Now xwiki should be accessible by http://domain/alias
I hope this will help some people
Greetings,
Florian
-----Ursprüngliche Nachricht-----
Von: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] Im Auftrag von
Florian Rhomberg
Gesendet: Freitag, 27. Juni 2008 09:00
An: users(a)xwiki.org
Betreff: [xwiki-users] Can´t reach xwiki from outside with domainname
Hi! I hope someone can help me. I have just installed xwiki on my server.
The server is behind a firewall that means the servers IP adress is
tranformed by the firewall to an external IP adress. I can reach xwiki
normally with the internal IP address (
<http://192.168.1.5/xwiki/bin/view/Main/WebHome>
http://192.168.1.5/xwiki/bin/view/Main/WebHome) behind the firewall, it
works fine even I do not have reconfigured the apache httpd.conf file. But
if I call the website externally, I get redirected to
<http://127.0.0.1/xwiki/bin/view/Main/WebHome>
http://127.0.0.1/xwiki/bin/view/Main/WebHome that does not work. Therefore I
tried to change in the xwiki.cfg the path from 127.0.0.1 to the domainname,
but nothing has changed. How can I solve this problem.
I use an apache 2.2.6 webserver with mod_jk. The folder xwiki is correctly
deployed by tomcat.
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hi,
I have been testing XWiki over the last few days with the view to using it
within our Institution.
One thing I haven't been able to do as yet is to put different access rights
on individual sections of a document. It seems that XWiki only allocates
access rights to the document as a whole.
Is this possible and if so how to do it?
If it is not yet possible, is likely to be in the future?
Thanks in advance
Stuart
--
View this message in context: http://www.nabble.com/Section-editting-access-authorization-tp18127869p1812…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi! I hope someone can help me. I have just installed xwiki on my server.
The server is behind a firewall that means the servers IP adress is
tranformed by the firewall to an external IP adress. I can reach xwiki
normally with the internal IP address (
<http://192.168.1.5/xwiki/bin/view/Main/WebHome>
http://192.168.1.5/xwiki/bin/view/Main/WebHome) behind the firewall, it
works fine even I do not have reconfigured the apache httpd.conf file. But
if I call the website externally, I get redirected to
<http://127.0.0.1/xwiki/bin/view/Main/WebHome>
http://127.0.0.1/xwiki/bin/view/Main/WebHome that does not work. Therefore I
tried to change in the xwiki.cfg the path from 127.0.0.1 to the domainname,
but nothing has changed. How can I solve this problem.
I use an apache 2.2.6 webserver with mod_jk. The folder xwiki is correctly
deployed by tomcat.
Thank you for your help!
Florian
------------------------------------------------------------------
Florian Rhomberg
Gletscherblick 38
A-6080 Igls
E-Mail: mailto:florian.rhomberg@nettania.net
www.nettania.net
------------------------------------------------------------------