---------- Weitergeleitete Nachricht ----------
Von: "Daniel Ebanja" <danielebanja(a)googlemail.com>
Datum: 07.03.2014 10:46
Betreff: Pdf and powerpoint
An: <users(a)wiki.org>
Cc:
Hi,
Have some problem with images. Images are sometimes displayed and sometimes
not at there. Is there a particular format or a particular way to import
images.
Couldn't also import pdf and powerpoint documents.
Thanks.
Hi!
Does XWiki support LDAP TLS binding (that means a ldap connection on port
389 and not a SSL ldaps connection on port 686) with both server and client
(= XWiki) certificates? If so, how to set up that feature?
Many thanks for your response.
Claude Lepère
Hi,
I'm integrating xwiki with external web application. I want to be able to
redirect from xwiki user profile, to user profile of external application.
How can I redirect from profile, or at least how can I access user profile
template, so I can modify it to manage redirection?
Best regards
Karol
--
View this message in context: http://xwiki.475771.n2.nabble.com/Redirect-from-user-profile-tp7589432.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hallo xwiki-users,
i have a webapplication from which i direct users to XWIKI through a link.
The idea i have now is using basic Authentication:
http://
username:password@mywiki.xwiki.com/xwiki/bin/view/Main/WebHome?basicauth=1
The problem here is i am using username:OID in the url above.
I will like to customize the basic authentication such that i can use the
OID to get userpassword from a database. Register the user in xwiki if it's
the first time getting to xwiki and login if user already exist.
The two apps are running in tomcat and on debian OS.
I tried to write a java class(with eclipse on windows) extending the
XWikiAuthServiceImpl class. Eclipse did not recognise the packages.Could i
get the packages from somewhere? Is there a way to test an implementation?
I archived the Java file to a jar and added it to WEB_INF/lib, But xwiki
did not work. The jar file i added was not a proper jar file and caused
everytthing to stop functioning.
Thanks in advance for your help.
--
Ebanja Daniel
Informatikstudent der Hochschule Darmstadt
Deutschland
This is my first post so, hello everyone!
I've been using xwiki for a few years but only now am I starting to have a
play with applications.
When creating a new document in an application, the user needs to enter a
name before actually entering data in whatever fields have been defined.
My question is, could I setup my application in such a way that the name of
the new document would be defined by information in the fields. Basically
skipping the whole Document name input phase.
I've spent a good few hours browsing through this mailing list but could
not find an answer to this particular problem.
Thanks,
Pedro
I am working on setting up subwikis in a private Intranet wiki. I have a
customized theme with a custom logo. When a member of the subwiki clicks
around, they see the theme normally. When a non-member ties to go to a page
they get the normal "Error - You are not allowed to view this document or
perform this action". Which is good, except the theme on that page changes
back to the original XWiki theme and logo. The root wiki is using the same
customized theme and it appears on the login page because I gave
unregistered users access to view the theme.
I don't know who to give permission to in order for the theme to appear.
The user is no longer unregistered, because they are a member of the root
wiki. However they are not a member of any group in the subwiki.
I using XWiki 5.4.1, with MySQL and Tomcat7. I have a vanilla .deb install.
--
View this message in context: http://xwiki.475771.n2.nabble.com/Theme-on-Subwiki-Error-page-tp7589357.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
When using group name "A & B" it is impossible to set permissions in the
WebPreferences.
Xwiki version 5.4.1.
Is this a bug?
( maybe related to http://jira.xwiki.org/browse/XWIKI-5448 ?)
Regards,
Michiel
Hi Boudjelda (and Marius),
I was wondering if you ever found a solution for this? I would like to
add TogetherJS to XWiki (see: https://togetherjs.com/#tryitout-section)
but am not sure how to insert the JS source into the page head.
I went through the suggested steps:
1st, created a new object for the page "myurl/Sandbox/WebHome/", "Edit"
-> "Objects":
Objects of type XWiki.JavaScriptExtension
- JavaScriptExtension 0: TogetherJS
Code:
document.observe('xwiki:dom:loaded', function() {
<script src="https://togetherjs.com/togetherjs-min.js"></script>
}
Then in the page I added:
{{velocity}}
$xwiki.jsx.use("XWiki.SkinExt")
{{/velocity}}
{{velocity}}
#set ($discard = $xwiki.ssx.use('Sandbox.WebHome'))
#set ($discard = $xwiki.jsx.use('Sandbox.WebHome'))
{{/velocity}}
{{html}}
<button onclick="TogetherJS(this); return false;">Start TogetherJS</button>
{{/html}}
Any ideas?
Thanks Patrick
On Sun, Oct 14, 2012 at 10:55 AM, Boudjelda Mohamed Said
<bmscomp at gmail.com <http://lists.xwiki.org/mailman/listinfo/users>> wrote:
>/ Hi XWiki users
/>/
/>/ I wanted to add a jQuery library from CDN so I added <script> tag inside
/>/ {{html}} macro this way :
/>/
/>/ {{velocity}}
/>/ {{html clean="false"}}
/>/ <head>
/>/ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
/>/ "></script>
/>/ </head>
/>/
/>/ {{/html}}
/>/ {{/velocity}}
/
Note that whatever you put in the content of a wiki page the result is
inserted in the BODY tag of the final HTML page so generating the HEAD
tag in the content of a wiki page is wrong.
Your best option is to load the JavaScript and CSS dynamically
following this steps:
(1) Define a JavaScript/CSS extension. See
http://platform.xwiki.org/xwiki/bin/view/DevGuide/SkinExtensionsTutorial
.
(2) For CSS you simply use @import. For JavaScript you listen to page
load and then inject a SCRIPT tags in the existing HEAD of the HTML
page.
document.observe('xwiki:dom:loaded', function() {
// Inject the script tag here.
})
(3) Whenever you need the JavaScript/CSS you use
{{velocity}}
#set ($discard = $xwiki.ssx.use('Space.PageWithSSX'))
#set ($discard = $xwiki.jsx.use('Space.PageWithJSX'))
{{/velocity}}
You may want to take a look at
http://extensions.xwiki.org/xwiki/bin/view/Extension/jQuery+Helpers .
Also note that we're using Prototype.js in XWiki everywhere so you
need to handle the conflicts with jQuery.
Hope this helps,
Marius
>/
/>/ I could not use jQuery and it gives me this error in console.
/>/
/>/ Refused to execute a JavaScript script. Source code of script found within
/>/ request
/>/ Resource interpreted as Script but transferred with MIME type text/html:
/>/ "about:blank".
/>/
/>/ any way to use js libraries and css from CDN ??
/>/
/>/ Thanks
/>/ _______________________________________________
/>/ users mailing list
/>/ users at xwiki.org <http://lists.xwiki.org/mailman/listinfo/users>
/>/ http://lists.xwiki.org/mailman/listinfo/users
/
--
|| | | |||| || || | |||| ||| | |||
Patrick Masson
General Manager, Director & Secretary to the Board
Open Source Initiative
855 El Camino Real, Ste 13A, #270
Palo Alto, CA 94301
United States
Skype: massonpj
sip: masson(a)getonsip.com
<https://www.getonsip.com/call?a=masson@getonsip.com>
Ph: (970) 4MASSON
Em: masson(a)opensource.org <mailto:masson@opensource.org>
Ws: www.opensource.org <http://www.opensource.org>