WebHome2

Last modified by Ludovic Dubost on 2009/03/12 16:47

FAQ

Warning

This FAQ space is NOT a good way to ask questions. You'll not get fast answers this way. The best way to get answers is by posting to the XWiki Mailing List. Of course you'll get even faster answers if you also answer other's questions!

Warning

FAQ entries should only be created in English as this wiki is only available in English.

In order to find the information you're looking for, you can use the search feature of your browser to search for FAQ entries displayed on this page or use the search box below.

If you don't find the FAQ you're looking for, create a new FAQ using the following form and fill the answer once you've found it!

217 Answered FAQs (latest first) 56 Unanswered FAQs (latest first)

<script type="text/javascript"> var faqstatus = {}; Ajax.XWikiRequest = Class.create(Ajax.Request, { initialize: function($super, space, docName, options, action) { this.transport = Ajax.getTransport(); if (action) this.action = action; else this.action = "view"; this.baseUrl = "/xwiki/bin/" + this.action; options = Object.clone(options); var onComplete = options.onComplete || Prototype.emptyFunction; options.onComplete = (function() { this.returnValue(onComplete); //onComplete(this.transport); }).bind(this); $super(this.generateUrl(space, docName), options); }, generateUrl: function(space, docName){ return this.baseUrl + "/" + space + "/" + docName; }, returnValue: function(callBack) { if (callBack) callBack(this); else alert("error, callback"); } }); function showFAQEntry(pageName,divid) { if ((!faqstatus[pageName])||(faqstatus[pageName]==0)) { var pars = "xpage=plain"; $(divid).innerHTML = "<p>Loading in progress</p>"; // call url to get the edit html to edit the profile var myAjax = new Ajax.XWikiRequest( "FAQ", pageName, {method: 'get', parameters: pars, onComplete: showFAQEntryCallback, divid: divid }); faqstatus[pageName] = 1; $(divid).style.display = "block"; } else { $(divid).style.display = "none"; faqstatus[pageName] = 0; } } function showFAQEntryCallback(ajaxreq) { var divid = ajaxreq.options.divid; $(divid).innerHTML = ajaxreq.transport.responseText; } </script>

Get Connected