My xwiki is open for registering anyone, as it needs to be.
Lately I have been seeing non-genuine users attaching useless, even illegal
documents and images to their profile pages (some kind of drug trade racket
I suspect).
So, I want to:
1) restrict number of attachments to Profile page to only 1 or 2.
2) have separate inventory of images to be used in whole wiki (like
Wikipedia), thereby disallowing attachments to any other page
Help appreciated..
Hi everyone,
Just wanted to let you know that the XWiki docker image is now an official image on docker hub!
See https://hub.docker.com/r/library/xwiki/
Please try it out and let us know how it goes. That’s probably one of the simplest way to try XWiki now.
It comes configured with filesystem attachment by default and libreoffice configured too for office imports/exports/viewing office docs.
Thanks
-Vincent
Hello,
I'm trying to use the Multipage Export Application (http://extensions.xwiki.org/xwiki/bin/view/Extension/Multipage+Export+Appli…). I've tried to install it as the readme.txt supposes but as on the webpage described its latest version is validated for xwiki 3.1 to 4.1.
I updated to 9.0 lately...
I guess that’s the problem?! But can you see a possibility to make it work under the new version?
Thank you in advance!
Kind regards,
Timo Dachs-Wegmann
-IT-
I am combining structured and unstructured data on a single edit sheet. The editing mode is accessed by the user from a standard LiveTable actions button. The unstructured data is the page content which is included in the edit sheet using:
{{html}}$xwiki.getTextArea($tdoc.content){{/html}}
Which I got from this post: http://xwiki.475771.n2.nabble.com/Default-editing-mode-for-page-with-object… <http://xwiki.475771.n2.nabble.com/Default-editing-mode-for-page-with-object…>
This all works well enough except that the class properties use CKEditor but the textarea uses the wiki editor. I want the users to enter the unstructured data using the familiar CKEditor interface and tools. How can I get both the unstructured and structured data to use the same editor?
Regards,
Jesse
Hi,
I do not know how it to properly called, but it is possible to use
pass-through authentication in xwiki with LDAP login ?
For example, I authorized in active directory when I login in my pc, but I
don't want enter login and password second time when I enter in xwiki.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Sign-in-xwiki-with-LDAP-login-without-ent…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
Is it possible to store attachments below a certain size inside a
database, while storing bigger ones in files?
I assume when using HSQL database it is usually preferred to store
attachments in files?
Greetings, Lilianne
Dear Community,
where can I see some examples how a good dashboard should look like? What functions should a good dashboard have?
Thanx in advance.
Mit freundlichen Grüßen, best regards
Tobias Richter
Auszubildender Fachinformatiker
[BORSI GmbH & Co. KG / Am Ziegelplatz 11-13 / D-77746 Schutterwald]<http://www.borsi.de/>
richter(a)borsi.de<mailto:%3cstrong%3erichter@borsi.de%3c/strong%3e>
Tel: +49 781 500 216
Fax: +49 781 500-555
Amtsgericht Freiburg HRA 470724
Komplementärin: BORSI Verwaltungs GmbH (HRB 701359, AG Freiburg)
vertreten durch Peter G. Breer und Steffen Krimmer
Sitz der Gesellschaften: Am Ziegelplatz 11-13,D-77746 Schutterwald
[Don't print this e-mail unless it's necessary. Help BORSI-Group go green!]
- *description*: We would like to create a wiki for our Boy Scout Troop
1238 based in Fullerton, CA, USA.
- *owner name*: webmaster.troop1238(a)gmail.com / Erwin Masinsin / xwiki
username: troop1238
- *wiki name*: troop1238
Thank you for your consideration.
Yours in scouting,
Erwin Masinsin
Assistant Scoutmaster
Boy Scout Troop 1238
Fullerton, CA
Hello,
I am using (as stated) XWiki 8.4.3 on a CentOS7-VM running in a
docker-container.
I am using a gradle script to push markdown-files and images to the
wiki. The markdown is being wrapped in an xml envelope and pushed to
the REST-API, which works nicely. The envelope looks like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<page xmlns="http://www.xwiki.org">
<title>TITLE</title>
<syntax>markdown/1.2</syntax>
<content>CONTENT</content>
</page>
TITLE and CONTENT are being replaced with the corresponding items, which
are all escaped, so the problem is not with escaping.
We are keeping the files in a structure like the XWiki page-structure,
so we have a directory which contains the markdown and its images
(corresponding to page, WenHome and attachments) and this contains other
directories which in turn.. you get the idea. Basically, every directory
is a page, every markdown-file is a WebHome and every other file is
an attachment.
Right now I am doing two iterations, one fetches the markdown files and
the second fetches all other files.
I am pushing the markdown with XML Content type and the Attachments
with BINARY content-type (both from groovyx.net.http.ContentType.*).
Now my problem is that when I upload the attachments, every single
attachment adds a new version to the page history. I tried to mitigate
this by adding
<majorVersion>1</majorVersion>
and
<version>1.1</version>
to the envelope, but these seem to be unevaluated, as the major version
is still increased with every upload.
So my question is: is there a way to:
a) make sure the minor version is upgraded instead of the major version
when sending an attachment
b) replace the history of the page with a single major.minor-version
history (as is done when importing .xar-files)
c) upload the page with all its attachments at once, without having to
change it from markdown to XAR?