mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jcambon
21.42.2008 bb11f542e48b5972f860698e85484316afec7946
Related to issue #2004:
- Property strings with associated patterns are now supported
- Added a space betwenn 'Synopsis' and 'Description' in property table
1 files modified
9 ■■■■■ changed files
opends/src/server/org/opends/server/admin/doc/ConfigGuideGeneration.java 9 ●●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/admin/doc/ConfigGuideGeneration.java
@@ -448,7 +448,7 @@
    // Property table
    startTable();
    tableRow("Description",
      ((prop.getSynopsis() != null) ? prop.getSynopsis().toString() : "") +
      ((prop.getSynopsis() != null) ? prop.getSynopsis().toString()+ " " : "") +
      ((prop.getDescription() != null) ?
        prop.getDescription().toString() : ""));
@@ -582,7 +582,6 @@
      @Override
      public String visitAttributeType(
        AttributeTypePropertyDefinition prop, Void p) {
        return "The name of an attribute type defined in the server schema.";
      }
@@ -694,7 +693,11 @@
      @Override
      public String visitString(StringPropertyDefinition prop, Void p) {
        return "A String";
        String retStr = "A String";
        if (prop.getPatternSynopsis() != null) {
          retStr = prop.getPatternSynopsis().toString();
        }
        return retStr;
      }
      @Override