Hello,
I want to setup the Job Scheduler to send me an E-Mail every day to a
specific Adress.
But when i entered the following code of the MailSenderPlugin into the Job
Script Field, i get only one Message when I save the job and not every Time
the Job is fired. What am I doing wrong?
THe Code is:
sendTextMessage("Sender","my(a)email.com","Subject","text....")
I know that the script should be written in Groovy, but I dont know how.
Thanks for your help.
--
View this message in context: http://n2.nabble.com/E-Mail-Notification-by-Scheduler-Job-Script-tp4676911p…
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
myxwiki.org has been upgraded to XWiki Enterprise 2.3-SNAPSHOT (3/3/2010). We've done this to test the stability of the upcoming XE 2.3 release.
If you own a wiki hosted there you'll notice that the AllDocs page shows an empty list in your wiki. To fix this you need to upgrade your XAR. Go to your administration page on your wiki and follow the instructions in the banner there.
To be notified of the myxwiki.org server upgrade you can follow myxwiki on twitter:
http://twitter.com/myxwiki
Thanks,
-Vincent on behalf of the XWiki community
Thanks Guillaume...
Both your reply and Thomas's response takes good care of my question :)
On Fri, Mar 5, 2010 at 2:08 AM, Dilipkumar Jadhav <
jadhav.dilipkumar(a)gmail.com> wrote:
> Thanks for your prompt response Thomas...now I am relieved.
> All I need to do is figure out how to configure LDAP with XWiki.
> By the way, in case I have a user let's say - Jane Doe whose username in
> Active Directory is Jane.Doe
> Would I create a user of the same name called JaneDoe in XWiki or would I
> create user called Jane.Doe?
> Or am I misreading something here and don't need to create users at all in
> XWiki...
>
You don't need to create them. Once LDAP is configured correctly in XWiki,
users will be created automatically in the wiki the first time they connect
to the wiki with their LDAP credentials.
Guillaume
> On Thu, Mar 4, 2010 at 17:46, Dilipkumar Jadhav
> <jadhav.dilipkumar(a)gmail.com> wrote:
> > Hello folks,
> > Returning to the xwiki mailing list after a long time with a question
> > about LDAP authentication.
> > Our active directory has usernames with a dot (.) character. Would it
> > be possible to sync our XWiki with the active directory under this
> > scenario. If I am not mistaken, we would need to create equivalent
> > users in the XWiki for each user in the active directory.
> > And, XWiki does not accept a dot in the username field.
> > Any insight will be greatly appreciated. Thank you guys.
>
> XWiki does not accept a dot in the page but LDAP authenticator has a
> special handling of username with . so you will not have issue.
>
> In short don't worry about . in ldap user name it's working ;)
>
> > _______________________________________________
> > users mailing list
> > users(a)xwiki.org
> > http://lists.xwiki.org/mailman/listinfo/users
> >
>
>
>
> --
> Thomas Mortagne
>
>
>
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
--
Guillaume Lerouge
Product Manager - XWiki SAS
Skype: wikibc
Twitter: glerouge
http://guillaumelerouge.com/
Thanks for your prompt response Thomas...now I am relieved.
All I need to do is figure out how to configure LDAP with XWiki.
By the way, in case I have a user let's say - Jane Doe whose username in
Active Directory is Jane.Doe
Would I create a user of the same name called JaneDoe in XWiki or would I
create user called Jane.Doe?
Or am I misreading something here and don't need to create users at all in
XWiki...
On Thu, Mar 4, 2010 at 17:46, Dilipkumar Jadhav
<jadhav.dilipkumar(a)gmail.com> wrote:
> Hello folks,
> Returning to the xwiki mailing list after a long time with a question
> about LDAP authentication.
> Our active directory has usernames with a dot (.) character. Would it
> be possible to sync our XWiki with the active directory under this
> scenario. If I am not mistaken, we would need to create equivalent
> users in the XWiki for each user in the active directory.
> And, XWiki does not accept a dot in the username field.
> Any insight will be greatly appreciated. Thank you guys.
XWiki does not accept a dot in the page but LDAP authenticator has a
special handling of username with . so you will not have issue.
In short don't worry about . in ldap user name it's working ;)
> _______________________________________________
> users mailing list
> users(a)xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users
>
--
Thomas Mortagne
Hi,
Why are programming rights needed to view the "Copy" Link? According to the user guide, Programming rights are described as privileges to "use protected APIs & Groovy code in wiki pages". I read the JIRA at http://jira.xwiki.org/jira/browse/XE-374 and it seems that originally, users without PR weren't able to copy pages even though the copy link was showed, so the non-viewable feature was added as a fix.
What I don't understand is how copying action relates to using protected APIs and groovy code at all, or in other words, why the last editor of the page must have programming rights in order for the Copy Action to show up for anyone.
Thanks
Felix
Hi,
I would also like to selectively hide comments for certain users. I have already disabled comments for all users as mentioned in the faq. According to the following link, it is possible to selectively hide comments using a velocity script. Can someone explain how it works, I can't find the Custom Display Attribute anywhere:
http://n2.nabble.com/Conditionally-hiding-content-tp2147464p4672859.html
Regards,
Sunil
----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.
Hello,
By browsing on Main.Tags in my 2.2.1 instance, I found that there was a RSS
Feed link for a specific tag, on each tag page.
But practically it seems not implemented, as what was returned was the
global wiki RSS, not restricted to a particular tag.
So I implemented it in Main.WebRss. Here is an extract of Main.WebRSS page
that treats "tag" parameter. As you can see it misses a correct $description
setting, because I don't know where is the translation ...
#if("$!{request.space}" == '' && "$!{request.tag}" == '')
## RSS feed for the whole wiki
#set ($request = 'where 1=1 order by doc.date desc')
#set ($description = $msg.get('xe.rss.feed.description'))
#elseif("$!{request.tag}" != '')
## RSS feed for a single tag
#set ($request = ", BaseObject as obj, DBStringListProperty as tags,
IN(tags.list) tagsvalue where obj.name=doc.fullName and
obj.className='XWiki.TagClass' and tags.id.id=obj.id and tags.id.name='tags'
and tagsvalue='${request.tag}' order by doc.date desc")
#set ($description = "RSS Feed for a specific tag")
#else
## RSS feed for a single space
#set ($request = "where doc.space='${request.space}' order by doc.date
desc")
#set ($description = $msg.get('xe.rss.space.description',
[$request.space]))
#end
Best regards,
Jeremie
Hello folks,
Returning to the xwiki mailing list after a long time with a question
about LDAP authentication.
Our active directory has usernames with a dot (.) character. Would it
be possible to sync our XWiki with the active directory under this
scenario. If I am not mistaken, we would need to create equivalent
users in the XWiki for each user in the active directory.
And, XWiki does not accept a dot in the username field.
Any insight will be greatly appreciated. Thank you guys.
Hello,
This is for something I'm trying to develop ... And I'm not sure it has
something to do with XWiki, but who knows ?
In a page I call a particular init() function like this :
Event.observe(window, "load", init);
This init() aims at loading some JSON data from another page using Ajax. I
was inspired by the livetable.js here :-)
var json = ""
var ajx=new Ajax.Request( "
http://localhost:8081/xwiki/bin/view/Dev/JSONProvider?xpage=plain&outputSyn…",
{method:"get", onSuccess:function(transport) { json =
eval("("+transport.responseText+")"); }
}
)
This Javascript is in a .js file along with other resources on the server
filesystem. It is loaded with $xwiki.jsfx.use(...) .
When I debug step by step using Firebug, everything is fine, "json" variable
contains what I expect.
But when I'm not debugging and refresh the page, "json" variable is empty
... (breakpointing AFTER ajax call shows it). Though I can see in Firebug
that my Ajax http request finished with a 200 OK code.
Do you think it might be linked to the fact this method is called on page
load ? I can't see how it's different than other ajax calls in xwiki ...
Thanks for any help,
Jeremie