You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ga...@apache.org on 2016/12/12 03:31:00 UTC

incubator-ranger git commit: RANGER-1245: Ranger UI group name limitation (32 characters in UI)

Repository: incubator-ranger
Updated Branches:
  refs/heads/master 651be2b08 -> 36da4241c


RANGER-1245: Ranger UI group name limitation (32 characters in UI)

Signed-off-by: Gautam Borad <ga...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/36da4241
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/36da4241
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/36da4241

Branch: refs/heads/master
Commit: 36da4241c2c81d6b5fe4d06b9312f1e19060f1f2
Parents: 651be2b
Author: Mehul Parikh <me...@freestoneinfotech.com>
Authored: Thu Nov 17 18:11:23 2016 +0530
Committer: Gautam Borad <ga...@apache.org>
Committed: Mon Dec 12 08:57:52 2016 +0530

----------------------------------------------------------------------
 security-admin/src/main/webapp/scripts/models/VXGroup.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/36da4241/security-admin/src/main/webapp/scripts/models/VXGroup.js
----------------------------------------------------------------------
diff --git a/security-admin/src/main/webapp/scripts/models/VXGroup.js b/security-admin/src/main/webapp/scripts/models/VXGroup.js
index 5818f43..a399de2 100644
--- a/security-admin/src/main/webapp/scripts/models/VXGroup.js
+++ b/security-admin/src/main/webapp/scripts/models/VXGroup.js
@@ -70,7 +70,7 @@ define(function(require){
 					type		: 'Text',
 					title		: localization.tt("lbl.groupName") +' *',
 					validators  : ['required',{type:'regexp',regexp:/^[a-zA-Z][a-zA-Z0-9_'&-]*[A-Za-z0-9]$/i,message :'Name must start with alphabet and must end with alphabet or number and must have atleast two chars.Allowed special characters _ ,\' ,& ,-'}],
-					editorAttrs 	:{ 'maxlength': 32},
+                                        editorAttrs 	:{ 'maxlength': 255},
 				},
 				description : {
 					type		: 'TextArea',