Hi,
Is there any news or work done on issue http://jira.xwiki.org/jira/browse/XWIKI-5256 ? I've realized that this issue doesn't appear on Firefox. I'm particularly interested on the solution of this one, as well as some news on when xwiki 2.4 stable will be available.
Regards,
Ramon Gomes Brandão
Analista Judiciário - Eng. de Computação
SERINT - Serviço de Inteligência /SUSEG/SEST
Tribunal de Justiça do Distrito Federal e Territórios
* ramon.brandao(a)tjdft.jus.br
*(61) 3343-7438, ramal 7438
"Seja a mudança que queres ver no mundo" (Mahatma Gandhi)
Nota de Confidencialidade: Esta mensagem e seus eventuais anexos podem conter dados confidenciais ou privilegiados. Se você os recebeu por engano, ou não é um dos destinatários aos quais ela foi endereçada, por favor destrua-a e a todos os seus eventuais anexos ou cópias realizadas, imediatamente. É proibida a retenção, distribuição, divulgação ou utilização de quaisquer informações aqui contidas. Por favor, informe-nos sobre o recebimento indevido desta mensagem, retornando-a para o autor. Agradecemos a gentileza de sua cooperação.
Hello!
I'm slowly implementing my intentions:
http://mid.gmane.org/loom.20100612T141011-881%40post.gmane.org
The problem I have noticed is that I can't login currently. Login page
is located on http://wiki.x.metrolace.ru/ (wiki.x is ugly, I'll fix it
later) and the headers look like this when I'm logging in:
Set-Cookie: username="GpCybk1DvZRGHYktowzcuA__"; Version=1;
Max-Age=1296000; Expires=Fri, 09-Jul-2010 17:54:46 GMT; Path=/; HttpOnly
I can see no domain here despite I have set
xwiki.authentication.cookiedomains=.metrolace.ru
I have also tried xwiki.authentication.cookiedomains=metrolace.ru, it
didn't work.
As a consequence, the cookie is only valid on wiki.x.metrolace.ru, but
not on e. g. http://photos.metrolace.ru/
I guess this is an effect of security improvement in 2.4M1:
Added support for HttpOnly flag for session cookies (XSS protection measure)
It was mentioned that it required manual headers composing, and domains
might have been forgot when writing from scratch. Is it a bug or maybe
I'm missing something?
--
If you want to get to the top, you have to start at the bottom
Hi!
I have exported a whole space to html and found it great.
If I deploy this export I can provide it at static content via plain
http without authentication and for editing the links shows to the live
xwiki instance.
Really nice!
But I have one problem - the skin from the live version isn't applied to
the html-export.
How can I add the skin to the exported static content ?
Best regards,
H.-Dirk Schmitt
--
------------------------------------------------------------------------
*
H.-Dirk Schmitt <http://www.computer42.org> *
Dipl. Math.
eMail:/dirk.schmitt@computer42.org/
mobile:/+49 177 616 8564/
phone: /+49 2642 99 41 10/
fax: /+49 2642 99 41 15/
Kripper Str. 35, D-53489 Sinzig
Hello,
I'm setting up a new xwiki installation. I've been trying to configure it
according to some requirements but I'm having some hard time to meet some of
them. Those are:
1 - Users must not be able to registry themselves;
2 - I want to add a notice to the login page for users to send an e-mail to
a given e-mail address requiring their registration (so then I can add them
manually via de Adminstration application).
Regarding (2) I've tried to create a page (
http://xxxxxx.xxxx.xx:8080/xwiki/bin/edit/edit/XWiki.Registration<http://swfactory.impresa.pt:8080/xwiki/bin/edit/edit/XWiki.Registration>)
but to no avail. As an alternative, It'll be nice if a user can user the
registration page to register himself but then he can only login after I
manually activate him. But this second option is a nice to have and not an
hard requirement.
Furthermore, as a sidenote, I am having some problems adding a user (please
see attached screenshot to see what I get when adding it):
This only happens in Chrome browser.
Thank you very much.
Best,
Gonçalo Luiz
Hi XWiki users,
I encounter some difficulties with the Tooltip macro.
I use XEM 2.3.1 in "path" mode. And I discovered on xwiki.org a wonderful
macro to display tooltips in a wiki page.
First, I add the Tooltip macro xar to the Admin Wiki. At this step, the
macro works only in the Admin Wiki and only for the Admin user.
In fact, by default, the Tooltip macro has a macro visibility set to
"Current User" (I hope this will be changed in the future). I changed that
setting to "Global", and I filled the Description field (it was empty).
Then, the Tooltip macro is working fine for any user in the Admin Wiki
(present in the wysiwyg editor, correctly rendered).
My last remaining problem is that it doesn't work in the Wiki Instances. I
can insert a tooltip (using the wysiwyg editor, or manually), the macro is
correctly inserted in the page but the tooltip is never rendered (nothing is
displayed: no question mark, no tooltip). I'm sad.
Do you have any idea to investigate ?
Best regards,
Maxime
Hi everybody,
I created a form class and put it in different pages. One of the object of
the class is a number (integer).
I made a live table that collects the data from the different pages and it
works.
I made also a little script that searches the objects of that class in the
documents of a certain space and displays the value in a standard table.
#set($listone = $xwiki.searchDocuments(", BaseObject as obj, StringProperty
as prop where doc.fullName=obj.name and obj.className='classname' and
doc.space='spacename'"))
#foreach($ww in $listone)
#set($documentObject = $xwiki.getDocument($ww))
#foreach($object in $documentObject.getObjects('classname'))
|[[$ww]]|$object.field1|$object.field2|$object.field3
#end
#end
The fisrst column contains a link to the page and the other columns the
value of the objects.
Now if field3 is the number, is there a way to calculate the total sum of
column 4 and store it in a variable that can be used later in the velocity
macro? Or also have the totals after a live table?
Second question, is it possible to create an array or variable that contains
the values of a single column, that is of a single object of the same class
in the different pages, to be used for further manipulations?
--
View this message in context: http://xwiki.475771.n2.nabble.com/Sum-total-in-a-dynamic-table-tp5221885p52…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
I was able to create a wiki page through API. Now I wanted to restrict some
of the access rights for certain users to that particular wikipage through
REST Api. For example, How can we restrict a certain user from viewing a
particular wiki page through REST Api?
In XWiki, this could be achieved by logging in as an administrator -> Click
on a wiki Page -> Click on the 'Access Rights' from 'Edit' dropdown menu ->
and then checkmarking the rights to specific user or group.
How can we achieve this from REST Api?
Any help would be really appreciated.
Thanks,
Manish
--
View this message in context: http://xwiki.475771.n2.nabble.com/Altering-Access-Rights-from-REST-Api-tp52…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
Please provide feedback for the Selective Export UI:
http://incubator.myxwiki.org/xwiki/bin/view/Improvements/MultiExportProposal
PS. The HTML+CSS is not final and it's tested only in Firefox. It will be
improved if it gets positive feedback.
If it doesn't display correctly, please use the IMG to visualize.
Thanks,
Caty
Hi,
Is there anyone that can help with this?
Apologies if it seems like a noob question - I've searched for an answer
in the Xwiki docs and on Google.
Am I posting on the wrong mailing list?
Best regards,
Michael
------------------------------------------------------------------------
We run an xwiki for our internal development team ( version
2.2.4.28034). It's not a major concern, but the document index points to
'dead' pages. Either they don't exist anymore or they're inaccessible?
One example is "Build 6.2.35/0 - Issues Resolved".
"Build 6.2.35" is the space name, "0 - Issues Resolved" is the page
name. It always appears on the Document Index, but it doesn't seem to
exist. Using most of the page delete snippets I've seen, they use a
syntax similar to:
{{groovy}}
print " [[to delete>>"+xwiki.getURL("Space.Page", "delete")+"]]"
{{/groovy}}
Or
[delete page>$xwiki.getURL("Space.Page", "delete")]
Both of the above work (delete the page and remove from the index page)
for a 'normal' page, but not my 'dead' page.
Any help would be greatly appreciated.
Best regards,
Michael