Return-Path: Delivered-To: apmail-chemistry-commits-archive@www.apache.org Received: (qmail 404 invoked from network); 8 Mar 2011 18:44:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Mar 2011 18:44:56 -0000 Received: (qmail 50554 invoked by uid 500); 8 Mar 2011 15:58:16 -0000 Delivered-To: apmail-chemistry-commits-archive@chemistry.apache.org Received: (qmail 50522 invoked by uid 500); 8 Mar 2011 15:58:15 -0000 Mailing-List: contact commits-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list commits@chemistry.apache.org Received: (qmail 50514 invoked by uid 99); 8 Mar 2011 15:58:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Mar 2011 15:58:15 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Mar 2011 15:58:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 47B98238899C; Tue, 8 Mar 2011 15:57:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1079403 - /chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/java/org/apache/chemistry/opencmis/server/impl/atompub/NavigationService.java Date: Tue, 08 Mar 2011 15:57:55 -0000 To: commits@chemistry.apache.org From: fmui@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110308155755.47B98238899C@eris.apache.org> Author: fmui Date: Tue Mar 8 15:57:54 2011 New Revision: 1079403 URL: http://svn.apache.org/viewvc?rev=1079403&view=rev Log: fixed CMIS-328: NavigationService.getCheckedOutDocs expects request parameter id. Should be folderId. Modified: chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/java/org/apache/chemistry/opencmis/server/impl/atompub/NavigationService.java Modified: chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/java/org/apache/chemistry/opencmis/server/impl/atompub/NavigationService.java URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/java/org/apache/chemistry/opencmis/server/impl/atompub/NavigationService.java?rev=1079403&r1=1079402&r2=1079403&view=diff ============================================================================== --- chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/java/org/apache/chemistry/opencmis/server/impl/atompub/NavigationService.java (original) +++ chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-bindings/src/main/java/org/apache/chemistry/opencmis/server/impl/atompub/NavigationService.java Tue Mar 8 15:57:54 2011 @@ -408,7 +408,7 @@ public final class NavigationService { public static void getCheckedOutDocs(CallContext context, CmisService service, String repositoryId, HttpServletRequest request, HttpServletResponse response) throws Exception { // get parameters - String folderId = getStringParameter(request, Constants.PARAM_ID); + String folderId = getStringParameter(request, Constants.PARAM_FOLDER_ID); String filter = getStringParameter(request, Constants.PARAM_FILTER); String orderBy = getStringParameter(request, Constants.PARAM_ORDER_BY); Boolean includeAllowableActions = getBooleanParameter(request, Constants.PARAM_ALLOWABLE_ACTIONS);