Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 04D5C200B8C for ; Mon, 12 Sep 2016 14:42:58 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 035D2160AC8; Mon, 12 Sep 2016 12:42:58 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 48268160AB8 for ; Mon, 12 Sep 2016 14:42:57 +0200 (CEST) Received: (qmail 23899 invoked by uid 500); 12 Sep 2016 12:42:56 -0000 Mailing-List: contact commits-help@velocity.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@velocity.apache.org Delivered-To: mailing list commits@velocity.apache.org Received: (qmail 23890 invoked by uid 99); 12 Sep 2016 12:42:56 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Sep 2016 12:42:56 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id CDA5AC0D7E for ; Mon, 12 Sep 2016 12:42:55 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.124 X-Spam-Level: X-Spam-Status: No, score=-0.124 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.124] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id OEuQFQ9sMEv8 for ; Mon, 12 Sep 2016 12:42:55 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTP id AD3CD5F230 for ; Mon, 12 Sep 2016 12:42:54 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 9406CE0099 for ; Mon, 12 Sep 2016 12:42:53 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 9E9CD3A0EDB for ; Mon, 12 Sep 2016 12:42:52 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1760353 - /velocity/site/cms/trunk/content/engine/devel/configuration.mdtext Date: Mon, 12 Sep 2016 12:42:52 -0000 To: commits@velocity.apache.org From: cbrisson@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160912124252.9E9CD3A0EDB@svn01-us-west.apache.org> archived-at: Mon, 12 Sep 2016 12:42:58 -0000 Author: cbrisson Date: Mon Sep 12 12:42:51 2016 New Revision: 1760353 URL: http://svn.apache.org/viewvc?rev=1760353&view=rev Log: document the new option (by the way, it fixes VELOCITY-802) Modified: velocity/site/cms/trunk/content/engine/devel/configuration.mdtext Modified: velocity/site/cms/trunk/content/engine/devel/configuration.mdtext URL: http://svn.apache.org/viewvc/velocity/site/cms/trunk/content/engine/devel/configuration.mdtext?rev=1760353&r1=1760352&r2=1760353&view=diff ============================================================================== --- velocity/site/cms/trunk/content/engine/devel/configuration.mdtext (original) +++ velocity/site/cms/trunk/content/engine/devel/configuration.mdtext Mon Sep 12 12:42:51 2016 @@ -93,6 +93,9 @@ Below are listed the configuration keys ## Resource Management +**`resource.manager.instance = null` +> Living Java instance, that must implement the interface org.apache.velocity.runtime.resource.ResourceManager. This property can only be set programmatically, and takes precedence over the next property. It is otherwise used by Velocity to store its actual resource manager once instanciated. + **`resource.manager.class = org.apache.velocity.runtime.resource.ResourceManagerImpl`** > Replace the Velocity default Resource Manager class. A resource manager implementation must implement the (`org.apache.velocity.runtime.resource.ResourceManager`)[apidocs/org/apache/velocity/runtime/resource/ResourceManager.html] interface. A description of the requirements of a resource manager is out of scope for this document. Implementors are encouraged to review the default implementation.