2012/8/28 <users-request(a)xwiki.org>:
> Send users mailing list submissions to
> users(a)xwiki.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.xwiki.org/mailman/listinfo/users
> or, via email, send a message with subject or body 'help' to
> users-request(a)xwiki.org
>
> You can reach the person managing the list at
> users-owner(a)xwiki.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of users digest..."
>
>
> Today's Topics:
>
> 1. custom athentication issues. (Bob Egolf)
> 2. Start point to update the XWiki Editor in XWiki
> (Boudjelda Mohamed Said)
> 3. Re: Start point to update the XWiki Editor in XWiki
> (Marius Dumitru Florea)
> 4. selected the informations tab as default on every pages
> (Joseph-Andre Guaragna)
> 5. Re: selected the informations tab as default on every pages
> (Vincent Massol)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 27 Aug 2012 08:20:48 -0400
> From: Bob Egolf <egolfb(a)gmail.com>
> To: XWiki Users <users(a)xwiki.org>
> Subject: [xwiki-users] custom athentication issues.
> Message-ID:
> <CAMH_rHihMREAZtjy890af7Z1ETp9QiWU4xQ6X3aEvKhEbsKkPg(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Good morning,
>
> This is a duplicate post of one I sent to the devs list in case this is a
> better place for the question.
>
> I am writing a custom authentication class following notes from
> http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Authentication
> and the sample given in
> http://bodez.wordpress.com/2008/10/15/xwiki-user-authentication-with-oracle…
>
>
> The class is written and I can see the Remote Authentication is called and
> returns just fine and my method returns a new XWikiUser
>
> however, in my logs I see the checkAuth being fired twice, once with the
> j_username = entered username... but the second time it is fired set to null
> and is always returning a login failure.
>
> Here is my checkAuth method:
> public XWikiUser checkAuth(XWikiContext context) throws XWikiException {
>
> log.debug("ARFSSOAuthServiceImpl.checkAuth");
>
> String user = getRemoteUser(context);
>
> if (user==null || user.equals("")){
> log.error("SSOAuthServiceImpl: User cannot be authenticated
> (REMOTE_USER is null)");
> // TODO: redirect login.
> return null;
> }else{
> log.warn("ARFSSOAuthServiceImpl: User " + user + " has been authenticated");
> this.createUser(user, context);
> user = "XWiki." + user;
> }
> log.warn("SSOAuthServiceImpl: authentication successful context.setUser " +
> user);
> context.setUser(user);
> return new XWikiUser(user);
>
> }
>
>
> Here is the log from a single post of the credentials:
> 2012-08-25 11:11:30,285 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFSSOAuthServiceImpl - sso Auth check auth before super
> 2012-08-25 11:11:30,287 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFSSOAuthServiceImpl - request j_username = testuser
> 2012-08-25 11:11:30,287 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFSSOAuthServiceImpl - request j_password = testpwd
> 2012-08-25 11:11:30,287 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFWebAuthenticator - processLogin j_username = testuser
> 2012-08-25 11:11:30,288 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFWebAuthenticator - processLogin j_password = testpwd
> 2012-08-25 11:11:30,289 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> net.ARFHttpClient - ARFHttpClient post request to:
> http://localhost.com/test.php
> 2012-08-25 11:11:30,417 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> net.ARFHttpClient - ARFHttpClient response string:
> status=0|firstname=Test|lastname=User
> 2012-08-25 11:11:30,418 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFWebAuthenticator - processLogin... webresponse status = 0
> 2012-08-25 11:11:30,421 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFWebAuthenticator - convertARFResponseToUsername token =
> TestUser
> 2012-08-25 11:11:30,421 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFSSOAuthServiceImpl - ARFSSOAuthServiceImpl: User TestUser has
> been authenticated
> 2012-08-25 11:11:30,422 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFSSOAuthServiceImpl - ARFSSOAuthServiceImpl.createUser: User
> TestUser before find.
> 2012-08-25 11:11:30,427 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFSSOAuthServiceImpl - ARFSSOAuthServiceImpl.createUser:
> XwikiUser XWiki.TestUser after find.
> 2012-08-25 11:11:30,427 [
> http://zzzzzzz/xwiki/bin/loginsubmit/XWiki/XWikiLogin] WARN
> sso.ARFSSOAuthServiceImpl - SSOAuthServiceImpl: authentication
> successful context.setUser XWiki.TestUser
> 2012-08-25 11:11:31,080 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN sso.ARFSSOAuthServiceImpl - sso Auth check auth before super
> 2012-08-25 11:11:31,081 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN sso.ARFSSOAuthServiceImpl - request j_username = null
> 2012-08-25 11:11:31,081 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN sso.ARFSSOAuthServiceImpl - request j_password = null
> 2012-08-25 11:11:31,081 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN sso.ARFWebAuthenticator - processLogin j_username = null
> 2012-08-25 11:11:31,081 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN sso.ARFWebAuthenticator - processLogin j_password = null
> 2012-08-25 11:11:31,081 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN net.ARFHttpClient - ARFHttpClient post request to:
> http://localhost.com/test.php
> 2012-08-25 11:11:31,159 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN net.ARFHttpClient - ARFHttpClient response string:
> status=100
> 2012-08-25 11:11:31,159 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> WARN sso.ARFWebAuthenticator - processLogin... webresponse status
> = 100
> 2012-08-25 11:11:31,159 [http://zzzzzzz/xwiki/bin/view/Main/?srid=HNnJrnSa]
> ERROR sso.ARFSSOAuthServiceImpl - SSOAuthServiceImpl: User cannot be
> authenticated (REMOTE_USER is null)
> 2012-08-25 11:11:31,810 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN sso.ARFSSOAuthServiceImpl - sso Auth check auth before super
> 2012-08-25 11:11:31,810 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN sso.ARFSSOAuthServiceImpl - request j_username = null
> 2012-08-25 11:11:31,810 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN sso.ARFSSOAuthServiceImpl - request j_password = null
> 2012-08-25 11:11:31,810 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN sso.ARFWebAuthenticator - processLogin j_username = null
> 2012-08-25 11:11:31,810 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN sso.ARFWebAuthenticator - processLogin j_password = null
> 2012-08-25 11:11:31,811 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN net.ARFHttpClient - ARFHttpClient post request to:
> http://localhost.com/test.php
> 2012-08-25 11:11:31,877 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN net.ARFHttpClient - ARFHttpClient response string:
> status=100
> 2012-08-25 11:11:31,878 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN sso.ARFWebAuthenticator - processLogin... webresponse status
> = 100
> 2012-08-25 11:11:31,878 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> ERROR sso.ARFSSOAuthServiceImpl - SSOAuthServiceImpl: User cannot be
> authenticated (REMOTE_USER is null)
> 2012-08-25 11:11:32,041 [
> http://zzzzzzz/xwiki/bin/login/XWiki/XWikiLogin?srid=HNnJrnSa&xredirect=%2F…]
> WARN internal.DefaultVelocityEngine - Deprecated usage of method
> [com.xpn.xwiki.api.XWiki.parseMessage] in /templates/login.vm@28,33
>
>
>
> Any help is appreciated,
> Bob
>
> XWiki Version: XWiki Enterprise 3.0-rc-1.35909
>
> Do I need to upgrade to get this functionality?
>
>
> ------------------------------
>
> Message: 2
> Date: Mon, 27 Aug 2012 23:48:53 +0100
> From: Boudjelda Mohamed Said <bmscomp(a)gmail.com>
> To: users(a)xwiki.org
> Subject: [xwiki-users] Start point to update the XWiki Editor in XWiki
> Message-ID:
> <CAO60PA2Q-sj0cz715D+JwrMQdveOJCGqtnDb77dSwSVE4WxWtQ(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi Every one
> I need to update XWiki Editor , but I cannot find a starting point for
> that, how shall I do it, just to enable the tabulation coz when I press tab
> key the focus is changed to the save buttons
>
> Thanks
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 28 Aug 2012 08:55:11 +0300
> From: Marius Dumitru Florea <mariusdumitru.florea(a)xwiki.com>
> To: XWiki Users <users(a)xwiki.org>
> Subject: Re: [xwiki-users] Start point to update the XWiki Editor in
> XWiki
> Message-ID:
> <CALZcbBaK3ZG6MFQpX+S9bUEogHUp8RCt=VGWHDFXPqPYaK2qsw(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I suppose you are referring to the WYSIWYG editor and by "update" you
> mean taking the editor from a newer version of XWiki Enterprise and
> using it on an older version. Is that so? Then it might not work
> because the newer version of the editor requires sometimes newer APIs
> that are provided only by the newer version of XWiki Enterprise.
> Anyway, are you sure the tab issue is fixed in the newer version? I
> see http://jira.xwiki.org/browse/XWIKI-6123 is still open, for Chrome,
> and I didn't commit any fix for it. So unless the browser behaviour
> has changed, in which case you don't need to upgrade the editor, the
> problem should still be present in the last version of XWiki
> Enterprise.
>
> But for the record, upgrading the WYSIWYG editor code has two steps:
> * upgrade the WYSIWYG editor jars in WEB-INF/lib (xwiki-platform-wysiwyg-*)
> * replace the resources/js/xwiki/wysiwyg/xwe folder (delete and copy
> the new one)
>
> Hope this helps,
> Marius
>
> On Tue, Aug 28, 2012 at 1:48 AM, Boudjelda Mohamed Said
> <bmscomp(a)gmail.com> wrote:
>> Hi Every one
>> I need to update XWiki Editor , but I cannot find a starting point for
>> that, how shall I do it, just to enable the tabulation coz when I press tab
>> key the focus is changed to the save buttons
>>
>> Thanks
>> _______________________________________________
>> users mailing list
>> users(a)xwiki.org
>> http://lists.xwiki.org/mailman/listinfo/users
>
>
> ------------------------------
>
> Message: 4
> Date: Tue, 28 Aug 2012 09:10:41 +0200
> From: Joseph-Andre Guaragna <joseph-andre(a)rdmo.com>
> To: users(a)xwiki.org
> Subject: [xwiki-users] selected the informations tab as default on
> every pages
> Message-ID:
> <CAMGKkWU4E9Fc84V887PPvLnQHVmzyERx_o=Z5WELNQh63xgx7g(a)mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hello all,
>
> I just start using xwiki and as every beginers I am stuck on seting up
> a tiny detail.
>
> My problem is the following: I would like the tab informations on
> every page to be the default selected tab.
> I try to look at the forum, and other related pages concerning xwiki
> configuration and all I founded is how to disable tabs but not modify
> the basic selected tab.
>
> I sure it is simple, but I don not know where to add the modification.
> Thanks for the help.
>
>
> Best regards
>
> Joseph-Andr? GUARAGNA
>
>
> ------------------------------
>
> Message: 5
> Date: Tue, 28 Aug 2012 09:37:50 +0200
> From: Vincent Massol <vincent(a)massol.net>
> To: XWiki Users <users(a)xwiki.org>
> Subject: Re: [xwiki-users] selected the informations tab as default on
> every pages
> Message-ID: <4B705ED4-6CD0-4FEC-8F32-7B86BEB6F6EF(a)massol.net>
> Content-Type: text/plain; charset=iso-8859-1
>
> Hi Joseph-Andr?,
>
> On Aug 28, 2012, at 9:10 AM, Joseph-Andre Guaragna <joseph-andre(a)rdmo.com> wrote:
>
>> Hello all,
>>
>> I just start using xwiki and as every beginers I am stuck on seting up
>> a tiny detail.
>>
>> My problem is the following: I would like the tab informations on
>> every page to be the default selected tab.
>> I try to look at the forum, and other related pages concerning xwiki
>> configuration and all I founded is how to disable tabs but not modify
>> the basic selected tab.
>>
>> I sure it is simple, but I don not know where to add the modification.
>> Thanks for the help.
>
> It's not that simple because we don't have a configuration option to set which tab is the selected one by default.
>
> Thus ATM I think you'll need to edit docextra.vm and make some changes there, but I'm not sure what to change exactly. Maybe others can help.
>
> Thanks
> -Vincent
>
> ------------------------------
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
>
> End of users Digest, Vol 61, Issue 37
> *************************************
thanks for the help I ll have look
Hi Every one
I need to update XWiki Editor , but I cannot find a starting point for
that, how shall I do it, just to enable the tabulation coz when I press tab
key the focus is changed to the save buttons
Thanks
Hi Every body
I have to create an application upon XWiki, I have a this model , Person
-> Contact (Person is a Contact ) and Also Customer - > Contact , How can I
make such implementation using XWiki Classes
Thank You
Hi,
I'm having trouble getting the Jetty database to allow me to put content in that's bigger than 20kb. I've modified the start_xwiki.bat file (pasted below) but it still comes up saying I have the same content size limitation. Have I done anything wrong in the file below? I'm using jetty-7.4.5.v20110725
Many thanks!
Ian.
@echo off
REM -------------------------------------------------------------------------
REM See the NOTICE file distributed with this work for additional
REM information regarding copyright ownership.
REM
REM This is free software; you can redistribute it and/or modify it
REM under the terms of the GNU Lesser General Public License as
REM published by the Free Software Foundation; either version 2.1 of
REM the License, or (at your option) any later version.
REM
REM This software is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
REM Lesser General Public License for more details.
REM
REM You should have received a copy of the GNU Lesser General Public
REM License along with this software; if not, write to the Free
REM Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
REM 02110-1301 USA, or see the FSF site: http://www.fsf.org.
REM -------------------------------------------------------------------------
set JETTY_HOME=jetty
set JETTY_PORT=8080
set XWIKI_OPTS=-Xmx512m -XX:MaxPermSize=128m
REM Ensure the logs directory exists as otherwise Jetty reports an error
if not exist %JETTY_HOME%\logs mkdir %JETTY_HOME%\logs
REM Ensure the work directory exists so that Jetty uses it for its temporary files.
if not exist %JETTY_HOME%\work mkdir %JETTY_HOME%\work
REM Ensure the data directory exists so that XWiki can use it for storing permanent data.
if not exist data mkdir data
REM Specify port on which HTTP requests will be handled
set XWIKI_OPTS=%XWIKI_OPTS% -Djetty.port=%JETTY_PORT%
REM Specify Jetty's home directory
set XWIKI_OPTS=%XWIKI_OPTS% -Djetty.home=%JETTY_HOME%
REM Specify port and key to stop a running Jetty instance
set XWIKI_OPTS=%XWIKI_OPTS% -DSTOP.KEY=xwiki -DSTOP.PORT=8079
REM Specify the encoding to use
set XWIKI_OPTS=%XWIKI_OPTS% -Dfile.encoding=UTF8
REM In order to avoid getting a "java.lang.IllegalStateException: Form too large" error
REM when editing large page in XWiki we need to tell Jetty to allow for large content
REM since by default it only allows for 20K. We do this by passing the
REM org.mortbay.http.HttpRequest.maxFormContentSize property.
REM Note that setting this value too high can leave your server vulnerable to denial of
REM service attacks.
set XWIKI_OPTS=%XWIKI_OPTS% -Dorg.mortbay.jetty.Request.maxFormContentSize=4000000
java %XWIKI_OPTS% %2 %3 %4 %5 %6 %7 %8 %9 -jar %JETTY_HOME%/start.jar
********************************************************************************************************************
This message may contain confidential information. If you are not the intended recipient please inform the
sender that you have received the message in error before deleting it.
Please do not disclose, copy or distribute information in this e-mail or take any action in reliance on its contents:
to do so is strictly prohibited and may be unlawful.
Thank you for your co-operation.
NHSmail is the secure email and directory service available for all NHS staff in England and Scotland
NHSmail is approved for exchanging patient data and other sensitive information with NHSmail and GSi recipients
NHSmail provides an email address for your career in the NHS and can be accessed anywhere
********************************************************************************************************************
Hi,
when using Meeting Manager Macro I can not add Participants. Whatever you
insert in the Participant field "No Result" will be displayed.
When checking MeetingParticipantSuggest I get following error :
/This page contains the following errors:
error on line 329 at column 6: XML declaration allowed only at the start of
the document
Below is a rendering of the page up to the first error./
Anybody who encountered similar Problems?
BR Paul
--
View this message in context: http://xwiki.475771.n2.nabble.com/Meeting-Manager-Participant-Problem-tp758…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi XWiki-Community!
First I have no access to the server side of my XWiki-Installation, but I
want to change the skin.
I imported a skin via XAR-File.
http://extensions.xwiki.org/xwiki/bin/view/Extension/Lyrebird+Skin
Then I have a new space with three pages.
And what now?
What do I need to change in Administration/Presentation?
Do I need to add a new Page and add a Skin-Object to it?
I do not know how to proceed.
Thanx for all help
Peter
--
View this message in context: http://xwiki.475771.n2.nabble.com/HOW-TO-SET-IMPORTED-SKIN-tp7581004.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
I am interested in how others are making annoucements on their XWiki.
For example: let's say that there's maintenance scheduled to the network,
and that certain drives are unavailable for some period of time. Or that
email is unavailable for a certain period of time?
Right now, we are using email as our main method of communication, but I
would like to eliminate email saying "We are out of water from 10:00 till
13:00"...last friday!!! Everybody is busy reading email about things which
happened at some time in the past :-)
How can that announcement be made "visible" on the mainpage of our XWiki?
We could just edit the XWiki mainpage, show the annoucement and remove it
afterwards (but that's not so sophisticated)
What other options are available?
I was thinking about the Blog Application, where the annoucement will be
made. Annoucements could be a seperate category in the Blog. The XWiki
mainpage should only show Blog entries of a specific category. Best thing
would be if we could "publish" the Blog entry at a certain time (this is
possible), and "unpublish" the Blog entry after the maintenance has been
completed (not yet possible in an automated fashion, but you can "hide" a
blog entry by hand).
So, what methods do you guys using?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Show-announcement-on-XWiki-tp7580979.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Question: how to save user data across multiple requests, we are
trying to customize XWiki Enterprise VERSION 4.1.3
Tried: xcontext.put(key, value) , but doesn't work. it only saves
data within the same request .
Any suggestion is highly appreciated.
Thanks,
Ray
Hi
We have Xwiki installed in our servers, and we found this problem.
When we access to our wiki throught our authentication server (running IBM
Tivoli Access Manager) the WYSIWYG editor doesn't work. Everytime we select
it, it opens the 'Source' editor instead.
But if we enter our Wiki directly (without the authentication server) the
WYSIWYG editor works fine.
Is there any special requeriment to use an authentication server with Xwiki?
Thanks in advance.
Sergio Carrasco
I am in information technology. I'm interested in learning more and
experimenting with wiki in general and xwiki particularly. Please consider
my request for xwiki community farm. Thank you.
I am trying to configure PlantUML to work with local Graphviz server.
My environment - Linux Mint Debian (last stable), MySQL, Tomcat, XWiki
4.1.3.
XWiki installed from standart xwiki deb-packages. No any customization on OS
or XWiki. Empty base (only installed standart wiki-pages).
According to PlantUML macros installation guide, I installed Graphviz, and
deleted path to external graphviz server. Also I added GRAPHVIZ_DOT to
system variable (added export GRAPHVIZ_DOT="/usr/bin/dot" to /etc/profile).
But when I opening test page
http://localhost:8080/xwiki/bin/view/XWiki/PlantUMLMacro
I have got an error:
Dot executable is /usr/bin/dot
Dot version: dot - graphviz version ...
java.io.FileNotDoundExeption: testdottmp42.dot (Permission denied)
...
I checked - dot executable exists in /usr/bin/. Also I checked environment
variables with comand env - all is ok, GRAPHVIZ_DOT variable exists and give
correct path.
Also, I tried to give full permissions for /usr/bin/ and dot executable -
any user/group can read / write / execute it. Also I tried to change tomcat
parameters: TOMCAT6_USER=root and TOMCAT6_GROUP=root for the starting tomcat
as root (it is not good for security reason but for testing is ok).
As a result - same situation, same error.
What is the problem and how I is possible correct it?
Thanks beforehand!
Eugen Colesnicov
--
View this message in context: http://xwiki.475771.n2.nabble.com/PlandUML-configuration-issue-tp7580944.ht…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi Everyone,
I am currently working with Xwiki v1.4.1 and I want to convert its syntax
to xhtml. I have looked at this page
http://rendering.xwiki.org/xwiki/bin/view/Main/GettingStarted and it has a
few points.
1) Is this possible with large chunk of Xwiki v1.4.1 data?
2) Just before the description on how to use Maven, it says; "Note that not
only you need the JARs mentioned above but you also need all the transitive
dependencies required by those JARs." Where do I get these transitive
dependencies?
3) Which of the approaches as described in the link (Using Maven or Using
the XWiki Rendering Standalone JAR) is easy to use?
4) Are there more documentation like a tutorial on using these 2 approaches
other that the one on this link?
Thanks,
--
Victor Eberechi
IBM Software Developer
I'd like to request a new wiki. At USF we're evaluating an instance of the OneBusAway open-source transit software system in Tampa, and OneBusAway requires an XWiki host for the content of the website pages. We'd like to host that content on MyXWiki.org.
My Xwiki username is sjbarbeau.
I'd like to request the server name of onebusawaytampa.myxwiki.org.
Thanks,
Sean
Sean J. Barbeau, Ph.D.
Principal Mobile Software Architect for R&D
Center for Urban Transportation Research
University of South Florida
4202 E. Fowler Avenue, CUT100 | Tampa, FL 33620-5375
813.974.7208 | 813.974.5168 (fax) | barbeau(a)cutr.usf.edu<mailto:barbeau@cutr.usf.edu> | QR Code<http://chart.apis.google.com/chart?cht=qr&chs=350x350&chld=L&choe=UTF-8&chl…>
USF Location-Aware Information Systems Lab<http://www.locationaware.usf.edu/> - http://www.locationaware.usf.edu/
Subscribe<http://lists.cutr.usf.edu/read/all_forums/subscribe?name=locationaware> to USF's Location-Aware Information Systems listserve to be notified by email of new research reports, industry news, etc. and to discuss location-aware technology issues and experiences.
HI all,
I actually found this a bit funny:
At the bottom of search results is an RSS link, to a page like:
http://www.xwiki.org/xwiki/bin/view/Main/Search?xpage=plain&text=fail
It looks like valid RSS code, but why doesn't it work? It isn't the
code, it's a <pre> formatted piece of html, where all xml elements are
actually escaped.
So you see:
<?xml version="1.0" encoding="ISO-8859-1"?>
But it actually is:
<pre><?xml version="1.0" encoding="ISO-8859-1"?>
I can't think of something I did wrong on this or on my own install,
so I'll create an issue in JIRA unless someone stops me in the next
few hours.
All other RSS feeds appear to be working just fine.
Cheers, Joris
Havent been able to find any lessons learned on how to convert from Ubuntu
deployment to Windows.
Is it trivial?
Any gotchas I need to know about?
Any recommendations/guides?
>From 3.2 to current version also.
We are on XWiki 4.0
We want to remove an attachment (71.7Mb) from a page, but we get an Internal
Server Error (displayed in red at the bottom of the wiki page)!
How can I delete that (large) attachment?
--
View this message in context: http://xwiki.475771.n2.nabble.com/BUG-Can-t-delete-large-attachment-tp75808…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Drool, I'll be watching this string and looking for that app :)
Philip Wright
Reports Analyst
ACS: BPS
Office: 503-907-1501 ext 3714
Cell: 503-891-4920
Philip.wright(a)acs-inc.com
Affiliated Computer Services, Inc
Affiliated Computer Services, Inc (ACS) Proprietary and Confidential
Information
This document (or any part thereof) may not be disseminated outside of ACS
in either electronic or physical form without specific authorization of the
office of the ACS Chief Information Security Officer. The information
included in this document represents no commitment by ACS to any other
party. The policies and standards described do not consider any country law
or other directive outside of the United States.
P Please consider the environment before printing this email
-----Original Message-----
From: users-bounces(a)xwiki.org [mailto:users-bounces@xwiki.org] On Behalf Of
Guillaume Lerouge
Sent: Tuesday, July 01, 2008 2:39 PM
To: XWiki Users
Subject: Re: [xwiki-users] Brainstorming XWiki Favorites
By the way, 2 additional ideas :
- You could add a static list property (with [1,2,3,4,5] as allowed
values) to rank the importance / interest of favorites and display them
according to their ranking on the page (thru a hql sort query)
- Don't forget to add your application on http://code.xwiki.org/ once a
first working version is out ;-)
Guillaume
On Tue, Jul 1, 2008 at 11:32 PM, Mike Oliver <moliver(a)corenttech.com> wrote:
>
> Good ideas, I followed the ToDo example and created a Favorites space
> to store the documents but agree better to store them by user. I
> guess I can get it working in the ToDo model first and then move the
> location of the documents and change the filter accordingly.
>
> Our messages passed on the wires where Posted my first pass.
>
> Ollie
>
>
> Guillaume Lerouge wrote:
> >
> > Indeed. I'd still advise looking at how the watchlist feature is
> > implemented since it somehow manages to store user preferences in
> > their profiles and you're going to need that feature in your
> > implementation I guess...
> >
> > Not sure whether there's been any recent discussion on creating
> > easy-to)use user profiles extension points - though this kind of use
> > cases (as well
> as
> > a
> > bunch of others) show they're needed. I think there is a way to
> > access them right now without changing the UserClassSheet (maybe by
> > adding new kind
> of
> > objects to user profile pages...)
> >
> > Re your implementation, I'd advise having the list of favorited
> > pages stored in one (or many) objects attached to the user profile
> > page of the current user and writing a panel taking the currently
> > logged user UserName as a parameter, retrieving the data from those
> > favorite objects stored on his user page and displaying their values
> > in the panel ...
> >
> > Guillaume
> >
> >
> >
> >> Ollie
> >>
> >> Guillaume Lerouge wrote:
> >> >
> >> > Hi Mike,
> >> >
> >> >
> >> >> Can I filter on the user that created the record of the
> >> >> favorites
> >> class?
> >> >>
> >> >
> >> > Sure... But why don't you have your users use the Watchlist
> >> > feature
> >> that
> >> > basically already is XWiki's favorites system for individual users ?
> >> >
> >> > Cf
> >> http://code.xwiki.org/xwiki/bin/view/Applications/WatchlistApplicat
> >> ion
> >> > ,
> >> > it's bundled with all recent versions of XWiki Enterprise AFAIR ...
> >> >
> >> > You might still want to add that description field though...
> >> >
> >> > Guillaume
> >> >
> >> >
> >> >
> >> >>
> >> >> Ollie
> >> >>
> >> >> Wright, Philip wrote:
> >> >> >
> >> >> > Idea is to allow the user to create the description? If so
> >> >> > sounds
> >> like
> >> >> a
> >> >> > GREAT idea.
> >> >> >
> >> >> >
> >> >> >
> >> >> >
> >> >> > Philip Wright
> >> >> >
> >> >> >
> >> >> >
> >> >>
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://www.nabble.com/Brainstorming-XWiki-Favorites-tp18222048p1822333
> 9.html
> >> >> Sent from the XWiki- Users mailing list archive at Nabble.com.
> >> >>
> >> >> _______________________________________________
> >> >> users mailing list
> >> >> users(a)xwiki.org
> >> >> http://lists.xwiki.org/mailman/listinfo/users
> >> >>
> >> >
> >> >
> >> >
> >> > --
> >> > http://wikibc.blogspot.com/
> >> > _______________________________________________
> >> > users mailing list
> >> > users(a)xwiki.org
> >> > http://lists.xwiki.org/mailman/listinfo/users
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Brainstorming-XWiki-Favorites-tp18222048p1822406
> 7.html
> >> Sent from the XWiki- Users mailing list archive at Nabble.com.
> >>
> >> _______________________________________________
> >> users mailing list
> >> users(a)xwiki.org
> >> http://lists.xwiki.org/mailman/listinfo/users
> >>
> >
> >
> >
> > --
> > http://wikibc.blogspot.com/
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Brainstorming-XWiki-Favorites-tp18222048p1822576
> 2.html Sent from the XWiki- Users mailing list archive at Nabble.com.
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
--
http://wikibc.blogspot.com/
_______________________________________________
users mailing list
users(a)xwiki.org
http://lists.xwiki.org/mailman/listinfo/users
Hello,
Sometimes, the top menu disappears and is replaced by the exception
below. It's new since the 4.1.3 migration.
The user exists and if we're going on another page and go back, the
problem disappears. It's totally random but only in the virtual wikis
(not in the main instance).
Any idea ?
Thank you
Nicolas
Error number 4001 in 4: Error while parsing velocity page
/templates/menuview.vm
Wrapped Exception: Failed to evaluate content with id
[/templates/menuview.vm]
com.xpn.xwiki.XWikiException: Error number 4001 in 4: Error while
parsing velocity page /templates/menuview.vm
Wrapped Exception: Failed to evaluate content with id
[/templates/menuview.vm]
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRendere
r.java:110)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1799)
...
at
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.proc
essConnection(Http11BaseProtocol.java:665)
at
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint
.java:528)
at
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollow
erWorkerThread.java:81)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool
.java:689)
at java.lang.Thread.run(Thread.java:662)
Caused by: org.xwiki.velocity.XWikiVelocityException: Failed to evaluate
content with id [/templates/menuview.vm]
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:243)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:184)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRendere
r.java:105)
... 84 more
Caused by: org.apache.velocity.exception.MethodInvocationException:
Invocation of method 'isWikiWatched' in class
com.xpn.xwiki.plugin.watchlist.WatchListPluginApi threw exception
com.xpn.xwiki.XWikiException: Error number 0 in 5: User
[xwiki:XWiki.duthey] does not exists at /templates/menuview.vm[line 179,
column 27]
at
org.apache.velocity.runtime.parser.node.ASTMethod.handleInvocationExcept
ion(ASTMethod.java:243)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java
:187)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReferenc
e.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.evaluate(ASTReferen
ce.java:530)
at
org.apache.velocity.runtime.parser.node.ASTExpression.evaluate(ASTExpres
sion.java:62)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:85)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.jav
a:342)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:106)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:87)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.jav
a:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:224)
... 86 more
Caused by: com.xpn.xwiki.XWikiException: Error number 0 in 5: User
[xwiki:XWiki.duthey] does not exists
at
com.xpn.xwiki.plugin.watchlist.WatchListStore.getWatchListObject(WatchLi
stStore.java:555)
at
com.xpn.xwiki.plugin.watchlist.WatchListStore.getWatchedElements(WatchLi
stStore.java:419)
at
com.xpn.xwiki.plugin.watchlist.WatchListPluginApi.isWikiWatched(WatchLis
tPluginApi.java:206)
at sun.reflect.GeneratedMethodAccessor418.invoke(Unknown
Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInv
oke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invok
e(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java
:173)
... 99 more
Wrapped Exception:
org.apache.velocity.exception.MethodInvocationException: Invocation of
method 'isWikiWatched' in class
com.xpn.xwiki.plugin.watchlist.WatchListPluginApi threw exception
com.xpn.xwiki.XWikiException: Error number 0 in 5: User
[xwiki:XWiki.duthey] does not exists at /templates/menuview.vm[line 179,
column 27]
at
org.apache.velocity.runtime.parser.node.ASTMethod.handleInvocationExcept
ion(ASTMethod.java:243)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java
:187)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReferenc
e.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.evaluate(ASTReferen
ce.java:530)
at
org.apache.velocity.runtime.parser.node.ASTExpression.evaluate(ASTExpres
sion.java:62)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:85)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:87)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.jav
a:342)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:106)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:87)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.jav
a:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:224)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:184)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRendere
r.java:105)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1799)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1739)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:854)
at sun.reflect.GeneratedMethodAccessor218.invoke(Unknown
Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInv
oke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invok
e(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java
:173)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReferenc
e.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference
.java:369)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(Velocimacr
oProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.j
ava:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.j
ava:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective
.java:207)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:87)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.jav
a:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:224)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:184)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRendere
r.java:105)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1799)
at com.xpn.xwiki.XWiki.parseTemplate(XWiki.java:1739)
at com.xpn.xwiki.api.XWiki.parseTemplate(XWiki.java:854)
at sun.reflect.GeneratedMethodAccessor218.invoke(Unknown
Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInv
oke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invok
e(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java
:173)
at
org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReferenc
e.java:280)
at
org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference
.java:369)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.directive.VelocimacroProxy.render(Velocimacr
oProxy.java:216)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.j
ava:311)
at
org.apache.velocity.runtime.directive.RuntimeMacro.render(RuntimeMacro.j
ava:230)
at
org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective
.java:207)
at
org.apache.velocity.runtime.parser.node.ASTBlock.render(ASTBlock.java:72
)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.jav
a:342)
at
org.apache.velocity.runtime.parser.node.ASTIfStatement.render(ASTIfState
ment.java:106)
at
org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.jav
a:342)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:224)
at
org.xwiki.velocity.internal.DefaultVelocityEngine.evaluate(DefaultVeloci
tyEngine.java:184)
at
com.xpn.xwiki.render.XWikiVelocityRenderer.evaluate(XWikiVelocityRendere
r.java:105)
at com.xpn.xwiki.XWiki.evaluateTemplate(XWiki.java:1799)
at com.xpn.xwiki.web.Utils.parseTemplate(Utils.java:155)
at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:241)
at
com.xpn.xwiki.web.XWikiAction.execute(XWikiAction.java:116)
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:690)
at
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:269)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:188)
at
com.xpn.xwiki.web.ActionFilter.doFilter(ActionFilter.java:120)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:215)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:188)
at
org.xwiki.wysiwyg.server.filter.ConversionFilter.doFilter(ConversionFilt
er.java:144)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:215)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:188)
at
com.xpn.xwiki.plugin.webdav.XWikiDavFilter.doFilter(XWikiDavFilter.java:
66)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:215)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:188)
at
org.xwiki.container.servlet.filters.internal.SavedRequestRestorerFilter.
doFilter(SavedRequestRestorerFilter.java:208)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:215)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:188)
at
org.xwiki.container.servlet.filters.internal.SetCharacterEncodingFilter.
doFilter(SetCharacterEncodingFilter.java:111)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:215)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:188)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
e.java:213)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
e.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:1
51)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:87
4)
at
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.proc
essConnection(Http11BaseProtocol.java:665)
at
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint
.java:528)
at
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollow
erWorkerThread.java:81)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool
.java:689)
at java.lang.Thread.run(Thread.java:662)
Caused by: com.xpn.xwiki.XWikiException: Error number 0 in 5: User
[xwiki:XWiki.duthey] does not exists
at
com.xpn.xwiki.plugin.watchlist.WatchListStore.getWatchListObject(WatchLi
stStore.java:555)
at
com.xpn.xwiki.plugin.watchlist.WatchListStore.getWatchedElements(WatchLi
stStore.java:419)
at
com.xpn.xwiki.plugin.watchlist.WatchListPluginApi.isWikiWatched(WatchLis
tPluginApi.java:206)
at sun.reflect.GeneratedMethodAccessor418.invoke(Unknown
Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.doInv
oke(UberspectImpl.java:395)
at
org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invok
e(UberspectImpl.java:384)
at
org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java
:173)
... 99 more
Hi all,
My department is migrating from JSPwiki to Xwiki. We want to keep
things simple, so when importing your war file I did not import the sandbox
or blog spaces. That left Main, Xwiki, AppWithinMinutes, and Dashboard.
AWM is fine, but I found out the hard way that Dashboard and Xwiki both
contain parts of the software, so I can't delete or hide them. First of
all - is that accurate?
My second question is around the Main space. I thought we could import
our files directly into that space, but apparently not - we had a page
called "Search" which appears to have overwritten the search results page.
I couldn't find any documentation about best practices when importing -
like file names to avoid, etc. Do I have to create a brand new space,
leaving Main, Dashboard and Xwiki alone? I just worry people will start
clicking around and editing or creating pages in one of those other
spaces...
Any advice or information would be greatly appreciated!
Thanks!
- Matt L.
I really don't want people to see the other spaces (to avoid confusion). I
had thought that the main parts of Xwiki were kept in the Xwiki space, so I
did the import into Main. However, that appears to have caused some other
issues, since we had a page called "Search" which seems to have overwritten
the default search results page.
Hi, Matt!
See answers below.
Fri, 10 Aug 2012 20:07:31 -0400 от Matt Lamoureux <mmlmrx(a)gmail.com>:
>Hi all,
>
My department is migrating from JSPwiki to Xwiki. We want to keep
>
things simple, so when importing your war file I did not import the sandbox
>
or blog spaces. That left Main, Xwiki, AppWithinMinutes, and Dashboard.
>
AWM is fine, but I found out the hard way that Dashboard and Xwiki both
>
contain parts of the software, so I can't delete or hide them. First of
>
all - is that accurate?Actually you can delete them also, as far as I know. But some scripts will really "keep things simple", I'd say MUCH simplier, than without them. So, I'd advise to play with all this staff first :-)
Sandbox you can delete also, but just think about some playground for users who see XWiki first time.
Sometimes it was more useful than useless for me.
>
My second question is around the Main space. I thought we could import
>
our files directly into that space, but apparently not - we had a page
>
called "Search" which appears to have overwritten the search results page.
>
I couldn't find any documentation about best practices when importing -
>
like file names to avoid, etc. Do I have to create a brand new space,
>
leaving Main, Dashboard and Xwiki alone? I just worry people will start
>
clicking around and editing or creating pages in one of those other
>
spaces...
>
My experience says following: LEAVE XWiki's Spaces (e.g. Main and XWiki), customise it as you need AND use other spaces for data. In the future, in a case of upgrades or moving/renaming/deleting spaces you would highly appreciate keeping data OUT of sctripting :-)
To avoid "smart hands desease" - just restrict edit rights to Main and XWiki (maybe some more) spaces. Simple view rights would make your scripting almost unbreakable. :-)
There is more complicated way - change default page on XWiki start and build everything you need "from scratch". But depending on your future plans I'd recommend just to keep it in mind, but not implement at once: it is set globally for XWiki. For example, in a case of XEM, each Workspace would have non-standard default page, that may cause additional work in template customization. Probably, there are another ways to do this, but I didn't explore it yet.
As a conclusion: much-much more easier to customise existing spaces-pages to you needs, especially from the very beginning.
>
Any advice or information would be greatly appreciated!
>
>
Thanks!
>
- Matt L.
>
>
>
I really don't want people to see the other spaces (to avoid confusion). I
>
had thought that the main parts of Xwiki were kept in the Xwiki space, so I
>
did the import into Main. However, that appears to have caused some other
>
issues, since we had a page called "Search" which seems to have overwritten
>
the default search results page.
>
_______________________________________________
>
users mailing list
>users(a)xwiki.org
>http://lists.xwiki.org/mailman/listinfo/users
>
Keep in mind NATIVE XWiki structure:
- Spaces - Pages for XE
- Workspace/subwiki - Spaces - Pages for XEM
So, stripping you data into this logic would make possible all benefits migration to XWiki.
BTW, besides the fact, that XWiki has access rights at page level even for each user, I use this very seldom. Much easier to use Groups and set access rights to Spaces.
As for "confusion": if you will check Document Index link in top menu - you will see ALL spaces and pages you have view access rights. In my case - I didn't have any confusions at this point. But you're free to make a little Guide to users :-)
It helps much. Other way is to customise XWiki's appearance and remove "extra" links. BUT if someone smart will use direct links - it won't help much: someone smart will have access according to his access rights :-)
Kind regards,
Dmitry
I am attempting to clone an existing XWiki Enterprise 3.5.1 installation to
test out how to upgrade to 4.1.3.
When attempting to load the main page, I receive the following error:
message com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not
initialize main XWiki context Wrapped Exception: Error number 3202 in 3:
Exception while reading document [name = [XWikiPreferences], type =
[DOCUMENT], parent = [name = [XWiki], type = [SPACE], parent = [name =
[xwiki], type = [WIKI], parent = [null]]]] Wrapped Exception: Error number
3301 in 3: Exception while switching to database xwiki Wrapped Exception:
Database xwiki needs migration(s), it could not be safely used!
description The server encountered an internal error
(com.xpn.xwiki.XWikiException: Error number 3 in 0: Could not initialize
main XWiki context Wrapped Exception: Error number 3202 in 3: Exception
while reading document [name = [XWikiPreferences], type = [DOCUMENT], parent
= [name = [XWiki], type = [SPACE], parent = [name = [xwiki], type = [WIKI],
parent = [null]]]] Wrapped Exception: Error number 3301 in 3: Exception
while switching to database xwiki Wrapped Exception: Database xwiki needs
migration(s), it could not be safely used!) that prevented it from
fulfilling this request.
I have tried a couple of different configurations in the xwiki.cfg. Here is
my current configuration.
xwiki.store.migration=1
#-# Whether to exit after migration. Useful when a server should handle
migrations for a large database, without going
#-# live afterwards.
# xwiki.store.migration.exitAfterEnd=0
#-# Indicate the list of databases to migrate.
#-# to upgrade all wikis database set xwiki.store.migration.databases=all
#-# to upgrade just some wikis databases set
xwiki.store.migration.databases=xwiki,wiki1,wiki2
#-# Note: the main wiki is always migrated whatever the configuration.
#-# [Since 3.3M1] default to migrate all databases
xwiki.store.migration.databases=all
I'm using the following environment which is almost exactly the same as our
current running environment (3.5.1):
-Windows Server 2008 R2 Standard
-Apache-Tomcat 7.0.29 (x64)
-JDK 1.7.0_05 (x64)
-Microsoft SQL Server JDBC Driver (rev 3)
-Microsoft SQL Server 2008 R2
The database is a restored copy of our running 3.5.1 xwiki instance. The
user account has full permissions to modify the schema.
Any ideas on why the migration isn't happening?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Problem-Migrating-Database-from-XWiki-Ent…
Sent from the XWiki- Users mailing list archive at Nabble.com.
I want this wiki for project-management of our non-profit-organization based in Spain (but with international members), starting with a team-based study on funds of documentation. XWiki ist thought to be an ideal means of communication and collaboration amongst the participants.
Lateron we might use it for other projects, as well, on an international level.
We hope to be admitted at the Community farm.
Thanks in advance.
--
Ingrid Kuschick
E-mail :
ikuschick(a)txoke.eu>
Phone/téléphone/teléfono: +34 94 668 22 84
Cellular phone (Spain): + 34 603 517 105
Txoke!. European Association (EA) for Investigation, Rescue and
Promotion of Cultural Heritage
Asociación Europea (AE) para la Investigación, el Rescate y la Puesta en
Valor del Patrimonio Cultural
Association Européenne (AE) pour la Recherche, la Sauvegarde et la Mise
en Valeur du Patrimoine Culturel
Europäischer Verein (EV) zur Erforschung, Rettung und Förderung des
Kulturerbes
E-mail: <txoke(a)txoke.eu> - <txoke.anthropo(a)gmail.com>
Website: <http://www.txoke.eu/>