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]
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