Changeset 20520
- Timestamp:
- 03/03/10 09:16:49 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/db/oracle/create-scripts/versions/9.2.0/update_system_properties.sql
r20516 r20520 1336 1336 1337 1337 1338 update pn_property p set 1339 p.property_value = 'Description:' 1340 where 1341 p.context_id = 2000 and 1342 p.language = 'en' and 1343 p.property = 'prm.notification.createsubscription2.description.label'; 1344 1345 update pn_property p set 1346 p.property_value = 'Created:' 1347 where 1348 p.context_id = 2000 and 1349 p.language = 'en' and 1350 p.property = 'prm.notification.editsubscription.createdate.label'; 1351 1352 update pn_property p set 1353 p.property_value = 'Name of Notification:' 1354 where 1355 p.context_id = 2000 and 1356 p.language = 'en' and 1357 p.property = 'prm.notification.editsubscription.name.label'; 1358 1359 update pn_property p set 1360 p.property_value = 'Are you sure you want to delete this notification?' 1361 where 1362 p.context_id = 2000 and 1363 p.language = 'en' and 1364 p.property = 'prm.project.setup.notificationremovalwarning.message'; 1365 1366 update pn_property p set 1367 p.property_value = 'Notifications' 1368 where 1369 p.context_id = 2000 and 1370 p.language = 'en' and 1371 p.property = 'prm.notification.managesubscriptions.module.history'; 1372 1338 1373 prompt Enabling foreign key constraints for PN_PROPERTY... 1339 1374 alter table PN_PROPERTY enable constraint PN_PROPERTY_FK2; trunk/core/web/jsp/notification/CreateSubscription2.jsp
r20493 r20520 99 99 subscription.setTargetObjectType(objectType); 100 100 } 101 101 102 if( StringUtils.isNotEmpty(module)){ 103 if(Module.DIRECTORY == Integer.valueOf(module)){ 104 imageUrl = SessionManager.getJSPRootURL() + "/images/notify/directory_icon.png"; 105 } 106 } 107 102 108 objectType = StringUtils.isNotEmpty(objectType) ? objectType : DatabaseUtils.getTypeForObjectID (targetObjectID); // put this in the call to domainListBean below 103 109 subscription.setUser(user); trunk/core/web/jsp/notification/EditSubscription.jsp
r20446 r20520 334 334 <%-- End Subscription form table --%> 335 335 <tr> 336 <td align="center" colspan="4" class="notify-edit-bottom" height="40"><button type="button" label='Submit' style="width: 100px;height: 25px" onClick="return finish();"> <%=PropertyProvider.get("prm.notification.createsubscription2.submitbutton.label")%></button>336 <td align="center" colspan="4" class="notify-edit-bottom" height="40"><button type="button" style="width: 100px;" onClick="return finish();"> <%=PropertyProvider.get("prm.notification.createsubscription2.submitbutton.label")%></button> 337 337 </td> 338 338 </tr>
