diff --git a/config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.get.html.ftl b/config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.get.html.ftl index c174bdfa26..ac7a9444ae 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.get.html.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.get.html.ftl @@ -48,6 +48,8 @@
  • CMIS Web Services Binding: WSDL Documents
  • +

    You can also browse this repository via the CMIS FileShare browser.

    +
    + CMIS Repository Information
    @@ -126,6 +128,10 @@
  • Home Page
  • Source Code for TCK
  • +

    CMIS FileShare

    +

    Provide Feedback

    "); + } + + public static void printEndTable(PrintWriter pw) { + pw.println("
    "); + } + + public static void printRow(PrintWriter pw, String... cols) { + pw.print(""); + + for (String col : cols) { + pw.print("" + col + ""); + } + + pw.println(""); + } +}