Hi,
I'm looking for feedback about the Summer of Code proposals as well as
for mentors willing to help out follow the students work. The more we
have mentors the more projects we will have.
I've made a Summary of the proposals here
http://www.xwiki.org/xwiki/bin/view/SoC2006/Proposal+Summary
There are around 20 good students with 15 different subjects that would
be acceptable for XWiki from my point of view. We would discuss with the
5 rejected students based on duplicate subject and put them on other
subjects (what is really missing ?).
I've made 3 big groups of priority for the acceptable solutions. The
first groups has 7 projects. The second 6/7. The third one 3/4
For the contributors willing to see the details of the proposals and
also "vote" for them you can go to
http://code.google.com/soc/mentor_home.html I can then accept you as
mentors for XWiki.
If you feel interested in mentoring one project do answer me here or
directly before monday. I have to give an answer of how many projects we
can mentor and this number will impact our real number of proposal accepted.
Ludovic
--
Ludovic Dubost
XPertNet: http://www.xpertnet.fr/
Blog: http://www.ludovic.org/blog/
XWiki: http://www.xwiki.com
Skype: ldubost AIM: nvludo Yahoo: ludovic
Hello again,
I tried again sending a mail from a sendmail testpage and I received the following error message:
Error number 4001 in 4: Error while parsing velocity page Demo.SendMailTestPage Wrapped Exception: Invocation of method 'sendMessage' in class com.xpn.xwiki.XWiki threw exception class com.xpn.xwiki.XWikiException : Error number 10003 in 10: Exception while sending email from to [Ljava.lang.String;@24797f Wrapped Exception: Connection refused
Thanks for your help. I am pretty much lost.
Jens
Hello,
I recently installed xwiki on my local machine for testing. The goal is to install xwiki on the company server at a later time. I had no troubles installing xwiki but I have serious trouble getting the email notification running. I activated the email notification (XWiki.Preferences) and set up the smtp server on "localhost" and the admin email to "jgehbauer(a)gmail.com". Unfortunately, I did never receive any email. I tried other smtp servers like smtp.gmail.com or smtp.comcast.net but it all seems not to work. I do not receive any email. I am running Tomcat 5.5.17, MySQL 5.0.19, and xwiki 0.9.840 on a Mac OS X operating system with a Firefox Browser.
At some point I received the error message that the connection was refused. But that only happened once.
I would appreciate any help on setting up the email notification. Thanks.
Cheers,
Jens
I've added some clustering support code to xwiki. To enable
clustering, edit oscache.properties and uncomment the specified line.
One problem has to do with the need for some code to be notified when
a document has been changed by some other machine in the cluster e.g.
machine A saves a doc, broadcasts invalidate to other machines, but
machine B has code that needs to know when any doc has changed (e.g.
email notification or lucene plugin). I've tried to account for this
with the class XWikiCacheListener, but couldn't come up with a
completely satisfactory solution. Since its execution is triggered
by jgroups when it receives a cache flush event over the network,
there is no Context, and thus any notification recipient that uses
something thats not in the dummy Context I create will fail - e.g.
XWikiPageNotiification line 30 tries to use the request object and
throws a NPE - in this case we could fix it by checking if request is
null, but I don't know where else it might break. Suggestions would
be appreciated.
To see the changes added for clustering, you can: svn diff -r 1065:1066
Matt