rsanchez
2016-09-26 3779a947238c2707b8a04c8a237aa8ddbe4d7a4e
#3296 fix - Increasing matadata value column length and decrease the key
column to 100
3 files modified
changed files
securis/pom.xml patch | view | blame | history
securis/src/main/webapp/admin.html patch | view | blame | history
securis/src/main/webapp/licenses.html patch | view | blame | history
securis/pom.xml
....@@ -3,7 +3,7 @@
33 <modelVersion>4.0.0</modelVersion>
44 <groupId>net.curisit</groupId>
55 <artifactId>securis-server</artifactId>
6
- <version>1.1.6</version>
6
+ <version>1.1.7</version>
77 <name>SeCuris</name>
88 <description>CurisTEC Server Licenses</description>
99 <dependencies>
securis/src/main/webapp/admin.html
....@@ -73,11 +73,11 @@
7373 <tbody>
7474 <tr ng-repeat="row_md in formu['metadata']" >
7575 <td><input type="text" id="md_key" name="md_key" placeholder="" ng-readonly="!field.allow_creation"
76
- class="form-control" ng-model="row_md['key']" ng-required="true" ng-maxlength="150" />
76
+ class="form-control" ng-model="row_md['key']" ng-required="true" ng-maxlength="100" />
7777 </td>
7878 <td>
7979 <input type="text" id="md_value" name="md_value" placeholder=""
80
- class="form-control" ng-model="row_md['value']" ng-required="false" ng-maxlength="150" />
80
+ class="form-control" ng-model="row_md['value']" ng-required="false" ng-maxlength="500" />
8181 </td>
8282 <td>
8383 <input type="checkbox" id="md_mandatory" name="md_mandatory" ng-disabled="!field.allow_creation"
securis/src/main/webapp/licenses.html
....@@ -252,10 +252,10 @@
252252 <td><input type="text" id="md_key" name="md_key"
253253 placeholder="" ng-readonly="true"
254254 class="form-control" ng-model="row_md['key']"
255
- ng-required="true" /></td>
255
+ ng-required="true" ng-maxlength="100" /></td>
256256 <td><input type="text" id="md_value" name="md_value" ng-readonly="row_md['readonly']"
257257 placeholder="" class="form-control" ng-model="row_md['value']"
258
- ng-required="row_md['mandatory']" ng-maxlength="150" /></td>
258
+ ng-required="row_md['mandatory']" ng-maxlength="500" /></td>
259259 </tr>
260260 </tbody>
261261 </table>