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
Hi,
I am currently working with big images on my xwiki site. Is there a way to
make the images auto-scale to the width of the xWiki page content if the
image is too big? In order to avoid the horizontal scroll bar that appears
on the page and adjust the images to the width of the xWiki page content. I
am using the colibri skin.
To make my question more general, What is the best way to dynamically resize
images on xwiki? or set a max size for the images maintaining the aspect
ratio.
Thanks,
Abel
Hello,
2 quick questions:
1. Does Watch app employ LiveTable for displaying list of articles?
2. Can Watch app be displayed under a tab, using your Tab macro?
Thanks
--Tom
Hi,
My name is Nick Doolittle and I am a social worker with VNA Hospice Care
based in Woburn, MA. I'm interested in creating a wiki for our
non-profit company- perhaps to be shared at least in part with other
similar elder service agencies in the area- to share an array of
information regarding our services in the Boston area. This information
will be shared with other social workers, nurses, and clinical managers
within our company. Some information, such as company policy, might be
kept restricted to specific users within our agency (if such a feature
is possible within XWiki).
It would be of great help to utilize XWiki to host this wiki. My XWiki
username (freshly created) is ndoolittle. As far as a server address
goes, something along the lines of "hospice" or "vnahc" would be ideal.
Thanks much,
Nick
Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message.
Hi all,
I wanted to insert a macro in a page using the wysiwyg and I noticed
that the macros filter (search box on top right) is not searching in the
macro ids.
For example, if I try to write "toc" I get no results. If I write
"table" I get the "Table of contents" macro as result, since its name
matches. I found this a bit annoying in my case, since i know the
macroid (if I were to write it in the wiki syntax) and I cannot find the
macro (still, I'm using the wysiwyg because I can never remember macro
params). Also, I use the search function because it's far easier to
filter it out then scroll for it in the list.
WDYT about searching in the macro ids as well? (1)
Also, the macro id is not displayed. This is good for simple users for
which it has no meaning, but there can be a situation when 2 macros have
the same name and same description (e.g. void description) and users
would want to be able to differentiate one from the other in the macros
list, even the simple users, I would say (for example because they
always want to use one macro of the 2 and they can never tell one from
the other only by name).
WDYT about displaying the macro is as well? (2) of course pretty small
and greyed out, like some advanced metadata.
Marius said it's no big deal to implement neither, as long as we agree.
My +1 for both (1) and (2).
Thanks,
Anca