Modify RedirectResponseValues constructor so the redirectUrl does not contain the context path, but gets added by the constructor. Create file for v1.3 upgrade notes.

This commit is contained in:
ryounes 2011-03-31 21:04:29 +00:00
parent 0d7179d6f0
commit 653626fa2d

View file

@ -0,0 +1,15 @@
NOTES ON 1.3 CHANGES THAT NEED TO BE INCLUDED IN THE UPGRADE DOC
================================================================
---------
Templates
---------
* ${stylesheets}, ${scripts}, and ${headScripts} add() methods now take the full tag as an argument. This will require a change to all template method calls. Example:
1.2: ${stylesheets.add("/css/individual/individual.css")}
1.3: ${stylesheets.add('<link rel="stylesheet" href="${urls.base}/css/individual/individual.css" />')} RY
* The addFromTheme() methods of the ${stylesheets}, ${scripts}, and ${headScripts} objects has been deleted. RY
* propertyGroups.getPropertyAndRemoveFromList() has been deprecated. The replacement method is propertyGroups.pullProperty(). No change in functionality. RY