Hello (x2)
in the left bar, I've change the space value of a div to 160 pixel : <div
class="left" style="width: 160px">.
But I don't know how to change the space of the bar but now the div is cut.
Regards
--
Xavier MOGHRABI - Consortium ObjectWeb
Email: xavier.moghrabi at objectweb.org
Phone: +33 4 76 61 52 35 - Skype ID: xavier.moghrabi.bureau
Hello
I'd like to include in a page an image coming from an other page.
Actually I've using the HTML tag img but the problem is that I need to write
absolute link.
Is it possible to use XWiki syntaxe {image} ?
Regards
--
Xavier MOGHRABI - Consortium ObjectWeb
Email: xavier.moghrabi at objectweb.org
Phone: +33 4 76 61 52 35 - Skype ID: xavier.moghrabi.bureau
Re-hello
When I export a Wiki Page into PDF the images don't appear.
You can test it at http://www.cosgov.org
Regards
--
Xavier MOGHRABI - Consortium ObjectWeb
Email: xavier.moghrabi at objectweb.org
Phone: +33 4 76 61 52 35 - Skype ID: xavier.moghrabi.bureau
Hello
I tried to modify the Main.Toolbar page. But when I'm logged and I want to
modify it by pressing the edit icon, I'm forwaded to the xWiki.Toolbar page.
Thus I think that the link on the edit icon is wrong.
The way I've found to modify the Main.Toolbar was to write in my browser the
following URL : http://www.cosgov.org/xwiki/bin/edit/XWiki/Toolbar
Thanks to correct this in your next if it is a bug or to explain me why I'm
wrong.
Regards
--
Xavier MOGHRABI - Consortium ObjectWeb
Email: xavier.moghrabi at objectweb.org
Phone: +33 4 76 61 52 35 - Skype ID: xavier.moghrabi.bureau
Hi,
Using latest release (0.9.543), how could I flush the cache?
thanks in advance,
--
Mathieu Peltier
ObjectWeb Consortium - INRIA
E-mail: mathieu.peltier(a)inrialpes.fr
JabberID: mpel(a)jabber.fr
Hi,
I am completly new to xwiki. I would like to create a basic form to store
registration (only last name info for the moment). Here is what I have
already tried, but it does not work. I don't understand what I am supposed to
do in order to store the new registration (should I create a Java class for
this?)
Any help would be appreciate - is there some demo available?
thanks,
====================
XWiki.RegistrationClass:
attribute name (String)
====================
XWiki.RegistrationClassSheet code:
1 Registration
#set( $obj = $doc.getObject("XWiki.RegistrationClass", 0))
#set( $class = $obj.xWikiClass)
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td> *First Name:* </td>
<td>$doc.display("first_name", $obj)</td>
</tr>
</table>
====================
XWiki.RegistrationClassTemplate:
#includeForm("XWiki.RegistrationSheet")
====================
Main.Registration:
1 Registration
#set ($register = $request.getParameter("register"))
#if ($register)
Registration of *$request.getParameter("register_first_name")*
#set( $class = $xwiki.getDocument("XWiki.RegistrationClass").xWikiClass)
#set( $reg = $class.newObject() )
#set($class.first_name = $request.getParameter("register_first_name"))
#if ($reg>0)
Your registration has been correctly registered. Thanks.
#else
Sorry, an error occured during the registration process.
#end
#else
Please provide us with the following information:
<form id="register" name="register" action="" method="get">
<input type="hidden" name="template" value="XWiki.RegistrationTemplate" />
<input type="hidden" name="register" value="1">
#set( $class = $xwiki.getDocument("XWiki.RegistrationClass").xWikiClass)
#set( $obj = $class.newObject() )
<table class="block" cellspacing="5px" border="0">
<tr>
#set($prop = $class.first_name)
<td>First Name</td>
<td>$doc.displayEdit($prop, "register_", $obj)</td>
</tr>
</table>
<input type="submit" value="Save My Registration">
</form>
#end
====================
--
Mathieu Peltier
ObjectWeb Consortium - INRIA
E-mail: mathieu.peltier(a)inrialpes.fr
JabberID: mpel(a)jabber.fr
I'm having alot of trouble getting permissions setup on xwiki. My
biggest problem at the moment is that it appears the permissions are
cached. Other than restarting the servlet container how can I flush
the permissions cache?
Also, how do these permissions work? I'm going through
XWikiRightServiceImpl now to try to understand this. It looks like
permissions are exception based, one it finds a matching right it just
returns. Is there any way to setup something like cascading
permissions?