autoconfig option

This commit is contained in:
Peter Hormanns 2019-10-24 19:21:58 +02:00
parent 1447233225
commit 2b79ff2d11
2 changed files with 6 additions and 2 deletions

View File

@ -25,7 +25,7 @@ public class DomainOptionValues extends DefaultSelectableValues {
list.add(new BooleanListValue("indexes")); list.add(new BooleanListValue("indexes"));
list.add(new BooleanListValue("multiviews")); list.add(new BooleanListValue("multiviews"));
list.add(new BooleanListValue("letsencrypt")); list.add(new BooleanListValue("letsencrypt"));
// list.add(new BooleanListValue("php5")); list.add(new BooleanListValue("autoconfig"));
return list; return list;
} }

View File

@ -66,7 +66,11 @@ public class PropertyRemote implements IRemote {
if ("name".equals(fieldName)) { if ("name".equals(fieldName)) {
propertyProperties.put("displaySequence", "1"); propertyProperties.put("displaySequence", "1");
} }
propertyProperties.put("displayVisible", "always"); if ("locked".equals(fieldName)) {
propertyProperties.put("displayVisible", "never");
} else {
propertyProperties.put("displayVisible", "always");
}
propertyProperties.put("minLength", "0"); propertyProperties.put("minLength", "0");
propertyProperties.put("maxLength", "999"); propertyProperties.put("maxLength", "999");
String regExp = fieldIO.validation(); String regExp = fieldIO.validation();