Changeset 4852 for branches/2.11-stable
- Timestamp:
- Mar 26, 2009, 1:16:36 PM (14 years ago)
- Location:
- branches/2.11-stable/www/biomaterials/bioplates/wells
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.11-stable/www/biomaterials/bioplates/wells/index.jsp
r4731 r4852 149 149 cc.configureQuery(query, true); 150 150 cc.setQuery(query); 151 redirect = "../../common/export/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=LIST&title=Export+biowells";151 redirect = root + "/common/export/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=LIST&title=Export+biowells"; 152 152 } 153 153 else if ("ExportItem".equals(cmd)) … … 155 155 // Run an export plugin in single-item context 156 156 ItemContext cc = Base.getAndSetCurrentContext(sc, itemType, pageContext, defaultContext); 157 redirect = "../../common/export/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=ITEM&title=Export+biowell";157 redirect = root + "/common/export/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=ITEM&title=Export+biowell"; 158 158 } 159 159 else if ("ImportItems".equals(cmd)) … … 167 167 cc.configureQuery(query, true); 168 168 cc.setQuery(query); 169 redirect = "../../common/import/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=LIST&title=Import+biowells";169 redirect = root + "/common/import/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=LIST&title=Import+biowells"; 170 170 } 171 171 else if ("ImportItem".equals(cmd)) … … 173 173 // Run an import plugin in single-item context 174 174 ItemContext cc = Base.getAndSetCurrentContext(sc, itemType, pageContext, defaultContext); 175 redirect = "../../common/import/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=ITEM&title=Import+biowell";175 redirect = root + "/common/import/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=ITEM&title=Import+biowell"; 176 176 } 177 177 else if ("RunListPlugin".equals(cmd)) … … 185 185 cc.configureQuery(query, true); 186 186 cc.setQuery(query); 187 redirect = "../../common/plugin/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=LIST&main_type=OTHER&title=Run+plugin";187 redirect = root + "/common/plugin/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=LIST&main_type=OTHER&title=Run+plugin"; 188 188 } 189 189 else if ("RunPlugin".equals(cmd)) … … 191 191 // Run another plugin in single-item context 192 192 ItemContext cc = Base.getAndSetCurrentContext(sc, itemType, pageContext, defaultContext); 193 redirect = "../../common/plugin/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=ITEM&main_type=OTHER&title=Run+plugin";193 redirect = root + "/common/plugin/index.jsp?ID="+ID+"&cmd=SelectPlugin&item_type="+itemType.name()+"&context_type=ITEM&main_type=OTHER&title=Run+plugin"; 194 194 } 195 195 else -
branches/2.11-stable/www/biomaterials/bioplates/wells/list_biowells.jsp
r4789 r4852 124 124 function runPlugin(cmd) 125 125 { 126 Table.submitToPopup(formId, cmd, 540, 460);126 Table.submitToPopup(formId, cmd, 740, 540); 127 127 } 128 128 function returnSelected()
Note: See TracChangeset
for help on using the changeset viewer.