Changeset 20522
- Timestamp:
- 03/04/10 06:50:08 (5 months ago)
- Files:
-
- trunk/core/db/oracle/create-scripts/versions/9.2.0/update_system_properties.sql (modified) (1 diff)
- trunk/core/web/jsp/methodology/Main.jsp (modified) (1 diff)
- trunk/core/web/jsp/methodology/MethodologyList.jsp (modified) (1 diff)
- trunk/core/web/jsp/methodology/PropertiesEdit.jsp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/db/oracle/create-scripts/versions/9.2.0/update_system_properties.sql
r20520 r20522 1370 1370 p.language = 'en' and 1371 1371 p.property = 'prm.notification.managesubscriptions.module.history'; 1372 1373 update pn_property p set 1374 p.property_value = 'Apply Template' 1375 where 1376 p.context_id = 2000 and 1377 p.language = 'en' and 1378 p.property = 'prm.template.main.managetemplates.heading'; 1379 1380 update pn_property p set 1381 p.property_value = 'Templates' 1382 where 1383 p.context_id = 2000 and 1384 p.language = 'en' and 1385 p.property = 'prm.global.tool.template.name'; 1372 1386 1373 1387 prompt Enabling foreign key constraints for PN_PROPERTY... trunk/core/web/jsp/methodology/Main.jsp
r20389 r20522 109 109 </tb:setAttribute> 110 110 <tb:band name="standard"> 111 <tb:button type="modify" />111 <tb:button type="modify" label='<%= PropertyProvider.get("prm.template.main.edit.button.tooltip")%>' /> 112 112 </tb:band> 113 113 </tb:toolbar> trunk/core/web/jsp/methodology/MethodologyList.jsp
r20521 r20522 204 204 205 205 <tb:band name="action" groupHeading='<%= PropertyProvider.get("prm.template.main.managetemplates.heading")%>'> 206 <tb:button type="custom" label='<%= PropertyProvider.get("prm.template.main.newbusiness.button.tooltip")%>' 207 function='javascript:createNewSpace(\'business\');' /> 206 208 <tb:button type="custom" label='<%= PropertyProvider.get("prm.template.main.newproject.button.tooltip")%>' 207 209 function='javascript:createNewSpace(\'project\');' /> 208 <tb:button type="custom" label='<%= PropertyProvider.get("prm.template.main.newbusiness.button.tooltip")%>'209 function='javascript:createNewSpace(\'business\');' />210 210 </tb:band> 211 211 </tb:toolbar> trunk/core/web/jsp/methodology/PropertiesEdit.jsp
r20401 r20522 96 96 97 97 if(!checkTextbox(myForm.methodologySpaceName,"<%=PropertyProvider.get("prm.template.create.name.required.message")%>")) return false; 98 if(!checkTextbox(myForm.useScenario,"<%=PropertyProvider.get("prm.template.create.usescenario.required.message")%>")) return false;98 // if(!checkTextbox(myForm.useScenario,"<%=PropertyProvider.get("prm.template.create.usescenario.required.message")%>")) return false; 99 99 return true; 100 100 } 101 101 102 // TODO: REMOVE THIS METHOD 102 103 // hide/unhide global checkbox if personal workspace is selected 103 104 function checkWorkspaceSelection(selectedValue){
