Hi,
Sorry for my late reply.
I have implemented an improvement to the LDAP Authentication component
that comes with XWiki.
The code that comes with XWiki does not yet support SSL and has other
severe limitations (IMHO).
Here is my latest update. I have only tested the component against
Novell eDirectory and OpenLDAP and not against AD, but that should not
be a problem.
My component provides a variety of new features. (as described in more
details in my IRA-issue)
if so configured:
- it will add a user to XWiki that is authenticated against LDAP
- user must belong to a group in LDAP to be allowed to login
- a user is joined and removed from XWiki groups if he belongs to
mapped LDAP groups
- Attributes (email, tel, ...) are mapped from LDAP in the XWiki.
- fall back to authenticate against the XWiki DB (with a password
configured just there) works.
Also, I didn't have the chance to verify the code that removes a user
from a group based on the user leaving an LDAP group. SSL works fine, if
you have the certificate installed correctly with my component. (All the
new features can be deactivated in xwiki.cfg)
Installation instructions:
- unzip under WEB-INF (all the java classes go deep under the
"classes" directory. I have also activated logging for this
component.)
- I have included my heavily commented example of the xwiki.cfg within
the zip. (Caution that you don't overwrite your own xwiki.cfg while
unpacking)
- There is a keytool.exe with the JDK that converts SSL certificates.
Afterwards, you can specify the path where the component finds the
certificate in the xwiki.cfg for SSL to work.
I welcome any feedback, testing and verification.
Regards,
Gunter
P.S.:
This example contains one strange piece of code: It tries to create a
dummy user in the beginning. In my experiments this call always fails
(but actually shouldn't), but afterwards, creating a user with the same
call based on LDAP will work.
-------------------------------------------------------------------------------
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail
irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und
vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte
Weitergabe dieser Mail ist nicht gestattet.
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.
-------------------------------------------------------------------------------
Hi,
I have tried a while to switch to Active Directory (AD) for our xwiki (1.0
RC 4) authentication but was not successful so far. I took a look at the
code (LDAPAuthServiceImpl.java) and found out the error I keep getting is:
"Not such attribute"
when the code tries to compare the user input password and the real
password stored in AD using the attribute "userPassword". I guess the
reason is the binding user I use (a regular user account) doesn't have
permission to the userPassword attribute. Could someone please shed some
light on if this could be the problem?
btw, I changed the check_level from the default 1 to 2 since 1 doesn't
check password at all - which defeats the purpose of authentication. It
would allow user to log in as long as the user has the correct userid.
I am wondering why we even need this option here.
xwiki.authentication.ldap.check_level=2
I also hardcoded my CN/password in the bind_Pass and bind_DN section. the
{0} and {1} thing failed in the binding when I entered my
username(sAMAccountName) and password.
Any of your help will be highly appreciated.
Thanks
-Jimmy
Hi Guys,
I have deployed xwiki and modified the hibernate.cfg.xml file to use HSQL.
However when I try and access the main page
/xwiki/bin/view/Main/WebHome
it gives me the following error:
javax.servlet.ServletException: Error number 3 in 0: Could not initialize
main XWiki context
Wrapped Exception: access denied (java.io.FilePermission \WEB-INF\xwiki.cfg
read)
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
sun.reflect.GeneratedMethodAccessor2335.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:597)
org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
java.security.AccessController.doPrivileged(Native Method)
javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
java.security.AccessController.doPrivileged(Native Method)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
sun.reflect.GeneratedMethodAccessor2334.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:597)
org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
java.security.AccessController.doPrivileged(Native Method)
javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:217)
Has anyone come across this? I have verified that the /WEB-INF/xwiki.cfg
file exists. It is the default file and it has read and write permissions
I am running on Apache Tomcat/5.5.15 with JVM version 1.6.0-b105
Any help would be much appreciated
--
View this message in context: http://www.nabble.com/error-after-installation-tf3758009.html#a10621283
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I devlopped a XWiki based site for french users and I'd like to change the
name of the default page for a space from "Space.WebHome" to
"Space.SomeOtherName" which woud be more meaningful in french.
Is this possible or is the "WebHome" name hard-coded somwhere?
BTW, I would be interested to change the default space name also ("Main"
means "Hand" in french...)
Thanks in advance for your answers
Daniel
--
View this message in context: http://www.nabble.com/Changing-the-default-page-for-a-space-tf3775286.html#…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Anyone able to get LDAP authentication over SSL working with XWiki??
If so, how? I'm running the latest version of XWiki (1.0 RC4) and am
able to use LDAP authentication to our Active Directory Server
successfully, but only in clear text, not over SSL. I've checked Jira
and see that someone is working on a patch to a bug (XWIKI-865) that
have something to do with LDAP authentication over SSL.
How does one install a patch to XWiki?
David K. Whisler
Oracle Database Administrator & Centra Administrator
The William States Lee College of Engineering
University of North Carolina at Charlotte
(704) 687-3964
dkwhisle(a)uncc.edu <mailto:dkwhisle@uncc.edu>
The XWiki development team team is pleased to announce the
availability of the 1.0 RC 5 release.
Go grab it on http://www.xwiki.org/xwiki/bin/view/Main/Download
The 1.0 RC4 release was supposed to be the last release before the
1.0 final but we've discovered some important bugs, the most
important being that with RC4 you couldn't anymore copy/paste content
from Word/Excel into the WYSIWYG editor. This release is a bug fix
release and is planned to be promoted as the final 1.0 release on
next Tuesday. Let's hope it's the last RC.
* Bugs fixed:
o XWIKI-1205 - Going to the Main.WebHome page on a wiki
with an empty database generates a NPE
o XWIKI-1210 - Nested lists are discarded by WYSIWYG editor
o XWIKI-1224 - Html tags is escaped when we switch from
wysiwyg editor to wiki editor
o XWIKI-1225 - Entering a multiline cell content only
keeps the first line when saved in WYSIWYG mode
o XWIKI-1227 - Incorrect paragraph when copy and paste
from other editor to WYSIWYG editor
o XWIKI-1229 - Toolbar in Wysiwyg Editor cannot wrap
properly under IE7
o XWIKI-1233 - Unindent button greyed out even though line
is indented
o XWIKI-1234 - Editor doesn't understand the 1. syntax
notation for lists
o XWIKI-1238 - Horizontal line breaks table
* Improvement
o XWIKI-1228 - Change the style sheet for select list in
toolbar of WYSIWYG editor
o XWIKI-1237 - Add handle button toolbar for font size and
font family select in toolbar of visual editor.
IMPORTANT: XWiki 1.0 RC 2 has fixed an important security issue in
past releases where passwords were stored in clear in the database.
Passwords are now hashed. If you are upgrading from a previous
version, any new user or any password update will automatically get
the password hashed. However existing users who do not change their
passwords will still have their passwords in clear in the database.
Thus, we are providing a tool to automatically hash all passwords
from an existing database.
See the full release notes on http://www.xwiki.org/xwiki/bin/view/
Main/ReleaseNotesXWiki10RC5
Enjoy
-The XWiki development team
I really like the WYSIWYG editor's "Add/edit link" feature. One
problem, though, is XWiki headings. There are two problems generally:
first, it isn't intuitive how to name the link. For example, for a
level-2 XWiki heading (1.1 in Wiki markup, generates HTML h3 element of
class "heading-1-1") named Styles, the fragment identifier was
"HStyles". Also, a level-1 (h2, class "heading-1") was also named by
prepending an "H" to the heading text. Is this the way it's supposed to
work, where in the "link" field I have to put "Hsomething" for a link to
a heading called "something", unless there's another heading with that
same text, which could be added after I compose that link and then what
do I do...?
The other is that following the link causes the page to scroll to just
below the heading text, which is a bit confusing.
brain[sic]
I deleted by mistake the NAVIGATION panel of the standard installation, the
one with collapsable spaces.
Could pls someone post the code?
Also, in this panel, I would like to avoid listing certain pages in some
spaces: how can i achieve this?
Thanks a lot
--
View this message in context: http://www.nabble.com/Navigation-panel-tf3759045.html#a10624654
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I want to install Xwiki on Unix platform,
I need information regarding memory and disk uses for Xwiki.
Please Guide me.
Thanks & Regards
Manvar Khan | CRM-AMSS Integration | Tech Mahindra
Delta, Fourth floor Giga Space, Viman Nagar, Pune - 411016. INDIA
* Office: +91 20 6622 1000 | Extn: 3157 | Cell: +91-9970291915
Email: manvark(a)techmahindra.com
www.techmahindra.com
<https://techmail1.techmahindra.com/exchweb/bin/redir.asp?URL=http://www
.techmahindra.com/>
============================================================================================================================
Disclaimer:
This message and the information contained herein is proprietary and confidential and subject to the Tech Mahindra policy statement, you may review at <a href="http://www.techmahindra.com/Disclaimer.html">http://www.techmahindra.com/Disclaimer.html</a> externally and <a href="http://tim.techmahindra.com/Disclaimer.html">http://tim.techmahindra.com/Disclaimer.html</a> internally within Tech Mahindra.
============================================================================================================================
I set up XWiki 1.0RC3 (soon to be upgraded to RC4) with ActiveDirectory
authentication. However, it's not what I expected.
First, I must still create XWiki users with the same username that users
have in my directory. If I don't first create the XWiki user, the
ActiveDirectory user won't be able to log in. However, as soon as I create
the XWiki user, the corresponding ActiveDirectory user can log in with
their ActiveDirectory credentials. I had hoped that XWiki would simply
allow an authenticated user to log in. So am I misunderstanding how it
should work?
Second, when an ActiveDirectory user does log in, it is the user details
from their XWiki user that is shown, not the corresponding ActiveDirectory
details. For example, if John Smith is an ActiveDirectory user with
username "jsmith", and I create an XWiki user named "Johnny Boy", then when
John logs in, "Johnny Boy" is shown for his name, not the "John Smith" form
ActiveDirectory. This surprises me because some of the LDAP value I has to
specify for XWiki's ActiveDirectory integration were telling it how to
glean information such as the displayName from the directory. Again, and I
misunderstanding how it should work?
Regards,
Brian.
-----------------------------------------
CONFIDENTIALITY STATEMENT:
This e-mail transmission contains information that is intended to
be confidential. It is intended only for the addressee named
above. If you receive this e-mail in error, please do not read,
copy, or disseminate it. If you are not the intended recipient,
any disclosure, copying, distribution or use of the contents of
this information is prohibited. Please reply to the message
immediately by informing the sender that the message was
misdirected. After replying, please erase it from your computer
system. Your assistance in correcting this error is appreciated.
I have installled xwiki and importde their default tables.
I have been trying for hours to delte the sandbox space: I can delete any
other space, but not sandbox, by deleting all pages of the space.
Please help
Thanks
--
View this message in context: http://www.nabble.com/Delete-SANDBOX-space-tf3710212.html#a10377674
Sent from the XWiki- Users mailing list archive at Nabble.com.
I have created a wiki on the wikifarm (http://icarus.xwiki.com/) and want to change the skin to 'albatross'. I tried the URL parameter but this does not work.
Thanks in advance, Uwe
Hi,
In my xwiki application we have got a hierarchy of users, viz., admin(xwikiadmin), monitors, registered users, banned users, and guests(xwikiguest).
In our application admin can create monitors. Monitors are users having some special rights. Monitors can assign rights to a set of users viz., the registered users (who doesn't have admin rights). Monitors can ban a registered user etc. But to allow this monitor should have admin privileges
(see - http://www.xwiki.org/xwiki/bin/view/UserGuide/RightsManagement).
But if we give admin privileges to monitors, then a monitor can even change the rights of an administrator, or even his own rights.
Is there a way in xwiki for me to do make a user group so that he is not able change the rights of admin but is able to change the rights of normal users?
Another query : how can I get the group of the currently logged in user from a velocity page?
Regards
Roopesh
I would like to set up the access rights for my wiki in the following way
ADMIN: can do everything
ALL GROUPS: can only view pages, add comments and create a new blog entry
The problem is hat i dunno how to setup permissions for the blogs: if I set
no access for the spage "BLOG" than a standard user cannot create a new blog
entry. The only way to do this is to set for ALL GROUPD edit access to the
space "BLOG", but then they will be able to edit parts of the blog i don't
want them to touch.
Thanks
--
View this message in context: http://www.nabble.com/Access-to-create-a-blog-entry-tf3727469.html#a10432051
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi, I would like to avoid that, in the right navigation panel, under the blog
space, a new entry is added for each new blog. I would to keep only 3 items:
Cathegories, WebHome and Create ne blog.
How can i do that?
Thanks
--
View this message in context: http://www.nabble.com/Blogs%3A-avoid-listing-in-panels-tf3754117.html#a1060…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello All,
I try to switch from rc2 to rc4 and notice a strange beahivor in rc4.
I checked out the source and built the war, deployed it, set the
superadmin pw, imported the rc4.xar from the xwiki.org site.
when i try to add new groups or new users, the process succeeds, i.e.
the new groups / users *are* created, but they do not apear in the
groups/users list in the admin space.
Has any of you encountered the same problem?
Regards
Thomas
--
ontopica
Thomas Krämer
Krämer&Okpue GbR
Kurfürstenstr. 66
53115 Bonn
Fon +49 228 - 180 99 737
Fax +49 228 - 242 78 60
Email tk(a)ontopica.de
Hi Xavier,
On Jan 6, 2006, at 7:52 PM, Xavier MOGHRABI wrote:
> Dear all,
>
> I tried to used Jabber macro on my server like this :
> #jabber("moghrabi(a)jabber.objectweb.org")
>
> It seems not working on the ObjectWeb server.
> We use Wildfire 2.6.
>
> do you know why ?
>
I've checked the code. The reason is because the presence service we
were using is no longer active:
http://edgar.netflint.net/status.php
See http://jira.xwiki.org/jira/browse/XWIKI-1219
Thanks
-Vincent
Hi,
I think I'm missing something here. To display an image on a page it's
pretty simple : you attach it to a page, and use the {image} macro to
display it. Good. What if I want to display the same image in 2 or 3
different pages ? I can't do the same because if the image is attached to
page1 it will not be usable on page2. How can I upload a image (or a file)
that could be visible to all the wiki ?
Thanks,
Antonio
I have a question regarding the use of GET/POST in xwiki. How do I send to a velocity script a string using GET or maybe something similar (like $context??) in xwiki?
I read something about xwiki context, like getResponse() and getRequest(), but I would like an example to understand better, because the api is very lacunal. Thank you.
Evelina Slatineanu
1. Anyone had success with configuring Xwiki so it will use an Active
Directory to authenticate using SSL (port 636)? I'm using Xwiki 1.0
RC3 as a standalone installation on a Win2003 Server using Jetty (though
have configured Xwiki to use our MySQL Server - and this works fine).
I was able to sucessfully get it to authenticate to our AD via LDAP port
389, but can't seem to get it work under port 636 (SSL). And I have
installed the cert from the LDAP Server on the XWiki box (Win2003
Server), so I'm not sure what I'm doing wrong.
For those that have deployed Xwiki using LDAP Authentication via a AD in
SSL mode, you could send me the parameters you have tweaked in the
xwiki.cfg file (and anything else you did)?
2. I see that a patch was been developed (XWIKI-865 - related to
XWIKI-1079 and XWIKI-805) to enable support for SSL connections to LDAP.
Do I need to install this patch or this already included in as part of
Xwiki 1.0 RC3 on the download? If I do need to install it - how?
The documentation on the patch and on the xwiki.org site does not say
how to install patches (sorry if I'm supposed to know this already - but
I'm not a Java programmer). How are patches installed and what
procedures should be done as part of the post-installation, and how does
one know when a release includes a patch?
Thanks in advance for your help,
Dave
I think it's impossible to do the paging properly under the conditions mentioned below. So I have a flat results view but I've done some efforts for a compact and easily customizable search results view, which has sorting and sort direction functionality. If you want to have it you should also have my lucene-patches to support sorting directions and to do AND-searches by default.
If you want I can send these all to you but maybe somebody of the project team could shortly comment these issues before. If there is a roadmap with the plugin I could also offer myself to be a contributor. Lucene-plugin works 100X (well...almost) faster than regular xwiki-searches and is at least at the moment the only possible choice in my xwiki-environment.
And by the way, many thanks for Ludovic and the whole team for great work!
Regards,
Petteri
________________________________
Lähettäjä: Michael Guntli [mailto:michael.guntli@leica-geosystems.com]
Lähetetty: ke 9.5.2007 11:12
Vastaanottaja: xwiki-users(a)objectweb.org
Aihe: [xwiki-users] RE: Questions about the Lucene-plugin
I had the same problem with post-filtering the search results. (there were
not all results displayed, and that caused a problem in a paged view (ex.
just 10 out of 30 on page1, 15 of 30 on page2..)
Maybe you can improve my lucene search page macro?
http://www.xwiki.org/xwiki/bin/view/Code/LuceneSearchPage
petteri.karttunen wrote:
>
> About the "confusing" results: of course I can do some velocity- or groovy
> -post-processing on the page to filter out the duplicate document names
> from results. This is no problem if I want to show the results as one flat
> list but it becomes quite complicated to do efficiently if I want to show
> f.ex. 30 hits per page with paging. Basically I mean that all the index
> data holded by one page (page content, objects, attachments...) should be
> regarded as this page's properties and indexed under one lucenedoc. If I
> operationally have understood something incorrectly, please correct me.
>
> What do you think?
>
> -Petteri
>
> I'm testing the version RC1 and have some thoughts about the
> Lucene-plugin:
>
> Sorting
> -------
> At the moment there is no method in the API to choose between the sorting
> directions. I think there should be one.
>
> Boolean Queries
> ---------------
> Is the default query-type going to stay an ORed one? Should it better be
> an AND-query, like Google? I think most of the surfers expect that
> nowadays. At least there could be method to choose between them.
>
> Results
> -------
> Search results are a bit confusing now. When I search for a word that
> appears both in a document, in it's attachment and in it's object's
> properties I get three hits. One for each type. There a special cases, of
> course, but I think it would be more usable to get in my example case by
> default just one hit. There would still remain a method ("type: object")
> to distinguish between the types in a query.
>
> If you like, I can provide patches for the two first (minor) issues.
>
> Regards,
> Petteri
>
>
>
>
>
>
>
>
>
> --
> You receive this message as a subscriber of the xwiki-users(a)objectweb.org
> mailing list.
> To unsubscribe: mailto:xwiki-users-unsubscribe@objectweb.org
> For general help: mailto:sympa@objectweb.org?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
--
View this message in context: http://www.nabble.com/Questions-about-the-Lucene-plugin-tf3704984.html#a103…
Sent from the XWiki- Users mailing list archive at Nabble.com.
The XWiki development team team is pleased to announce the
availability of the 1.0 RC 4 release.
Go grab it on http://www.xwiki.org/xwiki/bin/view/Main/Download
This release is a bug fix release and is planned to be promoted as
the final 1.0 release next week if no critical bug is found till then.
* Bugs fixed:
o XWIKI-1023 - Probable mistake in strikethrough regular
expression match
o XWIKI-1151 - Wyswiyg editor has problem with lists and
carriage returns
o XWIKI-1152 - Wysiwyg loosing content when copy pasting
and switching to list
o XWIKI-1161 - Exception when manipulating class fields
causes them to "disappear"
o XWIKI-1163 - Remove lines space before and after the
list, table
o XWIKI-1164 - Editor removes line feeds
o XWIKI-1165 - WYSIWYG editor doesn't understand the "-"
notation for lists
o XWIKI-1166 - WYSIWYG editor doesn't understand the
<text> , it's ignored
o XWIKI-1167 - Create 2 lists that separated by a line
space then it merges both lists
o XWIKI-1172 - "Indent" button generates escaped
<bloquote> wiki markup
o XWIKI-1180 - The blockquote is never removed
o XWIKI-1182 - Empty line after list missing
o XWIKI-1183 - URLs entered in wiki markup are displayed
without the protocol part
o XWIKI-1184 - Tooltip for Ordered List is wrong
o XWIKI-1189 - Reduce the amount of space before the level
1 title
o XWIKI-1190 - One empty line at the start of a document
is stripped when rendered and edited again
o XWIKI-1191 - Macromapping of velocity macros when
there's no Velocity macro page defined fail and instead include the
WebHome page of the current space
o XWIKI-1192 - {skype} macro mapping to #skype velocity
macro isn't working
o XWIKI-1197 - exception in rename nonexistent document
o XWIKI-1204 - Incorrect type of code macro when we switch
from wiki => wysiwyg => wiki
* Improvements
o XWIKI-1039 - The albatross skin does not distinguish
disabled form fields
o XWIKI-1109 - XWikiRightServiceImpl.listAllLevels uses an
expensive method for producing the rights list.
o XWIKI-1200 - Hide actions in the menu that don't have a
meaning for a non-existing document
IMPORTANT: XWiki 1.0 RC 2 has fixed an important security issue in
past releases where passwords were stored in clear in the database.
Passwords are now hashed. If you are upgrading from a previous
version, any new user or any password update will automatically get
the password hashed. However existing users who do not change their
passwords will still have their passwords in clear in the database.
Thus, we are providing a tool to automatically hash all passwords
from an existing database.
See the full release notes on http://www.xwiki.org/xwiki/bin/view/
Main/ReleaseNotesXWiki10RC4
Enjoy
-The XWiki development team
I am looking for a way to detect using velocity code, whether a button has
been pressed. I want to change an object's property's value before the
action goes from edit or inline back to view but only if the 'save and view'
button has been pressed.
thanks in advance
Uwe
--
View this message in context: http://www.nabble.com/detect-finished-action-tf3692266.html#a10323349
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
First, sorry for my approximate English , I try to explain my problem as clearly as possible.
When i use the pdf generator by clicking on the "pdf button" in the XWiki menu bar, the generated pdf dont have any size.
Then, when I want to open it, I obtain an error saying to me that the document is damaged or corrupted.
Finally, in my server logs, i have
Wrapped Exception: org.apache.fop.fo.ValidationException: null:1:182: Error(1/182): fo:root, Error processing foreign attribute: http://www.w3.org/XML/1998/namespace/@xml:lang
com.xpn.xwiki.XWikiException: Error number 12002 in 12: Exception while exporting PDF
Wrapped Exception: org.apache.fop.fo.ValidationException: null:1:182: Error(1/182): fo:root, Error processing foreign attribute: http://www.w3.org/XML/1998/namespace/@xml:lang
at com.xpn.xwiki.pdf.impl.PdfExportImpl.exportXMLFO(PdfExportImpl.java:162)
at com.xpn.xwiki.pdf.impl.PdfExportImpl.exportXHtml(PdfExportImpl.java:107)
at com.xpn.xwiki.pdf.impl.PdfExportImpl.exportHtml(PdfExportImpl.java:170)
at com.xpn.xwiki.pdf.impl.PdfExportImpl.export(PdfExportImpl.java:184)
at com.xpn.xwiki.pdf.impl.PdfExportImpl.exportToPDF(PdfExportImpl.java:174)
at com.xpn.xwiki.web.PDFAction.render(PDFAction.java:44)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:150)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:228)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:216)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:634)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:445)
at java.lang.Thread.run(Thread.java:595)
Hope, that anybody can help me!
Regards,
Christophe
About the "confusing" results: of course I can do some velocity- or groovy -post-processing on the page to filter out the duplicate document names from results. This is no problem if I want to show the results as one flat list but it becomes quite complicated to do efficiently if I want to show f.ex. 30 hits per page with paging. Basically I mean that all the index data holded by one page (page content, objects, attachments...) should be regarded as this page's properties and indexed under one lucenedoc. If I operationally have understood something incorrectly, please correct me.
What do you think?
-Petteri
I'm testing the version RC1 and have some thoughts about the Lucene-plugin:
Sorting
-------
At the moment there is no method in the API to choose between the sorting directions. I think there should be one.
Boolean Queries
---------------
Is the default query-type going to stay an ORed one? Should it better be an AND-query, like Google? I think most of the surfers expect that nowadays. At least there could be method to choose between them.
Results
-------
Search results are a bit confusing now. When I search for a word that appears both in a document, in it's attachment and in it's object's properties I get three hits. One for each type. There a special cases, of course, but I think it would be more usable to get in my example case by default just one hit. There would still remain a method ("type: object") to distinguish between the types in a query.
If you like, I can provide patches for the two first (minor) issues.
Regards,
Petteri
Hi,
With RC3, I encountered a problem that I believe was not there before:
(Environment: Windows against MySQL (fresh database +
xwiki-1.0-rc-3.zip)
Calling createUser :
context.getWiki().createUser("gleeb", map, "XWiki.XWikiUsers",
"#includeForm(\"XWiki.XWikiUserTemplate\")", "edit", context);
Map:
Mapping active=1
Causes:
com.xpn.xwiki.XWikiException: Error number 8002 in 8: Cannot create
user XWiki.gleeb
Wrapped Exception: Error number 3201 in 3: Exception while saving
document XWiki.gleeb
Wrapped Exception: Error number 13012 in 3: Exception while saving
links
Wrapped Exception: null
at com.xpn.xwiki.XWiki.createUser(XWiki.java:2770)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.createUserFromLDAP(LDAPAuthenticater.java:697)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.authenticate(LDAPAuthenticater.java:288)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:180)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:111)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:178)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:2906)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:118)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:2914)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:3763)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:134)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 3201 in 3: Exception while
saving document XWiki.gleeb
Wrapped Exception: Error number 13012 in 3: Exception while saving
links
Wrapped Exception: null
at
com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiDoc(XWikiHibernateStore.java:314)
at
com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:100)
at
com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:94)
at com.xpn.xwiki.XWiki.saveDocument(XWiki.java:914)
at com.xpn.xwiki.XWiki.createUser(XWiki.java:2759)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.createUserFromLDAP(LDAPAuthenticater.java:697)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.authenticate(LDAPAuthenticater.java:288)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:180)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:111)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:178)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:2906)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:118)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:2914)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:3763)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:134)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
Wrapped Exception:
com.xpn.xwiki.XWikiException: Error number 13012 in 3: Exception while
saving links
Wrapped Exception: null
at
com.xpn.xwiki.store.XWikiHibernateStore.saveLinks(XWikiHibernateStore.java:1491)
at
com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiDoc(XWikiHibernateStore.java:305)
at
com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:100)
at
com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:94)
at com.xpn.xwiki.XWiki.saveDocument(XWiki.java:914)
at com.xpn.xwiki.XWiki.createUser(XWiki.java:2759)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.createUserFromLDAP(LDAPAuthenticater.java:697)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.authenticate(LDAPAuthenticater.java:288)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:180)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:111)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:178)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:2906)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:118)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:2914)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:3763)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:134)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
Wrapped Exception:
java.lang.NullPointerException
at java.util.Hashtable.put(Unknown Source)
at com.xpn.xwiki.XWikiContext.setDoc(XWikiContext.java:158)
at
com.xpn.xwiki.store.XWikiHibernateStore.saveLinks(XWikiHibernateStore.java:1470)
at
com.xpn.xwiki.store.XWikiHibernateStore.saveXWikiDoc(XWikiHibernateStore.java:305)
at
com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:100)
at
com.xpn.xwiki.store.XWikiCacheStore.saveXWikiDoc(XWikiCacheStore.java:94)
at com.xpn.xwiki.XWiki.saveDocument(XWiki.java:914)
at com.xpn.xwiki.XWiki.createUser(XWiki.java:2759)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.createUserFromLDAP(LDAPAuthenticater.java:697)
at
com.xpn.xwiki.ldap.authentication.LDAPAuthenticater.authenticate(LDAPAuthenticater.java:288)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.authenticate(MyFormAuthenticator.java:180)
at
com.xpn.xwiki.user.impl.xwiki.MyFormAuthenticator.processLogin(MyFormAuthenticator.java:111)
at
com.xpn.xwiki.user.impl.xwiki.XWikiAuthServiceImpl.checkAuth(XWikiAuthServiceImpl.java:178)
at com.xpn.xwiki.XWiki.checkAuth(XWiki.java:2906)
at
com.xpn.xwiki.user.impl.xwiki.XWikiRightServiceImpl.checkAccess(XWikiRightServiceImpl.java:118)
at com.xpn.xwiki.XWiki.checkAccess(XWiki.java:2914)
at com.xpn.xwiki.XWiki.prepareDocuments(XWiki.java:3763)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:134)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:830)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
at
org.mortbay.jetty.servlet.WebApplicationHandler$CachedChain.doFilter(WebApplicationHandler.java:821)
at
org.mortbay.jetty.servlet.WebApplicationHandler.dispatch(WebApplicationHandler.java:471)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1565)
at
org.mortbay.jetty.servlet.WebApplicationContext.handle(WebApplicationContext.java:633)
at org.mortbay.http.HttpContext.handle(HttpContext.java:1517)
at org.mortbay.http.HttpServer.service(HttpServer.java:954)
at
org.mortbay.http.HttpConnection.service(HttpConnection.java:816)
at
org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:983)
at
org.mortbay.http.HttpConnection.handle(HttpConnection.java:833)
at
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:244)
at
org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)
at
org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
Am I doing something wrong?
Regards,
Gunter
-------------------------------------------------------------------------------
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail
irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und
vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte
Weitergabe dieser Mail ist nicht gestattet.
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.
-------------------------------------------------------------------------------
Hi,
I've created a panel that is displayed on the right side (of every page).
This panel displays the five top titles of an external weblog using the rss
macro :
{rss:feed=http://jroller.com/rss/agoncal|count=5}
The problem that I'm facing is that the rss feed is broken (JRoller's
problem). And because of that, the macro hangs (for quite a while) and then
throws an exception. Because it's displayed on everypage, navigating in the
wiki becomes really slow. Is there a way to do something better ?
Antonio (BTW I'm using RC2)
12:40:01,578 WARN http-8080-Processor25
http://localhost:8080/xwiki/bin/view/Main/ MacroFilter:handleMatch:139 -
MacroFilter: unable
java.io.IOException: Error processing http://jroller.com/rss/agoncal:
Connection timed out: connect
at com.xpn.xwiki.render.macro.rss.RSSMacro.execute(RSSMacro.java
:102)
at org.radeox.filter.MacroFilter.handleMatch(MacroFilter.java:117)
Hello.
This email is mainly for Gentoo Linux users/admins/developers.
I write a draft version of XWiki ebuild (package analog) for Gentoo
Linux distribution:
http://jira.xwiki.org/jira/browse/XWIKI-467
ebuild in attachments
install instructions in comments
For now ebuild can (USE flags):
war - simple build war in
/usr/share/xwiki-svn-1.0/lib/xwiki.war
exowar - build exo portlet integration war in
/usr/share/xwiki-svn-1.0/lib/xwiki-exo.war
standalone - build standalone distribution (embedded hsqldb and jetty)
and install it in /usr/share/xwiki-svn-1.0/standalone
run by /etc/init.d/xwiki start
tomcat - deploy to tomcat6. simply symlink war file :)
write what you want else?
ebuild will checkout
svn://svn.forge.objectweb.org/svnroot/xwiki/xwiki/branches/XWIKI_1_0
sources for building and uses ant for building.
ebuild uses svn because xwiki haven't source distribution yet. But I
think for test this ebuild svn is most suitable.
Later we will needed source distribution for xwiki releases.
ebuild allow to Gentoo user to install xwiki very easily without any
knowledge in xwiki.
I tested this ebuild on ~amd64 arch, sun-jdk-1.5 & 1.6 (with some
patches allowing xwiki to compile at 1.6).
I would like to hear some feedbacks,notes,misprints and bugs before we
can propose this ebuild to Gentoo java-overlay or java-experimental overlay.
--
Artem Melentyev, UralSU, CS401
Salut and hello,
i'm trying so set up a small community website using xwiki.
Everything looks very promising so far.
However, the german language file ApplicationResources_de.properties in
xwiki.jar (1.0-rc-3)
seems not to be up to date. Only a 100 properties of about 700 in
ApplicationResources.properties are translated.
Is there an updated version somewhere or should I translate the remaining
properties?
Should I translate ApplicationResources.propertiesor
ApplicationResources_en.properties?
I did a quick search on jira.xwiki.org and did not find an update for the
language file.
TIA,
Thomas Porcham
I'm testing the version RC1 and have some thoughts about the Lucene-plugin:
Sorting
-------
At the moment there is no method in the API to choose between the sorting directions. I think there should be one.
Boolean Queries
---------------
Is the default query-type going to stay an ORed one? Should it better be an AND-query, like Google? I think most of the surfers expect that nowadays. At least there could be method to choose between them.
Results
-------
Search results are a bit confusing now. When I search for a word that appears both in a document, in it's attachment and in it's object's properties I get three hits. One for each type. There a special cases, of course, but I think it would be more usable to get in my example case by default just one hit. There would still remain a method ("type: object") to distinguish between the types in a query.
If you like, I can provide patches for the two first (minor) issues.
Regards,
Petteri
(Sorry, if this post comes twice.)
I'm testing the version RC1 and have some thoughts about the Lucene-plugin:
Sorting
-------
At the moment there is no method in the API to choose between the sorting directions. I think there should be one.
Boolean Queries
---------------
Is the default query-type going to stay an ORed one? Should it better be an AND-query, like Google? I think most of the surfers expect that nowadays. At least there could be method to choose between them.
Results
-------
Search results are a bit confusing now. When I search for a word that appears both in a document, in it's attachment and in it's object's properties I get three hits. One for each type. There a special cases, of course, but I think it would be more usable to get in my example case by default just one hit. There would still remain a method ("type: object") to distinguish between the types in a query.
If you like, I can provide patches for the two first (minor) issues.
Regards,
Petteri
Dear Community,
My organization(a division in a US Federal Government agency) is going to
select a wiki engine for a trans-organization collaboration effort. The
current candidates are Confluence, XWiki, MediaWiki and Microsoft
Sharepoint Wiki. I tried to promote XWIKI but have only used it in a very
small scale environment (< 5 users). If you have used it in a production
scale and can provide me some feedbacks based on the following
questionnaire, it will be a great help for me to show to my manager.
Thank you in advance!
-Jimmy
=================================================
Capability
* Number of wiki users at your organization
* Number of maximum concurrent users
Wiki Engine reliability (on a scale of 1 to 5, 5 is best and 1 is worst)
Usability
* Wiki Engine usability (on a scale of 1 to 5, 5 is best and 1 is worst)
* Training / learning curve (on a scale of 1 to 5, 5 is easiest and 1 is
most difficult)
Cost
* Hardware requirements
* Cost (license fee, hosting fee etc)
Support
* Data backup and recovery (i.e. do you have daily back up procedures in
place and is it difficult to backup and recover the data if there is a
disaster?)
(can you restore just a page or space instead of the whole wiki if a
page/space is messed up?)
* How difficult is the administration? (i.e. roughly how many hours the
administrator need to spend on the wiki maintenance?)
* How is the quality of support of this wiki engine (from the commercial
vendor or the community. i.e. can you get timely answers for your
questions?) (on a scale of 1 to 5, 5 is best and 1 is worst)
I'd like to define all terms containing text used at a single location (per
space for example).
I also like to use the static list class.
Is there a way how I can access the 'values' list for a given property for
an object of this class programatically in velocity to set and read the
values? I assume this field is an array and could be addressed with the
range operator.
--
View this message in context: http://www.nabble.com/single-source-term-definitions-tf3680954.html#a102871…
Sent from the XWiki- Users mailing list archive at Nabble.com.
e.g., "order by" in mini search creates
Error number 4001 in 4: Error while parsing velocity page Main.WebSearch
Wrapped Exception: Invocation of method 'searchDocuments' in class
com.xpn.xwiki.api.XWiki threw exception com.xpn.xwiki.XWikiException: Error
number 3223 in 3: Exception while searching documents with sql where
doc.web<? Wrapped Exception: unexpected char: '%' select distinct doc.web,
doc.name, ' order by doc.date from com.xpn.xwiki.doc.XWikiDocument as doc
where doc.web<? @ Main.WebSearch92,27?
I know everybody is trying to make the version stable, but could somebody
explain, how the search algorithm works?
Uwe
--
View this message in context: http://www.nabble.com/search-for-certain-terms-throws-exception-tf3678295.h…
Sent from the XWiki- Users mailing list archive at Nabble.com.
More a visual issue than a bug:
For users that are not administrators, on B4 I'm getting this when
viewing all new and old documents (previously this was only happening on
delete, or for non-registered users for certain spaces).
Brandon Esbach
Software Engineer
M/A-Com Eurotec Operations
LoughMahon Technology Park,
Skehard Road,
Blackrock,
Cork, Ireland
Tel +353 21 4808305
Hi,
I am using an xwiki (version
0.9.840<http://dubpat01:8080/dulles/bin/view/Main/WebHome>).
My database is mysql running on Linux. I have a strange problem where when I
upload an svg file and then reference the .svg file in an <object/> tag, the
browser Firefox 2.0+, isn't able to display the image. Rather it asks for an
external application to deal with the file. This is not a problem with the
browser since I can view other .svg files. Interestingly, if I save the .svg
file by right-clicking and saving to my local disk and then point my browser
at my local disk it can view the .svg file no problem. So I am guessing that
their is something strange about the way the xwiki returns the bytes to the
browser....anyone experienced this? Any ideas?
Thanks.
Hello,
Me again... I have a problem with the Static List type. In my class, I added a property of this type and as separators I tried everything from , to space. Then in Values I put 4 values separated by the chosen separator. The problem is that instead of 4 checkboxes, each in front of a different value, I get 1 checkbox and all the values together separated by the separator after it. What I do wrong?
Thanks in advance.
Evelina Slatineanu
Quite some time ago I asked whether there are plans to upgrade the
included version of Groovy from JSR-06 to the 1.0 release.
I never got an answer, and I see that no version change occurrred in the
last release candidate.
Is Groovy used in a standard installation and can I replace the
corresponding jar myself without breaking anything?
Thanks
Michael
I deployed the latest version of XWiki on Windows with Tomcat 6.0 and
Postgres 8.1 and Linux with Tomcat 5.x and Postres 8.2.
On both I have trouble logging in. When I log in as Admin and attempt to go
to the admin page the systems asks me to log in again and I am no longer
admin.
Same for other users.
Do you know what I should look at?
--
View this message in context: http://www.nabble.com/Problems-with-Postgres-tf3672827.html#a10262956
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
Is there a way to flush a specific page in xwiki? I know
$xwiki.flushcache() flushes the whole cache, but I'd like a specific
page flush. How can I do that?
My scenario is a cluster: I have a master server with the master xwiki
db, and a slave server with a slave xwiki db, connected via
replication. I do my xwiki saves over http to the master. The master
db updates correctly, and so the slave db updates correctly as well.
That's all good and fine. But while the master cache updates
correctly (that's where the save happens), the slave cache doesn't
update, because xwiki on the slave doesn't know the write occurred.
Thanks,
Yoav
Hi
This query is in addition to a query I had posted some time before.
When a document [of a particular type - which follows a particular template] is edited and submitted, or newly created, I want to log the IP address of the user plus some of the values of certain fields in that form.
One reply I got was to use servlet filters? I tried using servlet filters and I found that it is possible.
My doubts are :
Is Servlet filters the preferred way for doing what I require in XWiki? Is there any other ways to do the same in xwiki?
If Servlet filter is the way, then is there any preferred way to use in xwiki? (What I did was to place the servlets in WEB_INF/classes folder and added the entry in web.xml.)
Regards
Roopesh
Hi Evelina, Vincent and all
Vincent Massol wrote:
> Hi Evelina,
>
> On Apr 28, 2007, at 10:43 PM, evelyne24(a)gmail.com wrote:
>
>> Hello,
>>
>> I have the following question regarding relationing 2 classes in
>> xwiki. I made a class Person with 2 properties (firstName,
>> lastName) and a class Media with a prop. (title) and then I made an
>> object "Richard Gere" of class person and 2 objects "Pretty Woman"
>> and "Autumn at New York" of class Media. Now I would like to link
>> somehow the 3 objects, i.e to say that Richard Gere played in
>> "Pretty Woman" and also in the other movie (media). How can I do
>> that? I don't seem to understand how to link the already created
>> objects one with another. For instance, I cannot create another
>> class with 2 properties, one of type Media and one of type Person,
>> because these types don't appear under "Type" on "Add Property"
>> panel. Please help me understand how can I do that in xwiki.
>>
>
> Not sure if it's the best solution but you could create a document
> containing "Richard Gere" + "Pretty Woman" and "Autumn at New York"
> objects. This document would answer the question: "show me the films
> with Richard Gere".
Indeed, or another possible option would be to add a property "playsIn"
of type "Database list" to the class "Person". The query associated with
that property would be something like the one below, for fetching all
the Media titles:
======
select distinct prop.value from BaseObject as obj, StringProperty as
prop where obj.className='XWiki.Media' and prop.id.id = obj.id and
prop.id.name='title' order by prop.value
======
Or third possibility: simply use plain wiki links between the documents:
create three documents "Richard Gere", "Pretty Woman", "Autumn in New
York", attach structured objects to each of them, then add a link to
"Pretty Woman" and "Autumn in New York" to the body of the document
"Richard Gere".
I hope this helps.
By the way, this type of question should rather be submitted to the
xwiki-users mailing-list! -> I propose we continue the discussion on
that list instead.
Cheers
Stéphane
> -Vincent
>
>> Ps. I heard something about attachments but I don't really
>> understand how... Thank you.
>>
>> Evelina Slatineanu
>
>
--
Stéphane Laurière
slauriere(a)xwiki.com
+33 6 83 04 49 03
skype: arkubb
XWiki Research
http://www.xwiki.comhttp://concerto.xwiki.comhttp://nepomuk.semanticdesktop.org
Hello,
I have managed to get 3 wiki's going the "main one" and two virtual
wikis.
First up, this message is not readable by the group, as there is a
problem with your Digital Sig. That's beyond the scope of this mail
list though, so you may need to contact your IT folks directly to fix
that.
From what I see here, it looks like you've added it correctly.
Are you sure that the case, spelling, etc are identical in the server
field and in the actual name (see
/xwiki/bin/view/Xwiki/XWikiServerXwikiemansio in the address field of
your browser to confirm this - the X from xwikiemansio should be in caps
even in the link)?
-----------------------COPIED POST-----------------------
I set-up both of the two virtual wikis "at the same time".
Trying to add a third virtual wiki....it is not recognized as a virtual
wiki....
This is what I did to add my third virtual wiki:
1. I created the DNS record for emansio.fireventures.com to CNAME
"my wiki host"
2. I created a DB schema in mySQL called xwikiemansio
3. Added full access rights to this schema for the xwiki db user in
mySQL
4. I created a page called:
/xwiki/bin/view/Xwiki/XWikiServerXwikiemansio
5. To this page I attached an object called:
XWiki.XWikiServerClass[0]: emansio.fireventures.com
6. I set the server to emansio.fireventures.com
7. and the owner to XWiki.Admin
8. I then restarted Tomcat
Trying to reach http://emansio.fireventures.com/xwiki/bin/view/Main/
I get redirected to the "this wiki does not exist page" in my main
wiki....
Any ideas are highly appreciated.....
// Jan Eldenmalm
---------------------END COPIED POST---------------------
Hi,
we are looking for a java based wiki. XWIKI seems to fulfill most of our requirements. The only drawback seems, that we are bound to using ORACLE as the database. Since this does not worked I tried a file based approach using jackrabbit.
The installation (ond tomcat 5.5.23) was no problem. When I go to the man page the system starts to create the file repository but suddenly falls over with the Exception shown at the bottom of this message.
I checked the archives but couldn't find a hint as to how to solve this problem.
The classes Field and NodeIndexer that seem to cause the problems are definitely loaded from the libraries deployed in the lib directory of XWIKI (checked with Class.forName(sClassName).getProtectionDomain().getCodeSource().getLocation().toString() for each class in a jsp I deployed into the XWIKI-application. Has anyone an idea what the reason for this problem is and/or how to solve it? Using MySQL or any other database than ORACLE is a no go.
Thanks in advance
Gy�rgy Magoss
HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: Error number 3 in 0: Could not initialize main XWiki context
Wrapped Exception: Error number 3001 in 3: Cannot load store class com.xpn.xwiki.store.jcr.XWikiJcrStore
Wrapped Exception: org.apache.lucene.document.Field.<init>(Ljava/lang/String;Ljava/lang/String;ZZZ)V
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:535)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:433)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
root cause
com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize main XWiki context
Wrapped Exception: Error number 3001 in 3: Cannot load store class com.xpn.xwiki.store.jcr.XWikiJcrStore
Wrapped Exception: org.apache.lucene.document.Field.<init>(Ljava/lang/String;Ljava/lang/String;ZZZ)V
com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:291)
com.xpn.xwiki.XWiki.getXWiki(XWiki.java:383)
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:96)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
note The full stack trace of the root cause is available in the Apache Tomcat/5.5.23 logs.
--------------------------------------------------------------------------------
Apache Tomcat/5.5.23
In the stack trace of the server there is additional information about the wrapped exception
Wrapped Exception:
java.lang.NoSuchMethodError: org.apache.lucene.document.Field.<init>(Ljava/lang/String;Ljava/lang/String;ZZZ)V
at org.apache.jackrabbit.core.query.lucene.NodeIndexer.createDoc(NodeIndexer.java:130)
at org.apache.jackrabbit.core.query.lucene.NodeIndexer.createDocument(NodeIndexer.java:115)
at org.apache.jackrabbit.core.query.lucene.SearchIndex.createDocument(SearchIndex.java:459)
at org.apache.jackrabbit.core.query.lucene.MultiIndex.createDocument(MultiIndex.java:691)
at org.apache.jackrabbit.core.query.lucene.MultiIndex.createDocument(MultiIndex.java:782)
at org.apache.jackrabbit.core.query.lucene.MultiIndex.access$300(MultiIndex.java:74)
at org.apache.jackrabbit.core.query.lucene.MultiIndex$AddNode.execute(MultiIndex.java:1348)
at org.apache.jackrabbit.core.query.lucene.MultiIndex.executeAndLog(MultiIndex.java:810)
at org.apache.jackrabbit.core.query.lucene.MultiIndex.createIndex(MultiIndex.java:889)
at org.apache.jackrabbit.core.query.lucene.MultiIndex.<init>(MultiIndex.java:280)
at org.apache.jackrabbit.core.query.lucene.SearchIndex.doInit(SearchIndex.java:229)
at org.apache.jackrabbit.core.query.AbstractQueryHandler.init(AbstractQueryHandler.java:44)
at org.apache.jackrabbit.core.SearchManager.initializeQueryHandler(SearchManager.java:524)
at org.apache.jackrabbit.core.SearchManager.<init>(SearchManager.java:268)
at org.apache.jackrabbit.core.RepositoryImpl.getSystemSearchManager(RepositoryImpl.java:578)
at org.apache.jackrabbit.core.RepositoryImpl.access$300(RepositoryImpl.java:90)
at org.apache.jackrabbit.core.RepositoryImpl$WorkspaceInfo.getSearchManager(RepositoryImpl.java:1521)
at org.apache.jackrabbit.core.RepositoryImpl.initWorkspace(RepositoryImpl.java:558)
at org.apache.jackrabbit.core.RepositoryImpl.<init>(RepositoryImpl.java:255)
at org.apache.jackrabbit.core.RepositoryImpl.create(RepositoryImpl.java:498)
at org.apache.jackrabbit.core.TransientRepository$2.getRepository(TransientRepository.java:245)
at org.apache.jackrabbit.core.TransientRepository.startRepository(TransientRepository.java:265)
at org.apache.jackrabbit.core.TransientRepository.login(TransientRepository.java:333)
at org.apache.jackrabbit.core.TransientRepository.login(TransientRepository.java:363)
at com.xpn.xwiki.store.jcr.JackRabbitJCRProvider.initWorkspace(JackRabbitJCRProvider.java:101)
at com.xpn.xwiki.store.jcr.XWikiJcrStore.createWiki(XWikiJcrStore.java:501)
at com.xpn.xwiki.store.jcr.XWikiJcrStore.<init>(XWikiJcrStore.java:87)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
at com.xpn.xwiki.XWiki.initXWiki(XWiki.java:586)
at com.xpn.xwiki.XWiki.<init>(XWiki.java:567)
at com.xpn.xwiki.XWiki.getMainXWiki(XWiki.java:282)
at com.xpn.xwiki.XWiki.getXWiki(XWiki.java:383)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:96)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:118)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:215)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
at java.lang.Thread.run(Thread.java:595)
The XWiki development team team is pleased to announce the
availability of the 1.0 RC 3 release.
Go grab it on http://www.xwiki.org/xwiki/bin/view/Main/Download
This release is planned to be promoted as the final 1.0 release next
week if no critical bug is found till then.
New in this release:
Bugs fixed:
* Filter conflict: external links can be rendered two times. This
fixes a problem with some absolute URLs in wiki pages that make XWiki
hang.
* The link to the user profile is broken for non-local users
* Links to virtual wikis broken when using XWiki behind a proxy
* The top menu entry shadow disappears when hovering
* Generated PDF loses paragraphs
Improvements:
* Make password type HASH by default
IMPORTANT: XWiki 1.0 RC 2 and RC 3 fix an important security issue in
past releases where passwords were stored in clear in the database.
Passwords are now hashed. If you are upgrading from a previous
version, any new user or any password update will automatically get
the password hashed. However existing users who do not change their
passwords will still have their passwords in clear in the database.
Thus, we are providing a tool to automatically hash all passwords
from an existing database.
See the full release notes on http://www.xwiki.org/xwiki/bin/view/
Main/ReleaseNotesXWiki10RC3
Enjoy
-The XWiki development team
Hello,
I followed Ludovic Dubost his Oracle Installation notes. I think that he missed a modification to the xwiki.cfg. In there the xwiki.store.hibernate.path points to the /WEB-INF/hibernate.cfg.hsql.xml instead of /WEB-INF/hibernate.cfg.xml.
I installed it on Oracle Database 10g Enterprise Edition Release 10.2.0.3.0. It seems to work without a problem.
Then I also have a question. Can you define a different port for the Email server? We do not use port 25 and therefor we can not use the Email notification.
Regards,
Marco
Hi,
How can I remove some elements from an existing list(in velocity) in xwiki pages ?
{
Searching the web I found that IteratorTool can be used to remove elements from a list.
ref->http://velocity.apache.org/tools/releases/velocity-tools-1.2/javadoc/index.…
But I am not getting how to use this :(.
}
Thanks and Regards
Roopesh
Hi
In my xwiki, I am displaying the list of documents in a space using the code given below. I want to paginate the listing if the list is very big.
{{{
#foreach($subdoc in $xwiki.getSpaceDocsName("$doc.web"))
- [${subdoc}]
#end
}}}
I came across a macro that does pagination #pagedViewLinks(itemsPerPage totalPages crtPageNumber)
ref -> http://www.xwiki.org/xwiki/bin/view/Code/PagedViewLinksMacro
How can I get this macro work in my case ?
Thanks and Regards
Roopesh
Hi
Is there a way to change the table style? I would like to add a border to
the tables and change the color.
I searched the archives but couldn't find a solution.
Thanks
Shiva
--
View this message in context: http://www.nabble.com/Changing-table-style-tf3647341.html#a10187095
Sent from the XWiki- Users mailing list archive at Nabble.com.
The XWiki development team team is pleased to announce the
availability of the 1.0 RC 2 release.
Go grab it on http://www.xwiki.org/xwiki/bin/view/Main/Download
This release is planned to the last before the final 1.0 release
(unless we find some important bugs in which case there'll be a RC3
release). The 1.0 release is still planned for end of April.
New in this release:
* Several important bugs fixed:
o PDF generation fails if a header text is repeated due to TOC
numbering in headings
o Filter conflict: external links can be rendered two times
o Generated heading id-s are not unique
o Save & Continue button switches you from the Global Rights
tab to the Preferences tab
o Levels and Users properties are saved with an extra empty value
o Fail to import a XAR exported with history
o Calling $xwiki.refreshLinks() do not seem to generate
backlinks for all pages
o XML content inside {code} macro is rendered in the WYSIWYG
editor
o Bug when deleting attachment with accent with XWiki in UTF-8
encoding
o Empty groups on XWiki.XWikiAllGroup, XWiki.XWikiAdminGroup
and XWiki.XWikiGroupTemplate
o Empty rights in Global Rights and in some spaces
o Missing PDF templates for new PDF export configuration feature
o Edition of a user do not show empty fields any more
o Only if in the style macro has icon parameter then apply
stylemacro class for the default value of class parameter.(to show
icon image)
o Do not display the register link if the current user do not
have the register right
o Global access levels are displayed in the local rights editor
o The editor (wiki and wysiwyg) textarea in new skin don't
fill 100% the editor panel
o Cannot create pages with non ASCII characters in the XWiki
standalone distribution
* Document that importing documents will replace the existing
versions and specially explain how to import XWiki user documents
* Improve documentation for the Attachment and Skins pages of the
User Guide
IMPORTANT: XWiki 1.0 RC 2 fixes an important security issue in past
releases where passwords were stored in clear in the database.
Passwords are now hashed. If you are upgrading from a previous
version, any new user or any password update will automatically get
the password hashed. However existing users who do not change their
passwords will still have their passwords in clear in the database.
Thus, we are providing a tool to automatically hash all passwords
from an existing database.
See the full release notes on http://www.xwiki.org/xwiki/bin/view/
Main/ReleaseNotesXWiki10RC2
Enjoy
-The XWiki development team
Thanks Gunter for this. I'm forwarding it to the user list so that
others can help us too or learn from it...
-Vincent
Begin forwarded message:
> From: "Gunter Leeb" <Gunter.Leeb(a)mediaprint.at>
> Date: April 25, 2007 8:05:54 PM CEDT
> To: "Vincent Massol" <vincent(a)massol.net>
> Subject: Re: Antw: XWiki: Testing for WIKI-1139
>
> Hi Vincent,
>
> Configuration:
>
> Just a very basic configuration. We just started a pilot project a
> few month ago.
> - MySQL DB on a Solaris server (copy of our Pilot/Production
> installation)
> - XWikiRC1 with your new jar on my development Windows PC pointing
> to this XWiki DB create for the old XWiki version.
> - Just a bare install run, I haven't even tweaked the skin,
> meaning, I am running with a skin (neither albatros nor dodo).
>
> Testsequence (Without your new jar):
> 1. Create a normal page WebHome in a TestSpace
> 2. Added a link [asdföäüasdf] in the page
> 3. Followed the link from the page and created a child page: The
> name is shortened and changed to "asdf???" - First Bug
> 4. Returning to the parent page: It still show the ? for "page not
> created". But following the link leads to the before created page
> in edit mode(!) - Second/Third Bug
> 5. Calling GUI Rename to "asdfasdföäüasdfasdf" -> claims to be
> successful but clicking on the link from the Rename-successmessage
> leads to the requested document could not be found page (the
> document name suddenly contains again ???) - Fifth Bug (That is
> now the opposite behavior of before: link claims ok, but page does
> not exist)
> 6. Refilling the new page asdfasdföäüasdfasdf with content.
> 7. Calling Rename velocity method (see the AdminTool script that I
> checked in in the CodeZone Snippet)
> 8. This time the rename to "asdfasdföäüasdfasf1" is successful, but
> following the link again leads to an empty page. Somehow the real
> page is lost. - Sixth Bug
> 9. Exported xar contains filenames with ? as well as a filename
> with really bad decoded Unicode characters. - Seventh Bug
>
> With your new jar, I suddenly get a much better behavior! Maybe
> your changes were not picked up correctly.
>
> Rename still fails with Pages that have documents attached that
> contain special characters. Actually, rename fails on various
> issues with attachments in the page (e.g. No row with the given
> identifier exists) It does not seem to like old failed attachments
> with 0 bytes (these actually also cannot be deleted !)
>
>
> Also, I have now rerun the entire script on a totally newly created
> XWiki installation with internal DB directly from the install
> script, again with your jar.
>
> This time I get ok behavior for any new szenarios I try out:
> - everything is working and behaving correctly (links, rename, delete)
> - imported the xar from the old configuration: The importer simply
> ignores documents in the form: "Main.MaCi.Änderungsdienst". Don't
> know whether this is because the Ä or the stupid name (our users
> really screwed up the structure in the old XWiki). - I would
> consider this also a bug. It should at least report that it could
> not import that page - and why.
>
> Now, I feel that pointing XWiki against an old Database might have
> caused this behavior and worse.
>
> Unfortunately, I cannot send you parts of the xar, since I don't
> want to ask for permissions to do that and explain everything :)
> and the data is from some important project.
>
> I hope this helps nevertheless.
>
> Regards,
>
> Gunter
>
>
>>>> Vincent Massol <vincent(a)massol.net> 25.04.2007 16:07 >>>
> Hi Gunter,
>
> On Apr 25, 2007, at 3:51 PM, Gunter Leeb wrote:
>
>> Hi Vincent,
>>
>> I have just tried it, but with the same or similar exception. I have
>> replaced the xwiki.jar and restartet. I would like to send you a log
>> file, also to confirm that it is really picking up all your changes.
>> Would you please send me a log4j.properties configured so you can see
>> all the aspects that you need.
>>
>> Also, maybe it is relevant, but the pages got migrated from an old
>> 0.9.940 (?) installation.
>
> Thanks for trying it. Let's try to debug this... I think we can
> follow 2 leads:
>
> 1) In your patched version of RC1, can you try creating a new page
> with accents and then delete/rename it?
>
> 2) I'd like to reproduce your problem. Could you give me more
> information about your setup (i18n setup, database and container) and
> possibly it would be nice if you could send me a XAR export of your
> wiki (not the whole thing, maybe only a few pages) so that I can try
> it here. Could you also let me know exactly the steps you're
> performing?
>
> Thanks
> -Vincent
>
> PS: I'm ccing the dev list so that others can join us in debuggin
> this.
>
>>
>> Regards,
>>
>> Gunter
>>
>>>>> Vincent Massol <vincent(a)massol.net> 25.04.2007 14:30 >>>
>> Hi Gunter,
>>
>> I'm doing the release of XWiki 1.0 RC2 this afternoon and your bug
>> was one that I wanted to check out before releasing RC2. I don't know
>>
>> if you've seen but I have commented on http://jira.xwiki.org/jira/
>> browse/XWIKI-1139.
>>
>> Do you think you could give it a quick try with the new JAR I've
>> uploaded for you?
>>
>> Thanks a lot
>>
>> -Vincent Massol
>> XWiki release manager
Hi All,
As I read it, when I call a groovy page using parseGroovyFromPage, the
first class designated inside is attached to the returned object (so
calling it subsequently will call methods inside that class).
Does parseGroovyFromPage allow one to have multiple classes per groovy
page (and by extension,how would one plug into a specific class when
initializing the page via parseGroovyFromPage)?
Brandon Esbach
Software Engineer
Tyco Electronics
LoughMahon Technology Park,
Skehard Road,
Blackrock,
Cork, Ireland
Tel +353 21 4808305
I am getting the following error message:
[
Error number 11015 in 11: Exception while exporting
Wrapped Exception: Error number 3202 in 3: Exception while reading document
ApplSpace.CarConsumerClassTemplate
Wrapped Exception: Error number 3212 in 3: Exception while loading object
ApplSpace.CarConsumerClassTemplate
Wrapped Exception: Error number 3212 in 3: Exception while loading property
NumberOfCars of object ApplSpace.CarConsumerClassTemplate
Wrapped Exception: No row with the given identifier exists:
[com.xpn.xwiki.objects.IntegerProperty#
]
I tried to delete the document by calling
...<myxwiki>.xwiki.com/xwiki/bin/delete/ApplSpace/CarConsumerClassTemplate
but it resulted in 'The requested document could not be found.'
Any idea how to delete the document and make the export work? Is there a way
of deselecting/selecting documents for export, similar to the import
feature?
Uwe
--
View this message in context: http://www.nabble.com/Export-throws-exception-in-xwiki-on-farm-tf3643197.ht…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello all,
a few months ago, there was a brief discussion of a similar issue:
http://mail-archive.objectweb.org/xwiki-users/2006-02/msg00102.html
now i am facing a different problem, which might be related to that.
when you add a new space, xwiki asks you to enter a title (the title of the introductory space page) and a text that describes that space. save and view works fine, it automatically appears in the right side panel.
now, if you set appropriate rights to that space, acces to pages belonging to that space is secured via the xwiki built-in authorisation.
the space itself, however, is still visible in the right hand panel. and if unauthorized user click on it, they see an unresolved velocity fragment in the panel.
how can i influence that behaviour? i think, user should not see spaces, that they cannot access in the end, as it blows up the navigation panel on the right hand.
Yours
Thomas Kr�mer
Hi
I tried to follow the Groovy Tutorial given in the developer guide. But I couldn't make it run.
(http://www.xwiki.org/xwiki/bin/view/DevGuide/GroovyClassHelloWorldTutorial)
Instantiating groovy class from velocity threw the foll error :
Error number 4001 in 4: Error while parsing velocity page Main.HelloWorldFromVelocity Wrapped Exception: Invocation of method 'parseGroovyFromPage' in class com.xpn.xwiki.api.XWiki threw exception com.xpn.xwiki.XWikiException: Error number 14001 in 14: Failed compiling groovy script Wrapped Exception: startup failed, script1177398554781.groovy: 5: unexpected token: xwiki @ line 5, column 5.
Instantiating groovy from groovy resulted in the foll error :
Error number 4002 in 4: Error while parsing groovy page Groovy.HelloWorldClassTest
Wrapped Exception: startup failed, Script1.groovy: 3: unexpected token: groovyObject @ line 3, column 68.
(While creating the class I have assigned programming rights to the user who made the class.) What am I doing wrong.
Thanks and Regards
Roopesh
Hi everyone,
I'm tryin' to deploy a private xwiki, so that non-logged people can't
view/edit any page, but the login/register pages.
Moreover, I set a specific registering process : people need a password
to register on the
http://xwiki.pps.jussieu.fr/xwiki/bin/view/XWiki/RegisterNewUser page)
I did the following to set up the wiki (maybe it would be good that I
write some page with more details somewhere on xwiki.org ? :)
i) I added /xwiki/bin/view/XWiki/RegisterNewUser,
/xwiki/bin/view/XWiki/RegisterJS, /xwiki/bin/view/XWiki/Key to set up
this protected register process
ii) In the xwiki global rights : appropriate levels to "allow" for
XWikiAdminGroup and XWikiAllGroup, every level to "deny" for users
"XWikiGuest'
Specific Page Access Rights : "view" level to "allow" for
XWikiGuest on the 3 previous pages named in step i) and to the
/xwiki/bin/edit/XWiki/XWikiUsers class
iii) I edited on the webapp filesystem
$WEBAPPS_HOME//xwiki/skins/xwiki10b1/global.vm file, assuming that my
default skin is xwiki10b1 and replaced the line
#set($regurl = $xwiki.getURL("XWiki.Register", "register"))
with
#set($regurl = $xwiki.getURL("XWiki.RegisterNewUser", "view"))
When all of this is set up, the only problem is that accessing the new
register or login page (as an XWikiGuest so), these two pages don't show
the associated stylesheet.
Some previous posts talked about giving the same specific Page Access
Rights to xwiki/bin/view/XWiki/DefaultSkin, and turning Off the "Always
authenticate on viewing" and "Always authenticate on editing" directives.
Even doing this, my register and login page don't show the stylesheet.
Did I forget anything ?
Thanks.
--
Julien Oix
UFR d'Informatique - Université Paris Diderot
Bureau 5C01 (5ème étage)
175 rue du Chevaleret
75013 PARIS
Tel : +33 (0) 144 278 504
Mobile : +33 (0) 664 392 207
---------------------------------------------
http://www.gnu.org/philosophy/no-word-attachments.html
Hi,
I need to have a private space on my wiki. A space where all pages would be
completly hidden from everybody else except Admins. I did it easily with
Space Rights (XWikiGuest and XWikiAllGroup / view /deny). But the pages can
still be searched. How can I hide their content from the search ?
Thanks,
Antonio
Hi,
I'm not sure if this is a bug in RC1 but I don't remember this behaviour in
1b6 (I have to reinstall it and try). Create a new user "Test", log on as
"Test" and edit his profil. You will only see his name and firstname
attribute but no Blog, Blog Feed, Company, City or Country. I've switched to
advance mode but it's still the same. Am I missing something ?
Antonio
In xwiki documents are created based on a template. I have a slightly different requirement. I have a form (template) and after submitting, the resultant document should show a slightly different content than the template used. For example, if the form had a field "Name" followed by a text field, then on submit, the resultant document should say "Hello, Some name". Is this possible using xwiki?
Second doubt : While creating a document, if I want to track some of the user actions, say I want to store in a database whether the current user has selected a particular checkbox. How can I do this, if it is possible. I am not getting which part of the code, I have to modify.
Regards
Roopesh
hi all,
i created a XAR archive from my existing xwiki db with around 8.5MB in
size.
When i try to import this archive i get a "java heap space out of memory
exception".
is there a way to import xar archives this size? or is there a way to
select
the pages that have to be exported?
i'm using xwiki-1.0-rc1
g,
kris
Kristian Marinkovic
mailto:kristian.marinkovic@porsche.co.at
Porsche Informatik GmbH
Handelszentrum 7,
5101 Bergheim
Tel: +43 (0)662 4670 - 6676
Fax: +43 (0)662 4670 - 16676
http://www.porsche-informatik.at/
Sitz: Salzburg
FN 72830d / Landesgericht Salzburg
DVR: 88439
UID-Nr.: ATU 36773309
Hi -
I'm new here and I just subscribed to the list. I've investigated several of
the Java Wiki packages and I'm focusing on XWiki as the best.
However, the default theme is going to be too heavy for use and I want to
use dodo because the header structure is more like MoinMoin in additiion to
a few other reasons. However, when I use dodo, it seems kind of hard to get
around and seems like some admin portions are even missing - for instance I
can't even figure out how to get back to the default template.
Can you give me any advice? What is the version of XWiki before albatross
where perhaps dod was beetter maintained integrated? Are there other skins
or third-party skins that I should be looking at?
Thanks,
Philip Weaver
Thanks, I'll try it. (I had been using a wiki hosted by
http://www.xwiki.com <http://www.xwiki.com> )
The WYSIWYG editor SEEMS to support actions that are not in the lanuage
help (at the RHS of the screen) - but maybe this is different in RC1,
I'll try it.
-----Original Message-----
From: Vincent Massol [mailto:vincent@massol.net]
Sent: Saturday, April 21, 2007 4:44 AM
To: xwiki-users(a)objectweb.org
Subject: Re: [xwiki-users] has anyone else had touble with the
WYSIWYG editor on the 1.0-beta-3-a version?
Hi Apperson (or Johnson, not sure which is your first name :)),
I'd suggest you try XWiki 1.0 RC1 as we've improve the WYSIWYG
editor handling a lot since B3. If you find any new oddities afterwards
feel free to raise it on the list and file a JIRA issue.
Thanks
-Vincent
PS: By language I assume you mean the wiki syntax and to answer
your question, the WYSIWYG editor should generate valid wiki syntax.
On Apr 20, 2007, at 7:57 PM, Apperson Johnson wrote:
Many of the table controls (e.g. make a cell be 30% of
the width ) seem to get lost on writing.
Also, I see nothing in the underlying language that
supports these constructs.
Is the WYSIWYG functionality running ahead of the
language?
Many of the table controls (e.g. make a cell be 30% of the width ) seem
to get lost on writing.
Also, I see nothing in the underlying language that supports these
constructs.
Is the WYSIWYG functionality running ahead of the language?
Folks,
Folks,
I am trying to export content from one XWiki instance and import into
another instance. After I have uploaded the XAR into the second
instance and select the archive to import, I see no change on the web
page. If I look at the application server log, I see the following set
of error messages. Does anyone have any suggestions about what might be
going on?
Both instances are using the same XWiki build (1.0 Beta-5.2310). I've
already increased the max_allowed_packet to 16M in mysql, and so I think
the archive is getting attached correctly.
Sincerely,
David Kane
11015 in 11: Exception while importing
Wrapped Exception: Error number 0 in 5: Package: Could not find the
package definition
com.xpn.xwiki.XWikiException: Error number 11015 in 11: Exception while
importing
Wrapped Exception: Error number 0 in 5: Package: Could not find the
package definition
at com.xpn.xwiki.web.ImportAction.render(ImportAction.java:95)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:150)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestPr
ocessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:
236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:252)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:173)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodi
ngFilter.java:121)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:202)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:173)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
e.java:213)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
e.java:178)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
:126)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
:105)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.
java:107)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:1
48)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:86
9)
at
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.proc
essConnection(Http11BaseProtocol.java:664)
at
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint
.java:527)
at
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollow
erWorkerThread.java:80)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool
.java:684)
at java.lang.Thread.run(Thread.java:613)
Wrapped Exception:
com.xpn.xwiki.plugin.packaging.PackageException: Error number 0 in 5:
Package: Could not find the package definition
at
com.xpn.xwiki.plugin.packaging.Package.Import(Package.java:338)
at
com.xpn.xwiki.plugin.packaging.PackageAPI.Import(PackageAPI.java:167)
at com.xpn.xwiki.web.ImportAction.render(ImportAction.java:46)
at com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:150)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestPr
ocessor.java:431)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:
236)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:414)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:252)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:173)
at
com.xpn.xwiki.web.SetCharacterEncodingFilter.doFilter(SetCharacterEncodi
ngFilter.java:121)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:202)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:173)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
e.java:213)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
e.java:178)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
:126)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
:105)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.
java:107)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:1
48)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:86
9)
at
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.proc
essConnection(Http11BaseProtocol.java:664)
at
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint
.java:527)
at
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollow
erWorkerThread.java:80)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool
.java:684)
at java.lang.Thread.run(Thread.java:613)
13:31:45,261 ERROR http-8080-Processor20
http://localhost:8080/xwiki/bin/import/XWiki/Import?action=getPackageInf
os&name=Backup.zip&xpage=plain&_=
SimpleLog4JLogSystem:logVelocityMessage:154 - Left side ($!hidecolumns)
of
'==' operation has null value. If a reference, it may not be in the
context. Operation not possible. [line 9, column 21]
13:31:45,474 WARN http-8080-Processor20
http://localhost:8080/xwiki/bin/import/XWiki/Import?action=getPackageInf
os&name=Backup.zip&xpage=plain&_=
MonitorData:log:183 - MONITOR XWiki.Import: 431ms
Hello, I'm new to xwiki and I hava a question.
I logged in as admin, registered new user, log in as that user and now I want to change that user's profile. I went to MyUserName link (on top of Log-out, up-right corner) but what I see is an empty page, not like one in Administrator, where I see the menu on the right, with options to change profile, photo, edit options...
Please help me!
Hi
I found that in xwiki core api, there is a class DocumentSection. Is it possible to use it (or am I permitted to use it) directly to create documents. If yes, how should I use it ?
Regards
Roopesh
Ludovic, XWiki team, and all XWiki users,
Wikimania 2007 conference will be held August 3-5 in Taipei, Taiwan (http://wikimania2007.wikimedia.org/wiki/Main_Page). Are you going?
I grew up in Taipei, I know the place and people. I plan to go. If you are going why not add a meet-up for XWiki? I am a regular/heavy XWiki user, I would like to meet with you in person. It is also possible for me to help arrange some meetings with Taiwan companies and talents. Any interest?
Best,
Wei-hsing
The XWiki development team team is pleased to announce the
availability of the 1.0 RC 1 release.
Go grab it on http://www.xwiki.org/xwiki/bin/view/Main/Download
This release is planned to the last before the final 1.0 release
(unless we find some important bugs in which case there'll be a RC2
release). The 1.0 release is still planned for end of April.
New in this release:
* Lots of bugs fixed
* Updated French translation
* New translation: Simplified Chinese and Russian
* Search is now case insensitive in the default Wiki for all
DBMS (it was working fine for MySQL previously)
* Ability to navigate backlinks documents on the Rename page
* Lucene plugin is now working
* Fixed #skype macro which is now using Skype's Presence Service
(was previously using jyve.com which is not working anymore)
* New #pagedViewLinks macro that displays links to the first,
previous, next and last pages in a paged view
* Lots of Macros have been documented on the Macro page in the
Code Zone
* Non ASCII chars can now be used in document names and
attachments (This requires correct encoding configuration)
* Superadmin is set to use the Advanced editing mode by default
(was in Simple mode)
* {style} macro now supports border and icon attributes
* Added support for Oracle
See the full release notes on http://www.xwiki.org/xwiki/bin/view/
Main/ReleaseNotesXWiki10RC1
Enjoy
-The XWiki development team
Hi
Can we make "Comments" functionality in xwiki editable? Can we restrict the delete option in a "Comment" to be enabled to the administrator only.
Regards
Roopesh
Hi,
Is there a way to rename an entire space with all references updated?
Or, is there a way to move a number of pages from one space to another
with all references updated?
In our experimental XWiki installation we dropped all pages into Main.
Now, I intend to structure the site a little differend and I would like
to move a number of pages from one space to another or rename an entire
space.
I am happy to do this also in a xar if there are tools, scripts etc.
available to support me with a consistent replacing.
Regards,
Gunter
-------------------------------------------------------------------------------
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail
irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und
vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte
Weitergabe dieser Mail ist nicht gestattet.
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.
-------------------------------------------------------------------------------
hey,
i want to give XWikiAllGroup delete rights...
I added XWikiAllGroup with level delete, edit and view in the global rights manager but there is still no delete button in the topbar for any user of XWikiAllGroup. there are also no conflicting right-entrys in the space rights manager...
is there anything i forgot to attend?
Hi
Am using the latest beta version with panels on the right. When i edit a
page however, a big portion of the right hand side screen is taken up by the
panel, with Xwiki document information and the parent and tag information.
This is a problem, especially when typing long paragraphs or with wide
images, since i have to constantly scroll to see what i have typed.
Is this by design?
I have attached the screenshot.
Thanks and looking forward to the 1.0 release,
Shiva http://www.nabble.com/file/7900/MWSnap017.jpg
--
View this message in context: http://www.nabble.com/Reduced-window-area-for-editing-tf3587944.html#a10026…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Greetings all,
I would like to use the xwiki system as a help system. The idea is that I
have a system where on each page (defined by an unique url, like
listContacts.html) there is a help icon. When clicking on the icon the user,
will be directed to the xwiki system with the parameter the url that the
user was on. This parameter should then be looked up in the xwiki system to
see if there is a page for this and shown to the user if exists or asked if
he/she wants to make a page.
How should I achieve this? I am an experienced java programming so some
hacking is no problem, however at the moment I dont have a clue how to
handle this using xwiki.
Any tips or pointers are appreciated.
Regards
Ronald
--
View this message in context: http://www.nabble.com/xwiki-as-help-system-and-external-mappings-tf3565607.…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi
I am a relative newcomer to Xwiki, and still getting used to Classes,
Objects etc. However, i have an urgent need for a knowledge base that is
running on Xwiki.
In each space, i want any new page created to have the same structure. For
ex:
1 XYZ Application
Introduction in to XYZ in a few sentences
1.1 How to use XYZ
1.1.1 Login
1.1.1 Edit
1.1.1 Save
1.1 Troubleshooting
1.1.1 Login Not working
1.1.1 Save not working
1.1 References
Once a new page in this space is created, this code will be available by
default. The user then modifies content retaining the structure.
This should be possible but i am not able to figure out how. These pages
don't have any forms so am not sure whether i should use the includeform
macro.
Any pointers to existing documentation would be very helpful.
Thanks
Shiva
--
View this message in context: http://www.nabble.com/Document-Templates-tf3585218.html#a10018588
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi people,
I am using XWiki with LDAP authentication, and its fine, but I can't figure out how to make the authorization process.
Inside xwik.cfg I have a key (xwiki.authentication.ldap.fields_mapping) where I make the ldap mapping for xwiki, so I map xwiki "name" for my ldap return key and so one, what I need to know is what's the xwiki key that I have to map my ldap role field?
Or I need to use something else to configure Roles?
If someone has the link for the doc that explains it, please send me.
Please if anyone don't understand my question, tell me, I will try to express myself better :-)
Regards,
Igor Regis
Hi
I am new to xwiki. I am facing a problem with composite documents. I have created 3 classes and its classsheets with a textarea in each class (classes A, B, C) and I included all the three objects in another class D's template and included the forms . Now if I edit any documents of D class then I am able to change the whole document (the part of A, B, C). But I want to do enable section edit the part of A, B, C separately. (One doubt : Is this the correct way of creating composite document?)
How can I do this?
(Here I am creating documents of type D and thus I am able to edit a document class D. To edit the section of classsheet B there should be a document present in B, I guess. In my case the document will only be in class D.)
Can anyone please guide me the exact way to do this.
Thanks,
Roopesh
So I opened http://jira.xwiki.org/jira/browse/XWIKI-1018
with a patch that allowed for excluding pages from the RSS feed in a
manner similar to Panels.Navigation (i.e. edit the WebRssCode page to
remove pages and spaces).
Vincent came back with:
"""
Thanks Paul. I looked at the patch and I have one issue with it: what
about users who want to see those pages/spaces?
For example, I rely on my RSS feed to verify xwiki.org every day and I
want to see if someone tags/modifies one of those pages.
Also I think most if not all admins will want to see them. I'd rather we
have a more generic solution. Some ideas:
* A RSS wizard that lets users pick what they want to see
* Possibly also some special tag (like "norss") that removes pages
* tagged with it from the RSS feed
At the very least I think we should modify the patch to let admins have
a RSS feed of all files.
"""
Now the wizard idea is pretty much covered by
http://www.xwiki.org/xwiki/bin/view/Code/PersonalRSSFeedApplication
and I think the norss tag idea has some merit but a way still needs to
be made to block out entire spaces (for example XWiki).
I tried adding "$hasadmin" to the code as that seems like the simplest
way to solve the site admins wanting to see all edits but that just
broke the feed (anyone who's more awake able to debug it?).
Another option would be to provide a third feed (but this is starting
to seem excessive to me):
* Blogs
* Pages without the admin pages
* All pages
What do others think?
Paul
I used the 1.0-beta-6 WAR and changed the hibernate config file ---- I don't
believe a lack of a db connection would cause this error??
The Error: The requested resource (/xwiki/bin/view/Main/WebHome) is not
available.
May I suggest that the postgres connection should look like this (at least
on windows with port 5432 DEFAULT)
<property
name="connection.url">jdbc:postgresql://localhost:5432/wikidb</property>
--
View this message in context: http://www.nabble.com/Install-Error-%281.0-beta-6---Postgres-on-Tomcat-6.0.…
Sent from the XWiki- Users mailing list archive at Nabble.com.
With intermediate tech skills, I have loaded mediawiki on w2k3 with
IIS(WIMP). Also exteneded Mediawiki to use Oblix Single sign-on
authentication.
One year later, very few in out fortune 500 intranet use it due wiki
markup (not wysiwyg editting) and inability to enforce group privacy.
Create artcles that can only be viewed by few, then later viewed
anonymously.
Can I accomplish task with similar skill level on same w2k3/IIS box?
<this email duplicates first attempt through nabble that never made it
to the maillist archive>
No! What I mean is ldap over a secure connection using ssl.
There are two JIRA tickets for this issue: XWIKI-865 and XWIKI-805
Bye
Frank
>
>Are you asking whether the new module allows authenticating a user using
>multiple LDAP directories? In this case the answer is no. I haven't thought
>about chaining multiple LDAP registries. Just one LDAP and, as a fall back,
>the XWiki database. May not be to great an effort, though. Why would you want
>to do that (and not link the directories directly)?
>
>Gunter
>
>>>> Frank Häfemeier <frank(a)haefemeier.net> 12.04.2007 20:09:46 >>>
>>I have here the solution to all LDAP feature request (at least the ones
>>I know of).
>>
>>Its been submitted as JIRA issue XWIKI-1079.
>>
>>This component is a substitude for
>>com.xpn.xwiki.user.impl.LDAP.LDAPAuthServiceImpl
>>and is configured primarily through xwiki.cfg.
>>
>>The new features and changes:
>>
>Does the new implementation support ldaps?
>
>Bye
> Frank
>
>
>-------------------------------------------------------------------------------
>
>Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte
>Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail
>irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und
>vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte
>Weitergabe dieser Mail ist nicht gestattet.
>
>The information transmitted is intended only for the person or entity to
>which it is addressed and may contain confidential and/or privileged
>material. Any review, retransmission, dissemination or other use of, or
>taking of any action in reliance upon, this information by persons or
>entities other than the intended recipient is prohibited. If you received
>this in error, please contact the sender and delete the material from any
>computer.
>-------------------------------------------------------------------------------
>
>
>
>
>
>
>--
>You receive this message as a subscriber of the xwiki-users(a)objectweb.org
>mailing list.
>To unsubscribe: mailto:xwiki-users-unsubscribe@objectweb.org
>For general help: mailto:sympa@objectweb.org?subject=help
>ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Hi Vincent,
thanks for your answer.
I found the patch you mentioned and I made the most as described.
What is about the java-files? I do not now much about, but where I have to save them? And do I have to compile them?
Maybe someone can tell me, which pages I can import without errors?
Because before I try to import, the most works fine!
Kind regards,
Birgit
*****************************************************************
Externe Mitarbeiterin - Oracle Datenbankadministration
Kabel Deutschland Breitband Services GmbH
Germaniastr. 14-17
12099 Berlin
Telefon: +49 (0) 30 / 4193 - 2851
E-Mail: mailto: Birgit.Arndt(a)kabeldeutschland.de <mailto:Birgit.Arndt@kabeldeutschland.de>
Internet: http://www.kabeldeutschland.de/
-----Ursprüngliche Nachricht-----
Von: Vincent Massol [mailto:vincent@massol.net]
Gesendet: 13 April 2007 14:41
An: xwiki-users(a)objectweb.org
Betreff: [WW Spam: medium] Re: [xwiki-users] Problems with import XAR File
Hi Birgit,
On Apr 13, 2007, at 2:05 PM, Arndt, Birgit wrote:
Dear all,
I installed Tomcat 5.5.23 and the XWIKI 1.0. beta 6 in Oracle 10g on WinXP.
Now I want to import some pages, so I downloaded the XAR File.
When I point my browser to http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences <http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences>
All works, so I can select the downloaded XAR-file and also select all files.
But when I start the import, following errors appear in
a.) xwiki.log:
13:47:47,585 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem - Left side ($request.action) of '==' operation has null value. If a reference, it may not be in the context. Operation not possible. [line 9, column 22]
13:48:09,226 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem - Left side ($request.action) of '==' operation has null value. If a reference, it may not be in the context. Operation not possible. [line 9, column 22]
These 2 above are not errors and I've fixed them in RC1.
13:48:24,725 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem - Method getDocument threw exception for reference $xwiki in template at [9,17]
13:48:25,554 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem - Method getDocument threw exception for reference $xwiki in template at [9,17]
These I don't know...
b.) stdout.log
13:47:47,585 ERROR http-8080-Processor23 http://localhost:8080/xwiki/bin/import/XWiki/Import?editor=import&space=XWi… SimpleLog4JLogSystem:logVelocityMessage:154 - Left side ($request.action) of '==' operation has null value. If a reference, it may not be in the context. Operation not possible. [line 9, column 22]
Same as above this is not important and I've fixed in RC1.
c.) in my browser:
see attachement
What can I do? Or where is the error? ;-)
You do know that Oracle is not currently supported? There's a patch in JIRA to support it but it's not been applied yet. It would be nice if you could try it and let us know if it works as we were waiting for someone using Oracle to test it.
It's in http://jira.xwiki.org/jira/browse/XWIKI-838. Check the last comment from Mikhail and the patch*838* files.
Thanks
-Vincent
--
Kabel Deutschland bietet Ihnen Fernsehen, Internet und Telefonie aus einer Hand. Informieren Sie sich ueber unsere Produkte unter www.kabeldeutschland.de
Diese E-Mail und etwaige Anhaenge enthalten vertrauliche und/oder rechtlich geschuetzte Informationen. Wenn Sie nicht der richtige Adressat sind, benachrichtigen Sie bitte den Absender und vernichten Sie anschliessend diese Mail und die Anlagen.
--
Kabel Deutschland GmbH
Betastr. 6-8
85774 Unterfoehring
Geschaeftsfuehrer: Christof Wahl, Dr. Manuel Cubero del Castillo-Olivares, Herbert R. Hribar, Paul Thomason
Vorsitzender des Aufsichtsrats: Prof. Dr. Heinz Riesenhuber
Handelsregister: Amtsgericht Muenchen HRB 145 837, Sitz der Gesellschaft: Unterfoehring
------------
Kabel Deutschland Vertrieb und Service GmbH & Co. KG
Betastr. 6-8
85774 Unterfoehring
Handelsregister: Amtsgericht Muenchen HRA 83902, Sitz der Gesellschaft: Unterfoehring
Komplementaerin: Kabel Deutschland Verwaltungs GmbH, Amtsgericht Muenchen, HRB 145 835, Sitz der Gesellschaft: Unterfoehring
Geschaeftsfuehrer: Christof Wahl, Dr. Manuel Cubero del Castillo-Olivares, Herbert R. Hribar, Paul Thomason
------------
Kabel Deutschland Breitband Services GmbH
Betastr. 6-8
85774 Unterfoehring
Geschaeftsfuehrer: Christof Wahl, Dr. Manuel Cubero del Castillo-Olivares, Herbert R. Hribar, Paul Thomason
Handelsregister: Amtsgericht Muenchen HRB 122 932, Sitz der Gesellschaft: Unterfoehring
------------
Dear all,
I installed Tomcat 5.5.23 and the XWIKI 1.0. beta 6 in Oracle 10g on
WinXP.
Now I want to import some pages, so I downloaded the XAR File.
When I point my browser to
http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences
<http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences>
All works, so I can select the downloaded XAR-file and also select all
files.
But when I start the import, following errors appear in
a.) xwiki.log:
13:47:47,585 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem
- Left side ($request.action) of '==' operation has null value. If a
reference, it may not be in the context. Operation not possible. [line
9, column 22]
13:48:09,226 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem
- Left side ($request.action) of '==' operation has null value. If a
reference, it may not be in the context. Operation not possible. [line
9, column 22]
13:48:24,725 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem
- Method getDocument threw exception for reference $xwiki in template
at [9,17]
13:48:25,554 [http-8080-Processor23] ERROR log.SimpleLog4JLogSystem
- Method getDocument threw exception for reference $xwiki in template
at [9,17]
b.) stdout.log
13:47:47,585 ERROR http-8080-Processor23
http://localhost:8080/xwiki/bin/import/XWiki/Import?editor=import&space=
XWiki SimpleLog4JLogSystem:logVelocityMessage:154 - Left side
($request.action) of '==' operation has null value. If a reference, it
may not be in the context. Operation not possible. [line 9, column 22]
c.) in my browser:
see attachement
What can I do? Or where is the error? ;-)
Hope, that anybody can help me!
Kind regards,
Birgit
*****************************************************************
Externe Mitarbeiterin - Oracle Datenbankadministration
Kabel Deutschland Breitband Services GmbH
Germaniastr. 14-17
12099 Berlin
Telefon: +49 (0) 30 / 4193 - 2851
E-Mail: mailto: Birgit.Arndt(a)kabeldeutschland.de
<mailto:Birgit.Arndt@kabeldeutschland.de>
Internet: http://www.kabeldeutschland.de/
--
Kabel Deutschland bietet Ihnen Fernsehen, Internet und Telefonie aus einer Hand. Informieren Sie sich ueber unsere Produkte unter www.kabeldeutschland.de
Diese E-Mail und etwaige Anhaenge enthalten vertrauliche und/oder rechtlich geschuetzte Informationen. Wenn Sie nicht der richtige Adressat sind, benachrichtigen Sie bitte den Absender und vernichten Sie anschliessend diese Mail und die Anlagen.
--
Kabel Deutschland GmbH
Betastr. 6-8
85774 Unterfoehring
Geschaeftsfuehrer: Christof Wahl, Dr. Manuel Cubero del Castillo-Olivares, Herbert R. Hribar, Paul Thomason
Vorsitzender des Aufsichtsrats: Prof. Dr. Heinz Riesenhuber
Handelsregister: Amtsgericht Muenchen HRB 145 837, Sitz der Gesellschaft: Unterfoehring
------------
Kabel Deutschland Vertrieb und Service GmbH & Co. KG
Betastr. 6-8
85774 Unterfoehring
Handelsregister: Amtsgericht Muenchen HRA 83902, Sitz der Gesellschaft: Unterfoehring
Komplementaerin: Kabel Deutschland Verwaltungs GmbH, Amtsgericht Muenchen, HRB 145 835, Sitz der Gesellschaft: Unterfoehring
Geschaeftsfuehrer: Christof Wahl, Dr. Manuel Cubero del Castillo-Olivares, Herbert R. Hribar, Paul Thomason
------------
Kabel Deutschland Breitband Services GmbH
Betastr. 6-8
85774 Unterfoehring
Geschaeftsfuehrer: Christof Wahl, Dr. Manuel Cubero del Castillo-Olivares, Herbert R. Hribar, Paul Thomason
Handelsregister: Amtsgericht Muenchen HRB 122 932, Sitz der Gesellschaft: Unterfoehring
------------
Hi,
I have now a reproducable issue around the "XWikiPreferences" page.
This issue is around for all beta releases so far (seen with B4,B5 and
B6). On a fresh install, if you chage to dodo skin in xwiki.cfg and then
try to go to the /xwiki/bin/admin/XWiki/XWikiPreferences page you just
get a "Hello". This is bad especially when you want to import or export
something.
Steps to reproduce:
1. Install B6
2. run, test
3. change xwiki.cfg to dodo & restart
4. change skin to MySkin
5. go to http://.../xwiki/bin/admin/XWiki/XWikiPreferences
Am I doing something wrong, or is this a bug with dodo that slipped
through?
Gunter
-------------------------------------------------------------------------------
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail
irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und
vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte
Weitergabe dieser Mail ist nicht gestattet.
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.
-------------------------------------------------------------------------------
Hello all,
I'm trying to start xwiki as a war application within enhydra5.1
framework.
There is a problem during startup.
I have a ClassNotFoundException on a struts class:
2007-04-04 15:56:43,277: xwiki,INFO,: Configuring web service using
"default"
2007-04-04 15:56:43,407: xwiki,INFO,: Configuring web service using
"file:/home/mangeot/xwiki/WEB-INF/web.xml"
2007-04-04 15:56:47,865: xwiki,INFO,: default: init
2007-04-04 15:56:47,867: xwiki,INFO,: jsp: init
2007-04-04 15:56:47,920: xwiki,INFO,: action: init
2007-04-04 15:56:47,930:
org.apache.struts.util.MessageResourcesFactory,ERROR,:
MessageResourcesFactory.createFactory
java.lang.ClassNotFoundException:
org.apache.struts.util.PropertyMessageResourcesFactory
I checked the strusts.jar file and it contains the
PropertyMessageResourcesFactory:
749 Thu Mar 09 15:30:48 CET 2006 org/apache/struts/util/
PropertyMessageResourcesFactory.class
I don't know where is the problem.
I googled the Web but did not find any useful help.
Any ideas?
Thank you in advance for your help.
Mathieu
Mathieu MANGEOT-NAGATA
Maître de conférence en Informatique
IUT de Chambéry, Université de Savoie
F-73376 LE BOURGET DU LAC CEDEX
Tel: +33 4 79 75 81 89
>I have here the solution to all LDAP feature request (at least the ones
>I know of).
>
>Its been submitted as JIRA issue XWIKI-1079.
>
>This component is a substitude for
>com.xpn.xwiki.user.impl.LDAP.LDAPAuthServiceImpl
>and is configured primarily through xwiki.cfg.
>
>The new features and changes:
>
Does the new implementation support ldaps?
Bye
Frank
I m using the XWiki farm and although I am stoked about the capabilities to
add properties, create classes and use document as objects I still lack the
complete understanding of the inner relationships and have to interpret
existing code examples, the API docu and use trial and error for making
(slow) progress. Here are two categories of questions, I intentionally did
not post as separate items, since others might encounter the same:
Category Bigger Picture:
- I started creating my application using the current release on the
xwiki.com farm, how much rewriting do I have to do after XWIKI V1.0 will be
released? None I assume, but I want to make sure.
- How is the visibility of references across spaces/pages? I assume
references created locally on a page (e.g., $mydoc) stay local, means if you
want for example work with one document on the menu and the toolbar and the
main page, you have to create a kind of administrator object, which can be
used across the xwiki or space. What is the recommended practice here?
- How is the visibility of Objects across pages? I noticed that a link to
another page from the menu page had the question mark behind it, if the home
page was shown on the main page, but was available, if one of my own pages
are on the main page. This suggests, although the menu and the home page
have the same parent (do they?) and my own created page shares only the same
root (xwiki I assume) with the menu page that there are mechanisms I don't
understand. Please help
- I would volunteer to create a docu about how to use the API, if I
understood the inner guts of it. When is a documentation planned with some
examples, who is in charge of it and could help?
- Are there any recommended practices for how to use HTML constructs and the
implication on how the panels and the main page look like then? E.g., using
frame, iframe
- How to I archive the code I created? Any export/import mechanism
available?
Category: How to do ....
- How do I change a value of a property of an object and commit it so it is
stored in the database?
- How do I use the property "Database List Class", it seems very powerful in
creating dynamic lists of values, references to other objects etc. but I am
unable to decipher how to use it.
-How do I create Classes inheriting other Classes I created?
Thanks in advance
Uwe
--
View this message in context: http://www.nabble.com/Xwiki.com-API-stability-and-Class-Object-model-tf3524…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi everyone,
I have here the solution to all LDAP feature request (at least the ones
I know of).
Its been submitted as JIRA issue XWIKI-1079.
This component is a substitude for
com.xpn.xwiki.user.impl.LDAP.LDAPAuthServiceImpl
and is configured primarily through xwiki.cfg.
The new features and changes:
- Separate LDAP login and authentication validation
- An LDAP group membership is first checked before a user is
authenticated against LDAP
- LDAP Groups are handled recursivly (groups in groups)
- LDAP Groups and their members are cached with an expiration
- LDAP attributes can update XWiki user attributes configurable at
create time or on every login
- LDAP group membership can be sync'ed with XWiki group membership
- If authentication with LDAP fails it still will try to authenticate
against the XWiki DB
- detailed comments in xwiki.cfg
- pretty much every detail of the behavior can be configured in
xwiki.cfg
- as far as I can see, all valuable features from the old
LDAPAuthServiceImpl are reimplemented (except for LDAP bind being
sufficent for login implemented by the check_level configuration) - I
used as much code from this class as possible.
- I have tried to implement all the feature requests about LDAP that I
have heard about
- any LDAP attribute can be used representing the XWiki's user name
Known Issues:
- joining an XWiki group or removing someone from a group does not
appear to work correctly
- creating a user appears incomplete to me
I tested against OpenLDAP and Novell eDirectory.
I would need help from experienced XWiki developers.
I would like to ask for a code-read, verification of how the module is
using the XWiki APIs and testing in various environments.
Most of all, I am looking for feedback and tips to finish up this
module.
Regards,
Gunter
-------------------------------------------------------------------------------
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail
irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und
vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte
Weitergabe dieser Mail ist nicht gestattet.
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.
-------------------------------------------------------------------------------
Hi,
How does the section edit in XWiki works? I created an application similar
to FAQ application of XWiki. Section edit is enabled for the class sheets
but not for the documents that I created using the application(that I made).
Why like that?
Is the section editing for class sheets and documents different. There was a
FAQ which says section editing for documents is not yet there. But I can see
section editing enabled for many of the pages on XWiki site.
Please note that I enabled the section edit in the XWiki configuration file
and I have edit rights on the document. Still section edit's not there.
Thanks & Regards,
Rajendra Prasad Murakonda.
http://digitalglue.in/
Hi,
I new on this list and I'm not a native English speaker (so sorry by any misspelling).
I would like to know if its possible or if some one have setup a multiple xwiki contexts in only one data base model. I didn't find anything about it on FAQ.
So the idea is to have more than one xwiki running in one o more servers accessing the same data base; but considering that each xwiki "instance" will have its own data, menu layouts and so.
I have found this FAQ http://www.xwiki.org/xwiki/bin/view/FAQ/HowToSetupVirtualWikis
but it treats about multiple xwiki instances accessing different data bases.
Please, any help will be very welcome. If someone knows about any docs that I can read...
Best regards,
Igor Regis