From 3779a947238c2707b8a04c8a237aa8ddbe4d7a4e Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Mon, 26 Sep 2016 14:46:54 +0000
Subject: [PATCH] #3296 fix - Increasing matadata value column length and decrease the key column to 100

---
 securis/src/main/webapp/admin.html    |    4 ++--
 securis/src/main/webapp/licenses.html |    4 ++--
 securis/pom.xml                       |    2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/securis/pom.xml b/securis/pom.xml
index e5e5882..de4d451 100644
--- a/securis/pom.xml
+++ b/securis/pom.xml
@@ -3,7 +3,7 @@
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>net.curisit</groupId>
 	<artifactId>securis-server</artifactId>
-	<version>1.1.6</version>
+	<version>1.1.7</version>
 	<name>SeCuris</name>
 	<description>CurisTEC Server Licenses</description>
 	<dependencies>
diff --git a/securis/src/main/webapp/admin.html b/securis/src/main/webapp/admin.html
index 8ef388b..2f4bdd7 100644
--- a/securis/src/main/webapp/admin.html
+++ b/securis/src/main/webapp/admin.html
@@ -73,11 +73,11 @@
 										<tbody>
 											<tr ng-repeat="row_md in formu['metadata']" >
 											  <td><input type="text" id="md_key" name="md_key" placeholder="" ng-readonly="!field.allow_creation"
-													class="form-control" ng-model="row_md['key']" ng-required="true" ng-maxlength="150" />
+													class="form-control" ng-model="row_md['key']" ng-required="true" ng-maxlength="100" />
 											  </td>
 											  <td>
 												<input type="text" id="md_value" name="md_value" placeholder=""
-													class="form-control" ng-model="row_md['value']" ng-required="false" ng-maxlength="150" />
+													class="form-control" ng-model="row_md['value']" ng-required="false" ng-maxlength="500" />
 											  </td>
 											  <td>
 												<input type="checkbox" id="md_mandatory" name="md_mandatory" ng-disabled="!field.allow_creation"
diff --git a/securis/src/main/webapp/licenses.html b/securis/src/main/webapp/licenses.html
index f8394b7..34028c5 100644
--- a/securis/src/main/webapp/licenses.html
+++ b/securis/src/main/webapp/licenses.html
@@ -252,10 +252,10 @@
 									<td><input type="text" id="md_key" name="md_key"
 										placeholder="" ng-readonly="true"
 										class="form-control" ng-model="row_md['key']"
-										ng-required="true" /></td>
+										ng-required="true" ng-maxlength="100" /></td>
 									<td><input type="text" id="md_value" name="md_value" ng-readonly="row_md['readonly']"
 										placeholder="" class="form-control" ng-model="row_md['value']"
-										ng-required="row_md['mandatory']" ng-maxlength="150" /></td>
+										ng-required="row_md['mandatory']" ng-maxlength="500" /></td>
 								</tr>
 							</tbody>
 						</table>

--
Gitblit v1.3.2