<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:thr='http://purl.org/syndication/thread/1.0' version='2.0'><channel><atom:id>tag:blogger.com,1999:blog-895323665351519273</atom:id><lastBuildDate>Sat, 28 Aug 2010 17:12:50 +0000</lastBuildDate><title>XPlanner Plus</title><description></description><link>http://blog.xplannerplus.org/</link><managingEditor>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</managingEditor><generator>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-7450976476667620095</guid><pubDate>Sun, 18 Jul 2010 22:04:00 +0000</pubDate><atom:updated>2010-07-19T01:04:16.572+03:00</atom:updated><title>New development version of xplanner+ available</title><description>Xplanner+ was updated.&lt;br /&gt;New build is available for download:&lt;br /&gt;&lt;a href="http://sourceforge.net/downloads/xplanner-plus/v1.1a2/#download"&gt;http://sourceforge.net/downloads/xplanner-plus/v1.1a2/#download&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This build is also uploaded to &lt;a href="http://demo.xplannerplus.org/"&gt;http://demo.xplannerplus.org/&lt;/a&gt;&lt;br /&gt;On demo you still may have problem with&amp;nbsp;attachments, since it fixed only on mysql, patch for hsqldb will be available soon.&lt;br /&gt;&lt;br /&gt;There a lot of not fixed bugs, but we are moving forward!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-7450976476667620095?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2010/07/new-development-version-of-xplanner.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>2</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-5963349982294584875</guid><pubDate>Thu, 18 Feb 2010 23:14:00 +0000</pubDate><atom:updated>2010-02-19T01:17:33.386+02:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>DWR</category><category domain='http://www.blogger.com/atom/ns#'>Spring</category><title>DWR 2.0 and Spring</title><description>Integrating &lt;a href="http://directwebremoting.org/"&gt;DWR&lt;/a&gt; to project using Spring.&lt;br /&gt;&lt;br /&gt;In this article you can find missing bit, in official &lt;a href="http://directwebremoting.org/"&gt;DWR&lt;/a&gt; documentation.&lt;br /&gt;&lt;br /&gt;1. Add dwr and dependencies to classpath, with maven it's&lt;br /&gt;&lt;pre&gt;  &amp;lt;dependency&amp;gt;&lt;br /&gt;    &amp;lt;groupId&amp;gt;org.directwebremoting&amp;lt;/groupId&amp;gt;&lt;br /&gt;    &amp;lt;artifactId&amp;gt;dwr&amp;lt;/artifactId&amp;gt;&lt;br /&gt;    &amp;lt;version&amp;gt;2.0.3&amp;lt;/version&amp;gt;&lt;br /&gt;  &amp;lt;/dependency&amp;gt;&lt;br /&gt;&lt;/pre&gt;2. Add to web.xml Dwr Spring Servlet &lt;br /&gt;&lt;pre&gt;&amp;lt;servlet&amp;gt;&lt;br /&gt;  &amp;lt;servlet-name&amp;gt;dwr-invoker&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;  &amp;lt;servlet-class&amp;gt;org.directwebremoting.spring.DwrSpringServlet&amp;lt;/servlet-class&amp;gt;&lt;br /&gt;  &amp;lt;init-param&amp;gt;&lt;br /&gt;   &amp;lt;param-name&amp;gt;debug&amp;lt;/param-name&amp;gt;&lt;br /&gt;   &amp;lt;param-value&amp;gt;true&amp;lt;/param-value&amp;gt;&lt;br /&gt;  &amp;lt;/init-param&amp;gt;&lt;br /&gt; &amp;lt;/servlet&amp;gt;&lt;br /&gt;&lt;br /&gt; &amp;lt;servlet-mapping&amp;gt;&lt;br /&gt;  &amp;lt;servlet-name&amp;gt;dwr-invoker&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;  &amp;lt;url-pattern&amp;gt;/dwr/*&amp;lt;/url-pattern&amp;gt;&lt;br /&gt; &amp;lt;/servlet-mapping&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;3. Add to your applicationContext,xml file import (Of cause you can just put all beans inside applicationContext.xml, but I think it's more easier to have all dwr related beans in separate file).&lt;br /&gt;&lt;pre&gt;&amp;lt;import resource=&amp;quot;dwr.xml&amp;quot;/&amp;gt;&lt;/pre&gt;&lt;br /&gt;4. Add dwr.xml file with needed configuration (!!! It should be in classpath)&lt;br /&gt;&lt;pre&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; ?&amp;gt;&lt;br /&gt; &amp;lt;beans default-autowire=&amp;quot;no&amp;quot; xmlns=&amp;quot;http://www.springframework.org/schema/beans&amp;quot;&lt;br /&gt;        xmlns:xsi=&amp;quot;http://www.w3.org/2001/XMLSchema-instance&amp;quot;&lt;br /&gt;        xmlns:dwr=&amp;quot;http://www.directwebremoting.org/schema/spring-dwr&amp;quot;&lt;br /&gt;        xsi:schemaLocation=&amp;quot;http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd&lt;br /&gt;        http://www.directwebremoting.org/schema/spring-dwr&lt;br /&gt;        http://www.directwebremoting.org/schema/spring-dwr-2.0.xsd&amp;quot;&amp;gt;&lt;br /&gt; &lt;br /&gt;  &amp;lt;dwr:configuration&amp;gt;&lt;br /&gt;   &amp;lt;dwr:convert type=&amp;quot;bean&amp;quot; class=&amp;quot;net.sf.xplanner.domain.Project&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;dwr:exclude method=&amp;quot;notificationReceivers&amp;quot;/&amp;gt;&lt;br /&gt;    &amp;lt;dwr:exclude method=&amp;quot;iterations&amp;quot;/&amp;gt;&lt;br /&gt;   &amp;lt;/dwr:convert&amp;gt;&lt;br /&gt;  &amp;lt;/dwr:configuration&amp;gt;&lt;br /&gt; &lt;br /&gt;  &amp;lt;dwr:controller id=&amp;quot;dwrController&amp;quot; debug=&amp;quot;true&amp;quot;  /&amp;gt;&lt;br /&gt; &lt;br /&gt;  &amp;lt;bean id=&amp;quot;dwrProject&amp;quot; class=&amp;quot;net.sf.xplanner.dwr.Project&amp;quot; &amp;gt;&lt;br /&gt;   &amp;lt;property name=&amp;quot;projectDao&amp;quot; ref=&amp;quot;projectDao&amp;quot; /&amp;gt;&lt;br /&gt;   &amp;lt;dwr:remote javascript=&amp;quot;project&amp;quot;&amp;gt;&lt;br /&gt;      &amp;lt;dwr:include method=&amp;quot;getAllProjects&amp;quot; /&amp;gt;&lt;br /&gt;   &amp;lt;/dwr:remote&amp;gt;&lt;br /&gt;  &amp;lt;/bean&amp;gt;&lt;br /&gt; &lt;br /&gt; &amp;lt;/beans&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;In dwr.xml, as you can see you should declare dwr controller.&lt;br /&gt;Also we declared our dwr bean with id dwrProject, which is using "projectDao" spring bean, to use this bean you need to add following javascript to your page (we declared as accessible only one method "getAllProjects"):&lt;br /&gt;&lt;pre&gt;&amp;lt;script type=&amp;#39;text/javascript&amp;#39; src=&amp;#39;/xplanner/dwr/interface/project.js&amp;#39;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt; &amp;lt;script type=&amp;#39;text/javascript&amp;#39; src=&amp;#39;/xplanner/dwr/engine.js&amp;#39;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Also we declared converter for our bean, but this is very well covered by dwr documentation. We just added few exclude method to avoid of fetching huge tree of objects (Project - is hibernate bean and have a references to other objects, and by default DWR try to serialize all of them).&lt;br /&gt;&lt;br /&gt;That's all! :-)&lt;br /&gt;&lt;br /&gt;P.S. After small discussion we decided postpone usage of DWR in XplannerPlus project. We really miss RESTful Web Services. This feature added in version 3.0 rc1, but project look frozen more then for year in this stage.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-5963349982294584875?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2010/02/dwr-20-and-spring.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-8965443082545011509</guid><pubDate>Sun, 31 Jan 2010 14:33:00 +0000</pubDate><atom:updated>2010-01-31T16:33:01.032+02:00</atom:updated><title>Demo of latest xplanner</title><description>&lt;div xmlns='http://www.w3.org/1999/xhtml'&gt;&lt;p&gt;Here you can try xplanner+, without installing it on your system.&lt;br/&gt;&lt;br/&gt;XplannerPlus is based on xplanner project.&lt;br/&gt;&lt;br/&gt;More details about xplanner-plus you may read on &lt;a href='http://xplanner-plus.sourceforge.net'&gt;http://xplanner-plus.&lt;wbr/&gt;sourceforge.net&lt;/a&gt;.&lt;/p&gt;стосовно: &lt;a href='http://demo.xplannerplus.org/xplanner/do/login'&gt;XPlanner Login&lt;/a&gt; (&lt;a href='http://www.google.com/sidewiki/entry/mchirkov/id/s64kaKbvIAM7s3Y1wLxV5l_S9wI'&gt;переглянути на Google Sidewiki&lt;/a&gt;)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-8965443082545011509?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2010/01/demo-of-latest-xplanner.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>4</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-2248522681139150278</guid><pubDate>Mon, 30 Nov 2009 22:27:00 +0000</pubDate><atom:updated>2009-12-01T00:27:23.952+02:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>hibernate</category><category domain='http://www.blogger.com/atom/ns#'>development</category><category domain='http://www.blogger.com/atom/ns#'>xplanner-plus</category><category domain='http://www.blogger.com/atom/ns#'>annotations</category><title>Migration to Hibernate 3.3 from Hibernate 2.1 in XPlanner-Plus</title><description>We finally did it.&lt;br /&gt;We have moved to hibernate 3.3.1 and hibernate annotations 3.4.0 in xplanner-plus 1.1a1.&lt;br /&gt;Special thanks to&amp;nbsp;Hoani Cross, for fixing a lot of problems related to &lt;span id="goog_1259430193977"&gt;&lt;/span&gt;&lt;a href="http://hibernate.org/"&gt;hibernate&lt;span id="goog_1259430193978"&gt;&lt;/span&gt;&lt;/a&gt; upgrade.&lt;br /&gt;Good news: we got annotation support for hibernate, and we have started this work!&lt;br /&gt;Bad news: we still have a lot of work to do: move to OpenSessionInViewFilter, move to hibernate annotations, remove custom sessionFactory, move all database code to dao's and apply aop transaction pattern.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-2248522681139150278?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2009/12/migration-to-hibernate-33-from.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-2053359454858485720</guid><pubDate>Wed, 25 Nov 2009 23:03:00 +0000</pubDate><atom:updated>2009-11-26T01:04:11.238+02:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>PDF</category><category domain='http://www.blogger.com/atom/ns#'>MSPDI</category><category domain='http://www.blogger.com/atom/ns#'>MPX</category><category domain='http://www.blogger.com/atom/ns#'>Export</category><category domain='http://www.blogger.com/atom/ns#'>XML</category><category domain='http://www.blogger.com/atom/ns#'>XLS</category><title>Export features</title><description>In version 1.0 we can do following export on corresponding pages:&lt;br /&gt;Project: XML MPX&lt;br /&gt;Iteration: XML MPX PDF JRPDF&lt;br /&gt;Story: PDF JRPDF&lt;br /&gt;Task: PDF JRPDF&lt;br /&gt;&lt;br /&gt;In version 1.1 was added export to MSPDI format. (To avoid internationalization issues with mpx project)&lt;br /&gt;Everyone is welcome to test and report any issues, with this format.&lt;br /&gt;V1.1a1 build will be published soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-2053359454858485720?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2009/11/export-features.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-1544563953500853613</guid><pubDate>Sun, 08 Nov 2009 16:56:00 +0000</pubDate><atom:updated>2009-11-08T21:29:07.725+02:00</atom:updated><title>Updating libs for xplanner-plus</title><description>&amp;nbsp;The major changes comparing with xplanner 0.7b7&lt;br /&gt;&lt;br /&gt;Upgraded libraries:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Struts (1.1 -&amp;gt; 1.2.9)&lt;/li&gt;&lt;li&gt;Spring (1.2.6 -&amp;gt; 1.2.9)&lt;/li&gt;&lt;li&gt;Velocity (1.4-&amp;gt;1.5)&lt;/li&gt;&lt;li&gt;Jasper (0.5.x -&amp;gt; 1.0.2)&lt;/li&gt;&lt;li&gt;MPXJ (0.0.24-&amp;gt;3.0.1)&lt;/li&gt;&lt;li&gt;dom4j (1.4 -&amp;gt; 1.6.1)&lt;/li&gt;&lt;li&gt;commons-digester (1.4-&amp;gt;1.6)&amp;nbsp;&lt;/li&gt;&lt;li&gt;Struts-spring plugin removed, and switched to struts spring integration in spring.&amp;nbsp; &lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-1544563953500853613?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2009/11/updating-libs-for-xplanner-plus.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>1</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-5141392925653099736</guid><pubDate>Wed, 07 Oct 2009 14:57:00 +0000</pubDate><atom:updated>2009-10-09T15:15:29.933+03:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>development</category><category domain='http://www.blogger.com/atom/ns#'>eclipse</category><category domain='http://www.blogger.com/atom/ns#'>xplanner-plus</category><category domain='http://www.blogger.com/atom/ns#'>maven. tomcat</category><title>Setting up development enviroment for XPlannerPlus</title><description>Instructions for eclipse users:&lt;br /&gt;&lt;br /&gt;So first of all you need to have jdk 1.5 or higher, tomcat (6.0 or 5.5) and &lt;a class="packageTitle" href="http://eclipse.org/downloads/"&gt;Eclipse IDE for Java EE Developers&lt;/a&gt;(You may use Eclipse for Java Developers, with another web devepment plugins as well) installed.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For tomcat managing I'm using &lt;a href="http://www.eclipsetotale.com/tomcatPlugin.html"&gt;Sysdeo tomcat plugin&lt;/a&gt;.&lt;br /&gt;&amp;nbsp;Then you need to have svn and maven plugins installed on eclipse. I'd prefer &lt;a href="http://subclipse.tigris.org/"&gt;Subclipse&lt;/a&gt; and &lt;a href="http://m2eclipse.sonatype.org/"&gt;M2Eclipse&lt;/a&gt; correspondently.&lt;br /&gt;After plugins installations you may checkout project, via menu: File&amp;gt;New&amp;gt;Maven&amp;gt;"Checkout Maven Projects from SCM".&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_t4Udz4K2psc/Ssy9CbrbOBI/AAAAAAAADOM/3nWD_vb8aYA/s1600-h/eclipse-3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_t4Udz4K2psc/Ssy9CbrbOBI/AAAAAAAADOM/3nWD_vb8aYA/s400/eclipse-3.png" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;On next screen, In SCM URL choos svn, and paste url &lt;code&gt;https://xplanner-plus.svn.sourceforge.net/svnroot/xplanner-plus.&lt;/code&gt;&lt;br /&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_t4Udz4K2psc/Ssy9Hw573ZI/AAAAAAAADOU/qVb-7rS-Cmw/s1600-h/eclipse-4.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_t4Udz4K2psc/Ssy9Hw573ZI/AAAAAAAADOU/qVb-7rS-Cmw/s400/eclipse-4.png" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;Then press finish.&lt;/code&gt;&lt;br /&gt;&lt;code&gt;It will takes some times depending on speed of you internet connection and availability of &lt;a href="http://sourceforge.net/"&gt;sourceforge.net&lt;/a&gt;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-5141392925653099736?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2009/10/setting-up-development-enviroment-for.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_t4Udz4K2psc/Ssy9CbrbOBI/AAAAAAAADOM/3nWD_vb8aYA/s72-c/eclipse-3.png' height='72' width='72'/><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-2185712449319973617</guid><pubDate>Sun, 04 Oct 2009 21:15:00 +0000</pubDate><atom:updated>2009-10-09T15:08:42.999+03:00</atom:updated><title>Requirements for running XPlanner-Plus</title><description>&lt;ol&gt;&lt;li&gt;First of all you need to have proper Java, we are supporting &lt;a href="http://java.sun.com/javase/downloads/index.jsp"&gt;Sun Jdk 5, 6&lt;/a&gt; and &lt;a href="http://openjdk.java.net/"&gt;OpenJDK 6&lt;/a&gt;. (May work on &lt;a href="http://iced-tea.org/wiki/Main_Page"&gt;Iced Tea&lt;/a&gt;, but haven't tried). We have one problem not on sun jdk, you can't use graphical progress bar, by default you have html bar.&lt;/li&gt;&lt;li&gt;Database: &lt;a href="http://www.mysql.com/"&gt;Mysql&lt;/a&gt;, &lt;a href="http://hsqldb.org/"&gt;hsqldb&lt;/a&gt;. Other database are not tested, however we are using hibernate, so can support any database (theoritically).&lt;/li&gt;&lt;li&gt; Servers: &lt;a href="http://tomcat.apache.org/"&gt;tomcat 6.0 and 5.5&lt;/a&gt;, &lt;a href="http://www.mortbay.org/"&gt;jetty&lt;/a&gt;. Others are not tested.&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-2185712449319973617?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2009/10/requirements-for-running-xplanner-plus.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>0</thr:total></item><item><guid isPermaLink='false'>tag:blogger.com,1999:blog-895323665351519273.post-1408096645592758529</guid><pubDate>Fri, 02 Oct 2009 21:59:00 +0000</pubDate><atom:updated>2009-10-09T15:07:24.721+03:00</atom:updated><category domain='http://www.blogger.com/atom/ns#'>xplanner</category><category domain='http://www.blogger.com/atom/ns#'>0.8</category><category domain='http://www.blogger.com/atom/ns#'>0.7b7</category><category domain='http://www.blogger.com/atom/ns#'>xplanner-plus</category><category domain='http://www.blogger.com/atom/ns#'>maven</category><title>XPlanner plus development blog</title><description>Welcome to &lt;a href="http://xplannerplus.org/" style="font-weight: bold;"&gt;XPlannerPlus.org&lt;/a&gt;&amp;nbsp; blog about XPlannerPlus development. All info about &lt;a href="http://xplanner-plus.sourceforge.net/"&gt;XPlanner-Plus&lt;/a&gt;&amp;nbsp;will be published&amp;nbsp;here.&lt;br /&gt;&lt;a href="http://xplanner-plus.sourceforge.net/"&gt;XPlanner-plus&lt;/a&gt; is hosted on sourceforge.net. It is derivated from xplanner branch 0.7b7&lt;br /&gt;&lt;br /&gt;There are a lot of changes have been made:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;New design&lt;/li&gt;&lt;li&gt;Added email notifications for task adding and updating &lt;br /&gt;&lt;/li&gt;&lt;li&gt;Xplanner is moved to &lt;a href="http://maven.apache.org/"&gt;maven&lt;/a&gt; build script instead of &lt;a href="http://ant.apache.org/"&gt;ant&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Updated jars dependencies.&lt;/li&gt;&lt;/ol&gt;From small changes: organized links, imported unit tests from xplanner 0.8, fixed few bugs.&lt;br /&gt;&lt;br /&gt;Right now we are working on extending of email notification and stabilizing of project.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/895323665351519273-1408096645592758529?l=blog.xplannerplus.org' alt='' /&gt;&lt;/div&gt;</description><link>http://blog.xplannerplus.org/2009/10/xplanner-plus-development-blog.html</link><author>noreply@blogger.com (Maksym Chyrkov (aka Maxim Chirkov))</author><thr:total>0</thr:total></item></channel></rss>