Thanks for the ideas.
Adding the same menu for the current page when the context menu does
not apply to a link is a particularly good idea, will do that asap.
More elaborate interaction with the wiki is also an interesting point,
will look into that.
The strings are already localized using Firefox's locale system, so
adding more languages should be a breeze.
Yes it would be very beneficial to get this into source control. Any
chance of getting a directory on the XWiki svn repository? :)
If not, I'll start applying to sourceforge & co.
On 10/04/06, Enrique Ferreyra <eferreyra(a)gmail.com> wrote:
> Nice idea!!!!
>
> It has good potential, remeber Tortoise CVS/SVN !!
>
> Right now appoint a feature: Put some file to change the language of
> the menu, maybe just change the descriptions of the menu items will do
> the job.
>
> Thanks Robin
>
>
> Robin Fernandes escribió:
>
> >Hi,
> >
> >I've written a very simple Firefox extension that adds a few links to
> >the context menu when you right click a link to an XWiki page. It just
> >checks to see if the link includes 'xwiki/bin/view', and if so,
> >manipulates the URL depending on the action you want to perform.
> >Nothing special, but it might save a page load or two.
> >
> >http://soal.xwiki.com/xwiki/bin/view/Code/FoXWiki
> >
> >Any ideas for further functionality are welcome.
> >
> >Regards,
> >Robin
> >
> >
> >
> >------------------------------------------------------------------------
> >
> >
> >--
> >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
> >
> >
>
> --
> A.U.S. Enrique Ferreyra
> Centro de Cómputos
> Red Megatone - Red Confina
>
>
Hi Robin
Thanks a lot I think It's a great tool.
Unfortunately our Wiki is installed with "wiki" as application name so our path is
'wiki/bin/view' instead of 'xwiki/bin/view'
Do you think it would be possible to make that extension configurablewhat path it should look for?
Regards,
Leo
-----Original Message-----
From: Robin Fernandes [mailto:rewbs.soal@gmail.com]
Sent: Montag, 10. April 2006 15:49
To: Enrique Ferreyra; xwiki-users(a)objectweb.org
Subject: Re: [xwiki-users] XWiki Firefox extension
Thanks for the ideas.
Adding the same menu for the current page when the context menu does not apply to a link is a particularly good idea, will do that asap.
More elaborate interaction with the wiki is also an interesting point, will look into that.
The strings are already localized using Firefox's locale system, so adding more languages should be a breeze.
Yes it would be very beneficial to get this into source control. Any chance of getting a directory on the XWiki svn repository? :) If not, I'll start applying to sourceforge & co.
On 10/04/06, Enrique Ferreyra <eferreyra(a)gmail.com> wrote:
> Nice idea!!!!
>
> It has good potential, remeber Tortoise CVS/SVN !!
>
> Right now appoint a feature: Put some file to change the language of
> the menu, maybe just change the descriptions of the menu items will do
> the job.
>
> Thanks Robin
>
>
> Robin Fernandes escribió:
>
> >Hi,
> >
> >I've written a very simple Firefox extension that adds a few links to
> >the context menu when you right click a link to an XWiki page. It
> >just checks to see if the link includes 'xwiki/bin/view', and if so,
> >manipulates the URL depending on the action you want to perform.
> >Nothing special, but it might save a page load or two.
> >
> >http://soal.xwiki.com/xwiki/bin/view/Code/FoXWiki
> >
> >Any ideas for further functionality are welcome.
> >
> >Regards,
> >Robin
> >
> >
> >
> >---------------------------------------------------------------------
> >---
> >
> >
> >--
> >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
> >
> >
>
> --
> A.U.S. Enrique Ferreyra
> Centro de Cómputos
> Red Megatone - Red Confina
>
>
Hi, me again, i have this problem:
I enter xwiki as XWiki.Admin
I do something
I close web browser (Firefox)
I open web browser (Firefox)
I go to XWiki.WebHome
I am logged as XWiki.Admin !!!!
Worst, i close web browser, i close my linux (kde) session, i enter
again and the same happens...
How can avoid that, how i can prevent the session persist when browser
restarts ... ?
Thanks
--
A.U.S. Enrique Ferreyra
Centro de Cómputos
Red Megatone - Red Confina
...moved this to the users list
Hi!
In my xwiki 0.9.840 installation I have set the user validation flag on but newly registered users can still log in without activating their accounts. So to say, if user is marked inactive (checked this in db too) he still can log in. I noticed this in xwiki.com too where I registered and directly logged in without "validating" my registration.
Is this the intended behaviour for user account validation and if so, what is it actually for? If this is not a bug, what's the best way - if any - to disable a user account without removing it. Putting it into access denied -group?
:pete
Hi all!
I'm trying to develop a plugin to interact with Jena (
http://jena.sourceforge.net), a semantic web framework.
I developed the plugin as I documented it in the plugin development
tutorial. I have a hello() method which works perfectly. however when I try
to call this method:
public List<String> test1(){
Vector<String> uris = new Vector<String>();
OntModel model = ModelFactory.createOntologyModel(
OntModelSpec.RDFS_MEM_RDFS_INF, null );
model.read("
http://www.dcs.shef.ac.uk/~zzc05jb/environmentOntology/pollutionInventory.r…
");
model.read("
http://www.dcs.shef.ac.uk/~zzc05jb/environmentOntology/instances/disposalRe…
");
Iterator iter = model.listIndividuals();
while(iter.hasNext()){
OntResource ontClass = (OntResource)iter.next();
uris.add(ontClass.getURI());
}
return uris;
}
I get this exception:
Error number 4001 in 4: Error while parsing velocity page
Tests.OntologyPlugin Wrapped Exception: Invocation of method 'test1' in
class secoia.plugin.OntologyPluginApi threw exception class
java.lang.NoSuchFieldError : actualValueType
I can't really make sense of it. This method works if i use it form a
classic Java application. I copied all the Jena jar files to the
webapps/xwiki/WEB-INF/lib directory. Moreover, I don't know where this
actualValueType comes from. Does it come from XWiki?
Any clue on this problem?
Thanks a lot!
--
_ _ Julien Bourdon
(o)(o)--. http://purl.org/net/JulienBourdon
\../ ( ) self isAddictedTo:(#Squeak&#linux)
m\/m--m'`--. ^true
The various kinds of #include directives have always puzzled me, but now
I think I may have a serious need to understand them.
I have seen that some of them are implemented by methods on $xwiki
(includeForm, includeTopic, in two incarnations each - with or without
rendering, I assume), but I have no understanding of why they are all
different. Add in the parse directives and XWiki methods and I am
completely confused.
Can anyone give me a synopsis of what these are all about? I understand
this much: that Velocity directives are read once at parse time,
whereas methods can be invoked multiple times in a loop.
The problem I need to solve, however, may be a Velocity problem or a
caching problem. A menu is called from the left-side navigation menu
XWiki.Menu. I have included it via #includeTopic, and it use
#includeMacros to bring in a macro that reads a document with a list of
objects describing menu items, with a menu label, an href, and a long
description. If the href field is a complete URL, it's output as a
plain link; if it's a local Wiki document, it's output with XWiki's
bracket syntax and its place is held in the menu as a navigational aid.
If it is also in the Web reserved for such documents, it's a submenu,
and the menu macro is called again (thanks to the earlier thread, I did
use a copy of the argument, which is call-by-reference, and saved
headaches).
All of this works just fine except the first time it's called after the
server starts. Instead of the menu text, all I see is the invocation of
the macro. Viewing the menu document directly (as I did when I sought
to debug it) fixes the problem for all until the next reboot.
So what is this? I read some discussion on the velocity-user mailing
list about when and how macro templates are loaded, but didn't
understand it well; in addition, there is all this confusion about when
to include in what way.
brain[sic]
Yep, that's fixed it. Many thanks!
-----Original Message-----
From: Robin Fernandes [mailto:rewbs.soal@gmail.com]
Sent: 05 April 2006 17:50
To: xwiki-users(a)objectweb.org
Subject: Re: Groups (was [xwiki-users])
Hi,
Since you're using 0.9.840, could it be a group cache issue? If you recently added the user to a fifth group but didn't refresh the cache, that could explain it.
See http://mail-archive.objectweb.org/xwiki-users/2006-02/msg00102.html
Regards,
Robin
On 05/04/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
> Hi me again,
>
> This works perfectly for a user with 4 or less groups but, if there are more than 4 groups, it only returns 4 groups? Or maybe there is another problem causing this?
>
> -----Original Message-----
> From: Esbach, Brandon
> Sent: 04 April 2006 08:53
> To: 'xwiki-users(a)objectweb.org'
> Subject: RE: [xwiki-users]
>
> Thanks, that's perfect!
>
> -----Original Message-----
> From: jeremi joslin [mailto:jeremi23@gmail.com]
> Sent: 04 April 2006 02:20
> To: xwiki-users(a)objectweb.org
> Subject: Re: [xwiki-users]
>
> Oh, maybe that change in the last version.
>
> try :
> $context.xWiki.groupService.listGroupsForUser($context.user,
> $context.context)
>
> Jérémi
>
> On 4/4/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
> > Hi,
> > Thanks for the fast reply.
> >
> > This would be on a local Xwiki installation, ver 0.9.840
> >
> > I get an error when I run that:
> > Error number 4001 in 4: Error while parsing velocity page
> > XWiki.XWikiClasses Wrapped Exception: Invocation of method
> > 'listGroupsForUser' in class
> > com.xpn.xwiki.user.impl.xwiki.XWikiGroupServiceImpl threw exception
> > class java.lang.NullPointerException : null
> >
> >
> > -----Original Message-----
> > From: jeremi joslin [mailto:jeremi23@gmail.com]
> > Sent: 03 April 2006 16:37
> > To: xwiki-users(a)objectweb.org
> > Subject: Re: [xwiki-users]
> >
> > On 4/3/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
> > >
> > >
> > > Hi Folks
> > >
> > > I was wondering if there is a simple way to determine user-group membership?
> > > Simpler than spinning through all members of that group and doing
> > > a string match with $context.user at the least?
> >
> > Hi,
> > it's depends if you are in the farm or not. if you are, it's not possible I think.
> >
> > If not, and if you have the programming right you can do :
> > $context.xWiki.groupService.listGroupsForUser($user.user.user,
> > $context.context)
> >
> > You will receive a collection of documents representing groups.
> >
> > Jérémi
> >
> > --
> > Blog: http://www.jeremi.info
> > LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
> > Project Manager XWiki: http://www.xwiki.org
> > skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
> >
> >
> >
> >
> > --
> > 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
> >
> >
> >
>
>
> --
> Blog: http://www.jeremi.info
> LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
> Project Manager XWiki: http://www.xwiki.org
> skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
>
>
>
>
> --
> 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, currently in my wiki, for administrative reasons, there is Admin as
only user, everybody else is a Guest., but in the upper right corner
still i have the register option and i cant find how to hide or remove
this option from there, its possible ? WITHOUT change the skin,
implement css vm templates and all this complicated issues (from my
ignorant point of view, of course)
Mmmm... there some good doc or tutorial about how to change the skin,
for a css and Velocity ignorant ?
Thanks !!
Still trying to solve the Lucene plug-in problem....
--
A.U.S. Enrique Ferreyra
Centro de Cómputos
Red Megatone - Red Confina
Hi, im looking at the code of Main.WebSearch, in particular the SQL that
generate...
In several places the basis of the search is a sentence:
like '%$text%'
How difficult is to add to the form a check control for Matching case,
and the build the SQL with something like (here is when i need help)
like Upper('%$text%')
Or something like that, does anybody do this before? Or i start to broke
forms :)
I assume, need to look at the JDBC Api to see the way i can express
Upper or Lower functions...
Any help welcome.
Thanks
--
A.U.S. Enrique Ferreyra
Centro de Cómputos
Red Megatone - Red Confina
Hi me again,
This works perfectly for a user with 4 or less groups but, if there are more than 4 groups, it only returns 4 groups? Or maybe there is another problem causing this?
-----Original Message-----
From: Esbach, Brandon
Sent: 04 April 2006 08:53
To: 'xwiki-users(a)objectweb.org'
Subject: RE: [xwiki-users]
Thanks, that's perfect!
-----Original Message-----
From: jeremi joslin [mailto:jeremi23@gmail.com]
Sent: 04 April 2006 02:20
To: xwiki-users(a)objectweb.org
Subject: Re: [xwiki-users]
Oh, maybe that change in the last version.
try :
$context.xWiki.groupService.listGroupsForUser($context.user, $context.context)
Jérémi
On 4/4/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
> Hi,
> Thanks for the fast reply.
>
> This would be on a local Xwiki installation, ver 0.9.840
>
> I get an error when I run that:
> Error number 4001 in 4: Error while parsing velocity page
> XWiki.XWikiClasses Wrapped Exception: Invocation of method
> 'listGroupsForUser' in class
> com.xpn.xwiki.user.impl.xwiki.XWikiGroupServiceImpl threw exception
> class java.lang.NullPointerException : null
>
>
> -----Original Message-----
> From: jeremi joslin [mailto:jeremi23@gmail.com]
> Sent: 03 April 2006 16:37
> To: xwiki-users(a)objectweb.org
> Subject: Re: [xwiki-users]
>
> On 4/3/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
> >
> >
> > Hi Folks
> >
> > I was wondering if there is a simple way to determine user-group membership?
> > Simpler than spinning through all members of that group and doing a
> > string match with $context.user at the least?
>
> Hi,
> it's depends if you are in the farm or not. if you are, it's not possible I think.
>
> If not, and if you have the programming right you can do :
> $context.xWiki.groupService.listGroupsForUser($user.user.user,
> $context.context)
>
> You will receive a collection of documents representing groups.
>
> Jérémi
>
> --
> Blog: http://www.jeremi.info
> LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
> Project Manager XWiki: http://www.xwiki.org
> skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
>
>
>
>
> --
> 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
>
>
>
--
Blog: http://www.jeremi.info
LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
Project Manager XWiki: http://www.xwiki.org
skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
My apologies! This is not a problem with the wiki,
as I'm sure most of you have already realized.
The problem was caused because I am using Firefox and
by default it does not allow access to the file system
via links with the file: protocol.
IE works fine.
There is a description of the file based URL at
Wikipedia that also has a link to solve the problem.
http://en.wikipedia.org/wiki/File:_URL
Sorry for the inconvenience!
-----Original Message-----
From: Graham,Neil [NCR]
Sent: April 4, 2006 2:14 PM
To: xwiki-users(a)objectweb.org
Subject: [xwiki-users] File URL not working in 0.9.840?
Greetings,
I have just downloaded and installed Xwiki 0.9.840 and it seems to be
running fine, but I cannot link to files or directories on my windows
file system using the file: protocol.
This is what was suggested in the FAQ
(http://www.xwiki.com/xwiki/bin/view/Doc/HowDoICreateALinkToAFile )
And I have tried many variations of the URL to link to both local files
(file:///<dir>, file://<dir>, file://c|/<dir>, etc.) and network
(file://<host>/<dir>, file://///<host>/<dir>, etc.).
This does not appear to work, even though I've done the same thing on
other wikis (JSPWiki syntax: file:/host/<dir>) and it works fine.
The FAQ says it should work. Does anyone have any help?
I find xwiki to be a superior wiki, but if I can't do this
I will have to switch to another one.
Greetings,
I have just downloaded and installed Xwiki 0.9.840 and it seems
to be running fine, but I cannot link to files or directories on my windows file
system using the file: protocol.
This is what was suggested in the FAQ
(http://www.xwiki.com/xwiki/bin/view/Doc/HowDoICreateALinkToAFile )
And I have tried many variations of the URL to link to both
local files (file:///<dir>, file://<dir>, file://c|/<dir>, etc.)
and network (file://<host>/<dir>, file://///<host>/<dir>, etc.).
This does not appear to work, even though I've done the same
thing on other wikis (JSPWiki syntax: file:/host/<dir>) and
it works fine.
The FAQ says it should work. Does anyone have any help?
I find xwiki to be a superior wiki, but if I can't do this
I will have to switch to another one.
Hi all,
For those of you who use a svn version of XWiki, please upgrade. there
was a bug in the right management now fixed. The version 0-9-840
doesn't need to be upgraded.
All activated tests are now passed on the build platform.
Soon, we will release the beta1 of xwiki 1.0.
Jérémi
--
Blog: http://www.jeremi.info
LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
Project Manager XWiki: http://www.xwiki.org
skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
Thanks, that's perfect!
-----Original Message-----
From: jeremi joslin [mailto:jeremi23@gmail.com]
Sent: 04 April 2006 02:20
To: xwiki-users(a)objectweb.org
Subject: Re: [xwiki-users]
Oh, maybe that change in the last version.
try :
$context.xWiki.groupService.listGroupsForUser($context.user, $context.context)
Jérémi
On 4/4/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
> Hi,
> Thanks for the fast reply.
>
> This would be on a local Xwiki installation, ver 0.9.840
>
> I get an error when I run that:
> Error number 4001 in 4: Error while parsing velocity page
> XWiki.XWikiClasses Wrapped Exception: Invocation of method
> 'listGroupsForUser' in class
> com.xpn.xwiki.user.impl.xwiki.XWikiGroupServiceImpl threw exception
> class java.lang.NullPointerException : null
>
>
> -----Original Message-----
> From: jeremi joslin [mailto:jeremi23@gmail.com]
> Sent: 03 April 2006 16:37
> To: xwiki-users(a)objectweb.org
> Subject: Re: [xwiki-users]
>
> On 4/3/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
> >
> >
> > Hi Folks
> >
> > I was wondering if there is a simple way to determine user-group membership?
> > Simpler than spinning through all members of that group and doing a
> > string match with $context.user at the least?
>
> Hi,
> it's depends if you are in the farm or not. if you are, it's not possible I think.
>
> If not, and if you have the programming right you can do :
> $context.xWiki.groupService.listGroupsForUser($user.user.user,
> $context.context)
>
> You will receive a collection of documents representing groups.
>
> Jérémi
>
> --
> Blog: http://www.jeremi.info
> LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
> Project Manager XWiki: http://www.xwiki.org
> skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
>
>
>
>
> --
> 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
>
>
>
--
Blog: http://www.jeremi.info
LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
Project Manager XWiki: http://www.xwiki.org
skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
This question is probably answered somewhere on the site but I failed to find it. I just registered my username and I'm trying to create a wiki hosted by xwiki.com for my classroom. When I press the button it tells me I have to provide my adress and accept the terms and conditions but doesn't tell me how to do so.
Thanks,
Mathieu
Hello,
I'm familiar with configuring skins and have read the FAQ about them,
but I'm unable to find out how to change the background color for all areas
of my wiki.
In styles.css, I don't see a value in the stylesheet to accomplish this.
I've tried adding HTML tags for background and CSS tags for background.
Do I have to adjust a value in the style or templates, or do I have to
add something?
Thanks in advance for the help.
- Michael
Hi,
Thanks for the fast reply.
This would be on a local Xwiki installation, ver 0.9.840
I get an error when I run that:
Error number 4001 in 4: Error while parsing velocity page XWiki.XWikiClasses Wrapped Exception: Invocation of method 'listGroupsForUser' in class com.xpn.xwiki.user.impl.xwiki.XWikiGroupServiceImpl threw exception class java.lang.NullPointerException : null
-----Original Message-----
From: jeremi joslin [mailto:jeremi23@gmail.com]
Sent: 03 April 2006 16:37
To: xwiki-users(a)objectweb.org
Subject: Re: [xwiki-users]
On 4/3/06, Esbach, Brandon <Esbachb(a)tycoelectronics.com> wrote:
>
>
> Hi Folks
>
> I was wondering if there is a simple way to determine user-group membership?
> Simpler than spinning through all members of that group and doing a
> string match with $context.user at the least?
Hi,
it's depends if you are in the farm or not. if you are, it's not possible I think.
If not, and if you have the programming right you can do :
$context.xWiki.groupService.listGroupsForUser($user.user.user, $context.context)
You will receive a collection of documents representing groups.
Jérémi
--
Blog: http://www.jeremi.info
LinkedIn: https://www.linkedin.com/profile?viewProfile=&key=1437724
Project Manager XWiki: http://www.xwiki.org
skype: jeremi23 -- msn et gtalk : jeremi23(a)gmail.com
Hi Folks
I was wondering if there is a simple way to determine user-group
membership? Simpler than spinning through all members of that group and
doing a string match with $context.user at the least?
Bonjour,
Ceci est une r�ponse automatique g�n�r�e par mon serveur. il vous signale que j'ai bien recu votre message.
Je m'emploi � le traiter dans les meilleurs d�lais.
en Ressources et Potentiel,
Xavier BERNARD
Hi,
I would like to use LDAP for authorization. I read the wiki
howto entry and basically (I think) is it clear.
But I have currently the problem and the question is it possible to
connect the LDAP server with SSL?
Bye
Frank
Setting JVM options for Tomcat
* Windows running Tomcat 5 and later : Go to the "Apache Tomcat
5.0" folder in the Start Menu. Start the "Configure Tomcat
application".
Note: the configuration can only be started when Tomcat is not
running.
Select the "Java VM" tab in the configuration dialog. You will
see some pre-defined lines in the "Java Options" test box.
Append your Java options at the bottom of the option list. For
example, to set server mode and allow 512MB of heap memory,
append the following:
-server
-Xmx400m
* Windows running Tomcat 4.1 or earlier : place the Java options
into the CATALINA_OPTS environment variable. To do this, run
Control Panel / System, select Environment Variables and create
the CATALINA_OPTS variable, and set the desired option, for
example "-server -Xmx400m".
* Linux : place the Java options into the CATALINA_OPTS
environment variable. For example: "-server -Xmx400m".
THANKS TO MARK :)
Hi again my friend.
See below.
Setting JVM options for Tomcat
* Windows running Tomcat 5 and later : Go to the "Apache Tomcat
5.0" folder in the Start Menu. Start the "Configure Tomcat
application".
Note: the configuration can only be started when Tomcat is not
running.
Select the "Java VM" tab in the configuration dialog. You will
see some pre-defined lines in the "Java Options" test box.
Append your Java options at the bottom of the option list. For
example, to set server mode and allow 512MB of heap memory,
append the following:
-server
-Xmx400m
* Windows running Tomcat 4.1 or earlier : place the Java options
into the CATALINA_OPTS environment variable. To do this, run
Control Panel / System, select Environment Variables and create
the CATALINA_OPTS variable, and set the desired option, for
example "-server -Xmx400m".
* Linux : place the Java options into the CATALINA_OPTS
environment variable. For example: "-server -Xmx400m".
Also, you might want to post back to the thread next time so the answer
is there for other people if they need it.
Cheers,
--
Mark Robinson
Regional Clarity Project Manager (HK & AU)
TNT Freight Managment (Australia) Limited
TNT Freight Managment (Hong Kong) Limited
3rd floor, Two Harbourfront, 18-22 Tak Fung Street,
Hung Hom, Kowloon, Hong Kong
Tel: +852 26213688 (ext. 374)
Mob: +852 90335711
Em : mark.robinson(a)hk.tntfreight.com
Web: http://www.tntfreight.com
Hi.
thanks for your time and effort.
im trying to configure xwiki to run utf-8 charachter set because i need hebrew in xwiki.
i read the page at:
http://www.xwiki.org/xwiki/bin/view/Dev/CharactersSets
and i would like to ask how do i implement the following steps in the description in the page above:
# change the LANG environment variable before Java started to en_US.UTF8
# change the file.encoding param (java -Dfile.encoding=UTF-8) to UTF-8
how do I do these changes?
thank you very much for any possible help
Yoda.
Hi.
im new to xwiki. a great software!
i have trouble locating the documentation on how to use and create tags (tag cloud) in xwiki. what is the syntax? how do i creat tags? is there a gui for creating them?
thaks very much, sorry if this has been answerd before, i couldn't find any data about it by using the search on the xwiki site and on this users list.
Yuda.
Hi,
I'd like to allow users to access the a web services from XWiki
documents via a plugin. However, the web service requires
user-specific passwords. What is the best approach to deal with this?
One option is to add "Password Class" fields to the XWikiUsers class,
and adapt the user template to allow users to set their password when
they edit their page. The field's value is not displayed on the page,
but the passwords are stored in the XWiki database in plain text, and
the user's page is found if a wide search is ran on a substring of the
password.
Could also add methods to the plugin that store passwords in the
database after encrypting them with some private key; they'd then get
decrypted within the plugin code before being sent to the web service.
This isn't bad, but maybe you guys have better ideas! :)
Regards,
Robin