Updated Branches:
  refs/heads/trunk 3f6dc9bae -> 2b5bffb03

AMBARI-3803 For config-groups, rename +Exception action to +Override. 
(ababiichuk)


Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/15f3b378
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/15f3b378
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/15f3b378

Branch: refs/heads/trunk
Commit: 15f3b3786ad1aed61e7af240cb4566d9c47db875
Parents: 3f6dc9b
Author: aBabiichuk <ababiic...@cybervisiontech.com>
Authored: Tue Nov 19 14:02:44 2013 +0200
Committer: aBabiichuk <ababiic...@cybervisiontech.com>
Committed: Tue Nov 19 14:02:44 2013 +0200

----------------------------------------------------------------------
 ambari-web/app/controllers/main/service/info/configs.js    | 2 +-
 ambari-web/app/messages.js                                 | 8 ++++----
 ambari-web/app/models/service_config.js                    | 4 ++--
 ambari-web/app/templates/common/configs/service_config.hbs | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/15f3b378/ambari-web/app/controllers/main/service/info/configs.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/controllers/main/service/info/configs.js 
b/ambari-web/app/controllers/main/service/info/configs.js
index 55b3467..26d3b71 100644
--- a/ambari-web/app/controllers/main/service/info/configs.js
+++ b/ambari-web/app/controllers/main/service/info/configs.js
@@ -911,7 +911,7 @@ App.MainServiceInfoConfigsController = 
Em.Controller.extend({
       result.message = Em.I18n.t('services.service.config.failSaveConfig');
     } else {
       if (!result.flag) {
-        result.message = 
Em.I18n.t('services.service.config.failSaveConfigHostExceptions');
+        result.message = 
Em.I18n.t('services.service.config.failSaveConfigHostOverrides');
       }
     }
     console.log("The result from applyCreatdConfToService is: " + result);

http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/15f3b378/ambari-web/app/messages.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/messages.js b/ambari-web/app/messages.js
index 12907ae..34d5cf6 100644
--- a/ambari-web/app/messages.js
+++ b/ambari-web/app/messages.js
@@ -130,7 +130,7 @@ Em.I18n.translations = {
   'common.edit': 'Edit',
   'common.delete': 'Delete',
   'common.empty': 'Empty',
-  'common.exception':'Exception',
+  'common.override':'Override',
   'common.undo':'Undo',
   'common.details':'Details',
   'common.stats':'Stats',
@@ -1107,7 +1107,7 @@ Em.I18n.translations = {
   'services.service.config.msgHDFSMapRServiceStop':'Could not save 
configuration changes.  Please stop both HDFS and MapReduce first.  You will be 
able to save configuration changes after all HDFS and MapReduce components are 
stopped.',
   'services.service.config.failCreateConfig' : 'Failure in creating service 
configuration',
   'services.service.config.failSaveConfig':'Failure in saving service 
configuration',
-  'services.service.config.failSaveConfigHostExceptions':'Failure in saving 
service configuration host exceptions',
+  'services.service.config.failSaveConfigHostOverrides':'Failure in saving 
service configuration overrides',
   'services.service.config.addPropertyWindow.errorMessage':'This is required',
   'services.service.config.addPropertyWindow.error.derivedKey':'This property 
is already defined',
   'services.service.config.stopService.runningHostComponents':'{0} components 
on {1} hosts are still running',
@@ -1272,8 +1272,8 @@ Em.I18n.translations = {
   'hosts.host.add':'Add New Hosts',
   'hosts.table.noHosts':'No hosts to display',
   
-  'hosts.selectHostsDialog.title': 'Select Exception Hosts',
-  'hosts.selectHostsDialog.message': 'Select hosts where the exception has to 
be applied',
+  'hosts.selectHostsDialog.title': 'Select Hosts to override',
+  'hosts.selectHostsDialog.message': 'Select hosts where the override config 
group has to be applied',
   'hosts.selectHostsDialog.filter.placeHolder': 'Filter...',
   'hosts.selectHostsDialog.selectedHostsLink': '{0} out of {1} hosts selected',
 

http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/15f3b378/ambari-web/app/models/service_config.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/models/service_config.js 
b/ambari-web/app/models/service_config.js
index a4094d8..977bae2 100644
--- a/ambari-web/app/models/service_config.js
+++ b/ambari-web/app/models/service_config.js
@@ -700,13 +700,13 @@ App.ServiceConfigProperty = Ember.Object.extend({
       if (!isOriginalSCP) {
         if (!isError && parentSCP != null) {
           if (value === parentSCP.get('value')) {
-            this.set('errorMessage', 'Host exceptions must have different 
value');
+            this.set('errorMessage', 'Configuration overrides must have 
different value');
             isError = true;
           } else {
             var overrides = parentSCP.get('overrides');
             overrides.forEach(function (override) {
               if (self != override && value === override.get('value')) {
-                self.set('errorMessage', 'Multiple host exceptions cannot have 
same value');
+                self.set('errorMessage', 'Multiple configuration overrides 
cannot have same value');
                 isError = true;
               }
             });

http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/15f3b378/ambari-web/app/templates/common/configs/service_config.hbs
----------------------------------------------------------------------
diff --git a/ambari-web/app/templates/common/configs/service_config.hbs 
b/ambari-web/app/templates/common/configs/service_config.hbs
index 88392b0..fd4414f 100644
--- a/ambari-web/app/templates/common/configs/service_config.hbs
+++ b/ambari-web/app/templates/common/configs/service_config.hbs
@@ -114,7 +114,7 @@
                                 {{#if view.canEdit}}
                                        {{#if isPropertyOverridable}}
                                     {{#if App.supports.hostOverrides}}
-                                           <a class="action" {{action 
"createOverrideProperty" this target="view" }} ><i 
class="icon-plus-sign"></i>{{t common.exception}}</a>
+                                           <a class="action" {{action 
"createOverrideProperty" this target="view" }} ><i 
class="icon-plus-sign"></i>{{t common.override}}</a>
                                     {{/if}}
                                        {{/if}}
                                        {{#unless cantBeUndone}}

Reply via email to