From 653626fa2d78dbbc58165771c8c93ad83880e778 Mon Sep 17 00:00:00 2001 From: ryounes Date: Thu, 31 Mar 2011 21:04:29 +0000 Subject: [PATCH] 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. --- doc/notes_for_upgrade-1.3_doc.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 doc/notes_for_upgrade-1.3_doc.txt diff --git a/doc/notes_for_upgrade-1.3_doc.txt b/doc/notes_for_upgrade-1.3_doc.txt new file mode 100644 index 00000000..fa649ddd --- /dev/null +++ b/doc/notes_for_upgrade-1.3_doc.txt @@ -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('')} 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