I have xWiki 0.9.840 up and running now.
Question: I want to have optional sections of the menu bar appear when
members of certain groups are logged in. For example, I'd like to have a
restricted space (which I now have), but not have the link appear on the
left hand menu unless the user is allowed to visit that space.
How can I do this?
--
Adrian Hall
Sr. Product Line Manager, Administration and Identity Management
e. ahall(a)mirapoint.com; t. +1 (408) 720-3856; c. +1 (408) 667-4977
I see the standard WebSearch searches all spaces, regardless of function.
Is there a method by which I can create a WebSearch page that searches just
the current space?
On a related note, is there a function that I can use to create an RSS feed
for what's new for a single space?
-Adrian
--
Adrian Hall
Sr. Product Line Manager, Administration and Identity Management
e. ahall(a)mirapoint.com; t. +1 (408) 720-3856; c. +1 (408) 667-4977
Hello everybody,
because I had trouble with the last stable version 0.9.840 as somebody
out of the community mentioned:
- the changes I made are registered in the database
- they are displayed on the view page
- but they are not on the edit page
...I have installed the unstable build 0.9.1037. This bug is now fixed
but version 0.9.1037 seems to be terribly slow. Does anybody have any ideas?
Kind regards, Stefan
Hi all,
I have installed several wiki-ish/collab apps within my intranet so we
can test drive them and pick one by the end of the month ( twiki,
mediawiki, confluence, xwiki, jspwiki, snipsnap, sharepoint, etc ).
So far xwiki is one of the best from the dev point of view. It is
free, flexible ( makes for a nice platform for quick day-to-day
inhoues apps ), and 100% java. And since we are all geeks, it makes
for a nice toy.
But from the usability POV it lags behind.
* Forms and buttons are not polished ( interaction is awkward and
feedback is sometimes ambigous )
* There is too much on the screen
I really believe you should focus on improving the UI, as it accounts
for a large part of the perceived value... take a look at twiki,
confluence or SnipSnap ( and even mediakiwi and it's sound simplicity
).
Is something on these lines planned for the next release? Dates?
I am tweaking the templates to see how far I can go, but I'd rather
stay aligned with you guys.
Great work ;),
Aldo
--
::::: Aldo Bucchi :::::
mobile (56) 8 429 8300
>Hi All,
>
>Now, this, I think, will allow Xwiki.ahall the ability to edit the rights,
>and do other things that "Admin" can do, but it doesn't. I don't get the
>"Admin" menu option, and I don't get all the extra options under "More
>Actions"
There is a caching issue on group rights. (Take a look here:
http://mail-archive.objectweb.org/xwiki-users/2006-02/msg00102.html)
Try $xwiki.flushCache() in a XWiki document
or restart the tomcat instance.
Bye
Frank
Hi All,
I am attempting to set up a new Wiki for our Intranet running on Jboss
4.0.3SP1 with Tomcat 5.5.16 and MySQL database.
I need access control with the following specs:
Everyone in Admin Group gets to do anything "Admin" can.
People in specific groups get to edit/add content to specific spaces
Registered users get to view everything
Guests get view access only to Main (and I can turn that off if
necessary)
I have a user XWiki.ahall (which is me)
I added this user to XWiki.XWikiAdminGroup, so that group now contains
XWiki.Admin and XWiki.ahall.
I have other groups named (for instance) Xwiki.KBGroup to control access
further. There are a whole bunch of these.
In my Xwiki access rights, I have
Xwiki.XWikiGlobalRights
0: Xwiki.XWikiAdminGroup
-> Group: Xwiki.XWikiAdminGroup
-> Permissions: view,edit,admin,comment
-> Users: <blank>
-> Allow/Deny: Allow
1: Xwiki.XWikiAllGroup
-> Group: Xwiki.XWikiAllGroup
-> Permissions: view
-> Users: <blank>
-> Allow/Deny: Allow
2: Xwiki.XWikiGuest
-> Group: <blank>
-> Permissions: view
-> Users: <blank>
-> Allow/Deny: Allow
(this last one is what I think will allow me to turn on/off guest).
Now, this, I think, will allow Xwiki.ahall the ability to edit the rights,
and do other things that "Admin" can do, but it doesn't. I don't get the
"Admin" menu option, and I don't get all the extra options under "More
Actions"
Is there something I am missing here?
The reason I want to do this is so I can turn on LDAP authentication - our
LDAP server doesn't have an Admin user, so I won't be able to log in as an
admin after I turn LDAP Authentication on, so I need an alternate
Administrator.
--
Adrian Hall
Sr. Product Line Manager, Administration and Identity Management
e. ahall(a)mirapoint.com; t. +1 (408) 720-3856; c. +1 (408) 667-4977
All,
Someone knows if exist a search in which I can see the name of the
document and the content of the document, but only a short content of
the document like google.
In my wiki http://www.siac.net.co/uso I have a search that it shows a
short content of a document, but sometimes it shows a bad content.
Thanks
Hi all,
Is it possible to get VelocityTools v1.2 working with XWiki v0.9.840?
http://jakarta.apache.org/velocity/tools/generic/
In particular I'm trying to get ListTools working.
I tried copying all the jars from the VelocityTools1.2 archive into
the XWiki lib dir, removing the older libs, and editing the
toolbox.xml as appropriate. But this must be causing
incompatibilities, and results in a bunch of exceptions on startup.
Cheers,
Robin.
Frank:
Thanks. Now, to refine the question a bit: is the set of columns available within each virtual table equivalent to the set of all the Velocity "properties" of each object - which means, as I understand it, all attributes represented by public methods named "get" and "set", declared locally or inherited, by the object's class? It doesn't seem that I have been able to depend on that, but I've gotten pretty turned around dealing with all the metadata and meta-metadata.
It seems that the "virtual" schema is supported by the data in the documented schema, though it's not clear that everything needed is there.
Further, I don't think I quite understand how to parse the returned result. From the javadoc, I can see that XWiki.search() returns a java.util.List. Through Java reflection I find that the List is actually a java.util.ArrayList, and that each ArrayList element is a java.lang.Object, which is itself an array of java.lang.Object, or depending on how I look at it, of java.lang.reflect.Field. I get the expected number of objects in the array(the number of requested fields in the query), and each one is of the expected type, with the expected value, which is great, but it doesn't seem from the analysis that it ought to. Again, I've probably just confused myself unnecessarily...
The real difficulty I have is in directly addressing any field of a returned row. I can loop through it and see what each one is, but without doing that and assigning each field based on the iteration count, I can't just use each field as I can with the returned list from getObjects. I've tried using the get() method that takes an integer index, but that doesn't seem to work; among other things, there's also another get() that takes a string for the field name. I haven't tried that one...
Thanks again for a clear answer; this message is both further question and open-ended comment, in hope of stimulating more discussion in order to gain a more solid understanding of what can be done. However much I love to tinker, I am not primarily a developer but an architect and designer, so I need to concentrate on making sure that the tools our developers use are up to the jobs that I give them. It does appear that XWiki is, although the metadata gymnastics needed to navigate the schema are probably a bit too tedious for the average application programmer, let alone the average wiki user. I'm seriously considering building a tool to make those queries more straightforward, though my job rarely permits such luxuries as merely improving the productivity of all our staff...
Of course, I can always go to the sources, and I will if I don't get an answer here (and if I have time). More than that, I will share it with the list, on the off chance that someone else needs it...
brain[sic]
-----Original Message-----
From: Frank Häfemeier [mailto:frank@haefemeier.net]
Sent: Thursday, March 23, 2006 10:39 AM
To: xwiki-users(a)objectweb.org
Subject: AW: [xwiki-users] SQL hair-pulling
>As mentioned in an earlier message, I got into the $xwiki.search()
>world yesterday, and am thoroughly confused.
>
>The main problem seems to be that the XWiki database schema and the
>schema used in all of the $xwiki.search() queries I have found are
>completely disjoint.
>
>Instead of the documented tables and columns, what seems to be used is
>a schema which reflects the object model within XWiki. This would
>really be convenient if true; is it?
This is right.
Bye
Frank