From 360354fef51c43efa1f21ea642b167c1ff832a6b Mon Sep 17 00:00:00 2001 From: David Caruana Date: Thu, 29 Oct 2009 17:32:24 +0000 Subject: [PATCH] Merged CMIS063 to HEAD 15943: Addition of CMIS FileShare to cmis.html front page. 15974: Merge content type to stylesheet change from latest CMIS FileShare. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17238 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../org/alfresco/cmis/cmis.get.html.ftl | 6 + .../cmis/fileshare/info/BrowseServlet.java | 248 ++++++++++++++++++ .../de/fmui/cmis/fileshare/info/InfoUtil.java | 75 ++++++ 3 files changed, 329 insertions(+) create mode 100644 source/java/de/fmui/cmis/fileshare/info/BrowseServlet.java create mode 100644 source/java/de/fmui/cmis/fileshare/info/InfoUtil.java 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(""); + } +}