I am looking to have a link in an object property.
I have an object like the following
Name : string
Description : string
SupportPage : string
The SupportPage should be a link to another page with more information (in
the wiki)
Next I want a livetable that will display that with a clickable link.
For column properties the Livetable says the following
------------------
link The type of link to use for this column. Can be one of:
•auto: link to the URL provided by the <columnName>_url row property from
the JSON results; falls back on the doc_url property
------------------
My problem is I do not know how to set the <columnName>_url. so every time
it comes back blank and then defaults to the doc_url.
Hello
A new version of the Nested Pages Migrator Application extension is
available. See
http://extensions.xwiki.org/xwiki/bin/view/Extension/Nested+Pages+Migrator+…
You can install or upgrade with the Extension Manager.
The application is still a beta version that you should use carefully. But
this version brings some important bug fixes.
Enjoy!
--
Guillaume Delhumeau (guillaume.delhumeau(a)xwiki.com)
Research & Development Engineer at XWiki SAS
Committer on the XWiki.org project
Hi at all,
we are using the macro "numberedheadings" in our pages, which works
fine. But on pdf export, the numbers get lost. I tried to use css for
creating automatic numbers, but this produces an error. Is there any
other opportunity to achieve an automatic numbering?
Thanks and best regards
Alina
--
-----------------------------------
SOURCEPARK GmbH
B.Sc. Alina Kupgisch
Partner der Allianz für Cyber-Sicherheit
des Bundesamtes für Sicherheit in der
Informationstechnik (BSI)
Hohenzollerndamm 150, Gebaeude 7
14199 Berlin
Tel: +49 (0)30/398 068 30
Fax: +49 (0)30/398 068 39
e-mail: alina.kupgisch(a)sourcepark.de
WWW: www.sourcepark.de
-----------------------------------
SOURCEPARK GmbH
Sitz der Gesellschaft: Berlin
Handelsregister: Amtsgericht Berlin-Charlottenburg, HRB 80254
Geschäftsführer: Matthias Barmeier, Harald Dürr
-----------------------------------
Wichtiger Hinweis: Die vorgenannten Angaben werden jeder
E-Mail automatisch hinzugefügt und lassen keine Rückschlüsse
auf den Rechtscharakter der E-Mail zu.
Diese E-Mail kann vertrauliche und/oder rechtlich geschützte
Informationen enthalten. Wenn Sie nicht der richtige Adressat
sind oder diese E-Mail irrtümlich erhalten haben, informieren
Sie bitte sofort den Absender und vernichten Sie diese E-Mail.
Das unerlaubte Kopieren sowie die unbefugte Weitergabe
dieser E-Mail ist nicht gestattet.
The XWiki development team is proud to announce the availability of XWiki 7.4.4.
This is a bugfix release that fixes important bugs discovered in the 7.4.3 version.
You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download
Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki744
The following people have contributed code to this release (sorted alphabetically):
Alexandru Cotiuga
Clemens Robbenhaar
Denis Gervalle
Eduard Moraru
Guillaume Delhumeau
Marius Dumitru Florea
Medjdoub
Pascal Bastien
Thomas Mortagne
Vincent Massol
Thanks for your support
-The XWiki dev team
Hi all
I just installed XWiki 8.1 on my Windows Laptop and everything works well
just the WYSIWYG-Editor is hanging up. I tried to find some similar Problem,
but it seems like I'm the only one.
Has somebody an idea why it's happen?
Regards Patrick
--
View this message in context: http://xwiki.475771.n2.nabble.com/WYSIWYG-doesn-t-work-on-Windows-installat…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi,
I am trying to deploy production version( .war deployment ) of XWIKI to Oracle11g and Tomcat environment. I tried every version of xwiki with different versions of Tomcat. It deploys the application succesfully but when i request http://localhost:8080/xwiki keep getting
"NullPointerException at HqlSqlWalker.lookupProperty( HqlSqlWalker.java:560)" error. As far as i see, tables are created at the database but i cant pass this error.
I also tried with tomcat and h2 database to check whether it's database related issue and same stack trace.
I also tried with Weblogic 11g application server and Oracle 11g database and same stack trace.
P.S: I could run standalone version.
Kemalettin Ocak
Uzman Mühendis
Havelsan A.Åž.
Dikkat: Bu elektronik posta mesaji kisisel ve ozeldir. Eger size gonderilmediyse lutfen gondericiyi bilgilendirip mesaji siliniz.Firmamiza gelen ve giden mesajlar virus taramasindan gecirilmektedir. Mesajdaki gorusler gondericiye ait olup HAVELSAN A.S. resmi gorusu olmak zorunda degildir. Attention: This e-mail message is private and privileged.If you are not the recipient for whom this e-mail message is intended, please notify the sender immediately and delete this e-mail message from your system.All sent and received e-mail messages go through a virus scan. Any opinions presented in this e-mail message are solely those of the author and do not necessarily represent HAVELSAN A.S.`s formal and authorized views.
Hi xwiki citizen,
I try to redirect to another page users when they edit a page...
Then I use this velocity code in my origin page:
#if ($xcontext.action=='edit')
$response.sendRedirect($xwiki.getURL('MySpace.MaTargetPage', 'edit'))
#stop
#end
Redirect (to MyOriginPage in edit mode) working well if user open MyOriginPage in inline mode:
aka /bin/edit/MySpace/MyOriginPage?editor=inline
But my users are "simple user" then I try to force inline mode when they click on 'Edit'
What I tested is: add an XWiki.SheetClass object to "MyOriginPage" with "Default Edit Mode"=inline ...
but I have a very strange behaviour: it's working only for "Admin" user :-(
With simple user, when I 'Edit' my Page, I obtain target Page with all xwiki menu INSIDE editor like this ugly things
https://snag.gy/SrkIua.jpg
If someone have an idea...
Thxs
Pascal B
Hi there,
I had a question regarding the redirect that is happening in the SaveAction
class. When you have a title such as "1 & 2", hitting 'Save' will make the
AJAX call and redirect you to "www.wiki.com/bin/view/1+%26+2". The encoding
of the '&' appears to be done in the call to Util.getRedirect('view',
context) in the SaveAction class.
I want to be able to redirect to "www.wiki-name.com/bin/view/1+&+2" so that
users do not have to see the encoded URL (in case they wish to copy-paste
the url elsewhere). I was able to do this by extending the SaveAction class
into a class of my own, overriding the action() method, and doing a string
replace of all instances of "%26" with "&"; however, this is a very hacky
solution.
I was hoping to get input on any other alternative ways to provide cleaner
URLs to my users. Thank you!
--
View this message in context: http://xwiki.475771.n2.nabble.com/Redirect-to-page-on-Save-action-tp7600164…
Sent from the XWiki- Users mailing list archive at Nabble.com.