Hi,
I'm using workspaces 1.2M1 as a virtual xwiki under xem 1.3. I have
configured the XWikiServerClass object under XWikiServerServername to
have the visibility property set to 'Private'. When I look at
XWikiPreferences in the virtual xwiki, there are XWikiGlobalRights
objects configured Deny, Groups:,Levels:Register,Users:XWikiGuest, and
Deny, Groups:XWikiAllGroup, Levels: edit, register, Users:
The registration form still appears on the login page, and upon
filling in the fields and submitting, registration is successful.
I need to not allow registration by anyone except Admin.
Thanks,
Dan Svoboda
Has anyone successfully created a second blog in a single wiki? If so, please give me some guidence on how to do this task. Also, what could be a source of a velocity parsing error while creating a class sheet? Please respond to help progress my research.
Thanks in advance,
Tim
Another question,
we've been trying to change the pdf export layout:
http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Configuration#HCustomiz…
Created the Class, and a new pdf export definition.
Now changing the style works but when we try to change xhtmlxsl or fopxsl
nothing happens.
Is this a know bug or is there somthing one should know ....
Second question:
Is this a way to create a own export definition for another format e.g latex
Thanks
hel.
-----
-----
Helmut Lehner
hel(a)hel.at
--
View this message in context: http://n2.nabble.com/Customizing-export-tp2213930p2213930.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi guys!
I juste read under http://www.xwiki.org/xwiki/bin/view/FAQ/
HowToCreateNestedPages that nested pages are currently not available.
I really need this functionality for my current project. As sad on
the FAQ this feature should be available soon. Can anyone tell me
when this will happen? If there is already a "working" version of
that feature in the dev trunk, let me know, I could help testing.
Regards
Andreas Rami
Bizzons eMarketing GmbH
Nikolaiplatz 4
A-8020 Graz
Tel: +43-1-890-3408-250
Hi, can someone help me with setting up CAPTCHA with the albatross skin for
registration and comments? Is there some example code I could look at? Or if
someone has this working could they give some guidence? I have the captcha
plugin enabled but I'm kinda stuck on what to do next. Thanks in advance.
-Marlon
Hi.
We have a repository of articles (our Old CMS) we would like to import
into xwiki automatically.
These Articles are in a propietary XML format, one XML file per article.
What would be the best approach?
We have ability to restructure/transform xml into another xml by means
of xslt.
Which approaches could we research?
Gerritjan
Hi list,
I have a really weird bug which is quite annoying and I don't find any
solution to it :
I want to edit a page in inline mode. I have a form to select the page
to edit with a button. I use the $xwiki.getURL() method to get the right
URL. When i select my page and click on the edit button, I have an
invalid URL error and i am deconnected. What is weird is that if I
reconnect and actualize the page I can access it. The second weird thing
is that I use exactly the same method to edit other pages form other
forms in the same first page and I do not have the problem. I am quite
lost with this issue. I tried to recreate the URL as a string but I have
the same problem.
I am thinking maybe this is a known bug in xwiki. If not maybe i am
missing something somewhere. Please open my eyes on the obvious i am
missing in my code :
<FORM method=POST action="">
<input type="hidden" name="backlog" value="${backlogId}" />
<input type="hidden" name="webname" value="Project" />
<input type="hidden" name="name" value="backlog" />
<input type="hidden" name="domain" value="${domainId}" />
<input type="hidden" name="cut" value="${cut}" />
Select topic : <SELECT name="topic">
#foreach ($item in $topiclist)
#set
($topic=$xwiki.getDocument(${item}).getObject("XWiki.TopicClass"))
<OPTION VALUE="${topic.id}">$topic.get("name")</OPTION>
#end
</SELECT>
<input type="button" value="Select"
onclick='{this.form.action="../../view/" + this.form.webname.value + "/"
+ this.form.name.value + "?backlog=" + this.form.backlog.value +
"&domain=" + this.form.domain.value + "&topic=" +
this.form.topic.value.substring(this.form.topic.value.lastIndexOf("${separator}")+1)
+ "&cut=" + this.form.cut.value; this.form.submit(); }'/>
<input type="button" value="Edit"
onclick='{url="Project."+this.form.topic.value;
this.form.action="${xwiki.getURL(url, "inline")}"; this.form.submit(); }' />
</FORM>
Note that the problem is only with the Edit button, the other is working
fine.
Thanks in advance for your help.
Jean.
--
----
Jean Couteau
Code Lutin - http://www.codelutin.com
44 Bd des Pas Enchantés - 44230 St-Sébastien/Loire
Tél : 02 40 50 29 28 - Fax : 09 59 92 29 28
Hi,
to automate group membership i wrote a Groovy script. It is called
periodically via scheduler.
This script use log4j to write some informations at info and at warning
level to the console and to a database table.
By now we are missing the output. It vanished since XWiki XE 1.6.
Can you tell me how to enable the output again, please?
Thanks.
A simple extract (snippet):
/* Groovy Class: $doc.fullName ([View Code>$doc.fullName?viewer=code]) #*
*/
import org.jboss.logging.Logger;
class UpdateGroupMembershipClass{
def xwiki;
def context;
def doc;
def log; // Logger
void setXWiki(xwiki)
{
this.xwiki = xwiki;
this.context = this.xwiki.getXWikiContext();
this.doc = this.context.getDoc();
this.log = Logger.getLogger("our.organization.XWiki." +
this.doc.getFullName());
log.info("XWiki context initialized.");
}
/* other methods ... */
}
/* *# */
--
View this message in context: http://n2.nabble.com/Groovy-using-log4j-output-tp1575886p1575886.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi all,
I've installed the new blog application (
http://code.xwiki.org/xwiki/bin/view/Applications/BlogApplication) on XWiki
1.1.1. My old blog entries have been migrated and I can created new entries.
But when I go to the Blog/WebHome page (
http://www.antoniogoncalves.org/xwiki/bin/view/Blog/WebHome) I get the
following text showing instead of the list of entries :
#preparePagedViewParams($totalEntries 10)
$xwiki.jsx.use($blogScriptsDocumentName) 1.1 Create a new post
Do you know if I need to do something special to make this page work and get
the 10 last entries of my blog ?
Thank you,
Antonio