Changeset 18345
- Timestamp:
- 11/13/08 07:49:48 (2 months ago)
- Files:
-
- trunk/core/config/spring/tiles-definitions.xml (modified) (1 diff)
- trunk/core/src/net/project/datatransform/csv/CSVUpload.java (modified) (1 diff)
- trunk/core/web/jsp/document/ErrorCheckInByWrongUser.jsp (modified) (1 diff)
- trunk/core/web/jsp/document/ErrorCheckInOutGeneral.jsp (modified) (1 diff)
- trunk/core/web/jsp/document/ErrorCheckOutAlreadyCKO.jsp (modified) (1 diff)
- trunk/core/web/jsp/document/ImportObject.jsp (modified) (1 diff)
- trunk/core/web/jsp/form/designer/FormDefinitionUpload.jsp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/config/spring/tiles-definitions.xml
r17787 r18345 15 15 16 16 <definition name="/tiles_logo_upload_validation" path="/project/AddProjectLogo.jsp"> 17 </definition> 18 19 <definition name="/tiles_csv_stepone" path="/datatransform/csv/FileUpload.jsp"> 17 20 </definition> 18 21 trunk/core/src/net/project/datatransform/csv/CSVUpload.java
r18316 r18345 58 58 session.setAttribute("csvWizard", csvWizard); 59 59 } 60 60 61 if(cuCommand.getFile() == null || cuCommand.getFile().isEmpty()) { 61 csvWizard.invalidateFormat(); 62 response.sendRedirect(SessionManager.getJSPRootURL() + "/datatransform/csv/FileUpload.jsp"); 62 csvWizard.invalidateFormat(); 63 Map model = new HashMap(); 64 return new ModelAndView("/tiles_csv_stepone", model); 63 65 } 64 66 trunk/core/web/jsp/document/ErrorCheckInByWrongUser.jsp
r17946 r18345 50 50 <head> 51 51 <title><display:get name="prm.document.errorcheckinbywronguser.label" /></title> 52 <link rel="stylesheet" rev="stylesheet" type="text/css" href="/pnet/styles/global.css?8.5"> 53 <link rel="stylesheet" rev="stylesheet" type="text/css" href="/pnet/styles/fonts.css?8.5"> 52 54 53 55 </head> trunk/core/web/jsp/document/ErrorCheckInOutGeneral.jsp
r17946 r18345 28 28 <head> 29 29 <title><display:get name="prm.document.errorcheckinoutgeneral.title" /></title> 30 <link rel="stylesheet" rev="stylesheet" type="text/css" href="/pnet/styles/global.css?8.5"> 31 <link rel="stylesheet" rev="stylesheet" type="text/css" href="/pnet/styles/fonts.css?8.5"> 30 32 31 33 </head> trunk/core/web/jsp/document/ErrorCheckOutAlreadyCKO.jsp
r18316 r18345 50 50 <head> 51 51 <title><display:get name="prm.document.errorcheckoutalready.title" /></title> 52 <link rel="stylesheet" rev="stylesheet" type="text/css" href="/pnet/styles/global.css?8.5"> 53 <link rel="stylesheet" rev="stylesheet" type="text/css" href="/pnet/styles/fonts.css?8.5"> 52 54 53 55 </head> trunk/core/web/jsp/document/ImportObject.jsp
r17995 r18345 99 99 var filePathEmpty = "<%=PropertyProvider.get("prm.document.importobject.file.empty")%>"; 100 100 101 // this is to avoid security issue for importing new document by using back button (fix fix this page only.)102 window.history.forward(1);103 104 101 function setup() { 105 102 load_menu('<%=user.getCurrentSpace().getID()%>'); trunk/core/web/jsp/form/designer/FormDefinitionUpload.jsp
r18270 r18345 50 50 } 51 51 52 function cancel() { 53 var theLocation='<%=SessionManager.getJSPRootURL()%>Main.jsp?module=30&action=2'; 54 self.location = theLocation; 55 } 52 56 53 function next () { 57 54 theForm = self.document.forms[0]; … … 126 123 <tb:toolbar style="action" showLabels="true" bottomFixed="true"> 127 124 <tb:band name="action"> 128 <tb:button type="cancel" />129 125 <tb:button type="next" /> 130 126 </tb:band>
