Changeset 20522

Show
Ignore:
Timestamp:
03/04/10 06:50:08 (5 months ago)
Author:
uroslates
Message:
  • bug-3304 fix.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/core/db/oracle/create-scripts/versions/9.2.0/update_system_properties.sql

    r20520 r20522  
    13701370      p.language = 'en' and 
    13711371      p.property = 'prm.notification.managesubscriptions.module.history'; 
     1372 
     1373update pn_property p set 
     1374          p.property_value = 'Apply Template' 
     1375where  
     1376          p.context_id = 2000 and 
     1377          p.language = 'en' and 
     1378      p.property = 'prm.template.main.managetemplates.heading'; 
     1379       
     1380update pn_property p set 
     1381          p.property_value = 'Templates' 
     1382where  
     1383          p.context_id = 2000 and 
     1384          p.language = 'en' and 
     1385      p.property = 'prm.global.tool.template.name'; 
    13721386       
    13731387prompt Enabling foreign key constraints for PN_PROPERTY... 
  • trunk/core/web/jsp/methodology/Main.jsp

    r20389 r20522  
    109109                        </tb:setAttribute> 
    110110                        <tb:band name="standard"> 
    111                                 <tb:button type="modify" /> 
     111                                <tb:button type="modify" label='<%= PropertyProvider.get("prm.template.main.edit.button.tooltip")%>' /> 
    112112                        </tb:band> 
    113113                </tb:toolbar> 
  • trunk/core/web/jsp/methodology/MethodologyList.jsp

    r20521 r20522  
    204204         
    205205        <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\');' /> 
    206208                <tb:button type="custom" label='<%= PropertyProvider.get("prm.template.main.newproject.button.tooltip")%>'  
    207209                        function='javascript:createNewSpace(\'project\');' /> 
    208                 <tb:button type="custom" label='<%= PropertyProvider.get("prm.template.main.newbusiness.button.tooltip")%>'  
    209                         function='javascript:createNewSpace(\'business\');' /> 
    210210        </tb:band> 
    211211</tb:toolbar> 
  • trunk/core/web/jsp/methodology/PropertiesEdit.jsp

    r20401 r20522  
    9696         
    9797        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; 
    9999        return true; 
    100100 } 
    101101 
     102// TODO: REMOVE THIS METHOD  
    102103// hide/unhide global checkbox if personal workspace is selected 
    103104function checkWorkspaceSelection(selectedValue){