Summary of Stripes 1.5 changes / refactorings

View: New views
3 Messages — Rating Filter:   Alert me  

Summary of Stripes 1.5 changes / refactorings

by Matt Brock :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Instead of searching the mailing list for every single change that necessitates a code refactoring, it would be nice to have one place where devs can look for the major "gotchas".  I hope that the documentation will be updated soon, or there are going to be a lot of unhappy "Stripers" out there.

I guess I'll get the ball rolling...

* @After, @Before annotation signature
1.4.3: @After(LifecycleStage.EVENTNAME), @Before(LifecycleStage.EVENTNAME)
1.5: @After(stages = LifecycleStage.EVENTNAME), @Before(stages = LifecycleStage.EVENTNAME)

* UrlBuilder default method signature deprecated
1.4.3: UrlBuilder ub = new UrlBuilder(urlString, isForPage)
1.5: UrlBuilder ub = new UrlBuilder(locale, urlString, isForPage)

* web.xml configuration parameter ActionResolver.PackageFilters
1.4.3: <param-name>ActionResolver.PackageFilters</param-name>
1.5: <param-name>ActionResolver.Packages</param-name>
---

Re: Summary of Stripes 1.5 changes / refactorings

by Tim Fennell-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ummm, so in the .zip file of the 15.RC1 release (and also will be  
there in the final) is a file called upgrading.txt which lists out  
all the major backwards compatibility issues.  It doesn't list all  
the changes in class/method APIs that are public, but it hits all the  
changes that most users will encounter.  Take a look and let us know  
if you think anything critical is missing.

-t

On Jul 3, 2008, at 11:33 AM, Matt Brock wrote:

>
> Instead of searching the mailing list for every single change that
> necessitates a code refactoring, it would be nice to have one place  
> where
> devs can look for the major "gotchas".  I hope that the  
> documentation will
> be updated soon, or there are going to be a lot of unhappy  
> "Stripers" out
> there.
>
> I guess I'll get the ball rolling...
>
> * @After, @Before annotation signature
> 1.4.3: @After(LifecycleStage.EVENTNAME), @Before
> (LifecycleStage.EVENTNAME)
> 1.5: @After(stages = Lifecycle.EVENTNAME), @Before(stages =
> Lifecycle.EVENTNAME)
>
> * UrlBuilder default method signature deprecated
> 1.4.3: UrlBuilder ub = new UrlBuilder(urlString, isForPage)
> 1.5: UrlBuilder ub = new UrlBuilder(locale, urlString, isForPage)
>
> * web.xml configuration parameter ActionResolver.PackageFilters
> 1.4.3: <param-name>ActionResolver.PackageFilters</param-name>
> 1.5: <param-name>ActionResolver.Packages</param-name>
> ---
> --
> View this message in context: http://www.nabble.com/Summary-of- 
> Stripes-1.5-changes---refactorings-tp18260610p18260610.html
> Sent from the stripes-users mailing list archive at Nabble.com.
>
>
> ----------------------------------------------------------------------
> ---
> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
> Studies have shown that voting for your favorite open source project,
> along with a healthy diet, reduces your potential for chronic lameness
> and boredom. Vote Now at http://www.sourceforge.net/community/cca08
> _______________________________________________
> Stripes-users mailing list
> Stripes-users@...
> https://lists.sourceforge.net/lists/listinfo/stripes-users


-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Stripes-users mailing list
Stripes-users@...
https://lists.sourceforge.net/lists/listinfo/stripes-users

Re: Summary of Stripes 1.5 changes / refactorings

by Matt Brock :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks, Tim, that's perfect.  It's also in the SNAPSHOT, which is what I was using...