[Bedework-commit] rpiutil r44 - trunk/src/edu/rpi/sss/util/jsp

svnadmin at bedework.org svnadmin at bedework.org
Tue May 29 09:52:50 EDT 2007


Author: douglm
Date: 2007-05-29 09:52:50 -0400 (Tue, 29 May 2007)
New Revision: 44

Modified:
   trunk/src/edu/rpi/sss/util/jsp/UtilAbstractAction.java
Log:
Export changes

To try to get this working in a portal switched to writing directly to output stream. Requires 
 1. a code change to !UtilAbstractAction - not handling null action
 2. Change !ExportAction
 3. Change style sheet so we don't set contentType and skinName (number of these in webuser, 2 in maincampus, 2 in soe)
 4. Remove ical.xsl from each app
 5. Remove export code from FreeBusyAction (FreeBusyPublish does it)
 6. Remove vcal property from form
 7. Remove showExportData action from struts-config
 8. Ensure other data export actions don't forward 


Modified: trunk/src/edu/rpi/sss/util/jsp/UtilAbstractAction.java
===================================================================
--- trunk/src/edu/rpi/sss/util/jsp/UtilAbstractAction.java	2007-05-08 19:51:55 UTC (rev 43)
+++ trunk/src/edu/rpi/sss/util/jsp/UtilAbstractAction.java	2007-05-29 13:52:50 UTC (rev 44)
@@ -358,6 +358,10 @@
       forward = "error";
     }
 
+    if (forward == null) {
+      return null;
+    }
+
     return (mapping.findForward(forward));
   }
 



More information about the Bedework-commit mailing list