Release Name: openCRX/Core 2.12.0 Release Date: 2013-11-04 --------------------------------------------------------------------- Notes: This software is published under the BSD license as listed below. Copyright (c) 2004-2013, CRIXP Corp., Switzerland All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of CRIXP Corp. nor the names of the contributors to openCRX may be used to endorse or promote products derived from this software without specific prior written permission THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------ This product includes software developed by the Apache Software Foundation (http://www.apache.org/). This product includes software developed by contributors to openMDX (http://www.openmdx.org/) --------------------------------------------------------------------- 0. SUMMARY * Many new features (see detailed list below) * Many bug fixes For more information see below and http://www.opencrx.org/opencrx/2.11/new.htm ============================================================================== Version 2.12.0 2013-11-04 ============================================================================== 1. NEW FEATURES CR10008031 Web Calendar. Added CalDavZAP as web calendar. Can be launched with calendar wizard: UserHome > Wizards > Web Calendar. As any CalDAV client supported by openCRX, the web calendar allows to view, add, edit and remove events. CR10011700 Unify edit and new object. The "New..." object form allows to lookup (with auto-completer) existing objects. If an object is selected, the form is pre-filled with the selected object values. After editing the form, the user can then choose either to "Create" (a new) or "Save" (the existing) object. If no existing object is selected, the user only can "Create". CR10011691 Ui1: css classes for UI elements. Custom css classes for UI elements. Allow to specify different classes for field groups and object containers. Css classes are customized in UI XML files with the properties cssClassFieldGroup and cssClassObjectContainer, e.g. <_object> true <_item>Name of activity <_item>0 <_item>0 <_item>10 classActivityName1 classActivityName2 <_content/> CR10011665 document1: document filters. Applied the filter pattern to document1. It is now possible to create DocumentFilters (Saved Searches) for documents. DocumentFilters can be used in SyncFeeds and be exported to WebDAV clients. CR10011280 Grids: show total rows. The total rows in a grid are calculated when going to a page with number > 0. Once calculated, the total rows are displayed for this grid. CR10011664 document1: For a specific document list all objects which reference the document. The transient DocumentReferences are calculated by the database view OOCKE1_TOBJ_DOCREFERENCE. CR10010108 Cascading code fields. Code fields are rendered as cascaded drop-downs for {main category} and {sub category} in case their long texts have the format {main category}|{sub category}. CR10011631 Grids: custom queries for object identities. Grids should support custom-queries for object identities. The search form displays an additional search field in case PortalExtension.getQuery() returns a non-null query for the feature 'grid.getReferencedTypeName() + ":" + identity'. Example: Activities are searched for the attributes name, description or detailedDescription if getQuery() returns the query-extension (UPPER(v.name) LIKE UPPER(" + s0 + ") OR UPPER(v.name) LIKE " + s1 + " OR UPPER(v.description) LIKE UPPER(" + s2 + ") OR UPPER(v.description) LIKE " + s3 + " OR UPPER(v.detailed_description) LIKE UPPER(" + s4 + ") OR UPPER(v.detailed_description) LIKE " + s5 + ")" for the feature 'org:opencrx:kernel:activity1:Activity:identity'. CR10011238 BPI adapter. More actions. 1. Get contacts * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/contact?query=...&position=...&size=... * Method: GET * Sample queries: ?query=thereExistsFullName().like(".*Doe.*");orderByFullName().ascending(); ?query=thereExistsPostalAddress().postalCountry().equalTo(756); ?query=thereExistsEMailAddress().thereExistsEmailAddress().equalTo("joe@opencrx.org"); ?query=thereExistsPhoneNumber().thereExistsPhoneNumberFull().like(".*44.*"); 2. Get organizations * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/organization?query=...&position=...&size=... * Method: GET * Sample queries: ?query=thereExistsFullName().like(".*Suisse.*");orderByFullName().ascending(); ?query=thereExistsPostalAddress().postalCountry().equalTo(756); ?query=thereExistsEMailAddress().thereExistsEmailAddress().equalTo("joe@opencrx.org"); ?query=thereExistsPhoneNumber().thereExistsPhoneNumberFull().like(".*44.*"); 3. Get address groups * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/addressGroup?query=...&position=...&size=... * Method: GET * Sample queries: ?query=name().equalTo("test"); 4. Get address group * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/addressGroup/ * Method: GET 5. Get address group members * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/addressGroup/member?query=...&position=...&size=... * Method: GET * Sample queries: ?queryType=org:opencrx:kernel:account1:PostalAddress&query=postalCountry().equalTo(:short:756); ?queryType=org:opencrx:kernel:account1:EMailAddress&query=thereExistsEmailAddress().like(".*sales.*"); 6. Get assigned activities (with optional query) * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/contact//assignedActivity?query=...&position=...&size=... * Method: GET * Sample queries: ?query=thereExistsAssignedGroup().thereExistsActivityGroup().name().like(".*Bugs.*"); 7. Get account filter * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/accountFilter/ * Method: GET 8. Get filtered contacts (with optional query) * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/accountFilter//contact?query=...&position=...&size=... * Method: GET 9. Get filtered organizations (with optional query) * URL: http://localhost:8080/opencrx-bpi-CRX/org.opencrx.application.bpi1/provider/CRX/segment/Standard/accountFilter//organization?query=...&position=...&size=... * Method: GET CR10011537 Wizard QRencoder. Wizard operating on CrxObjects to create a QR code for a given user input string. By default a QR code is generated for the object's access URL. CR10011507 JoiningListDataBinding. Data binding which allows to collect objects from a specified set of reference features and display in a grid. Here is an example configuration: <_object /> <_content> <_object /> <_content> <_object /> <_content> <_object> org:openmdx:base:ExtentCapable 0..n false true <_content /> <_object> true <_item>Summary <_item>0 <_item>0 <_item>5 5 5 org.openmdx.portal.servlet.databinding.JoiningListDataBinding?features=[followUp,assignedGroup,activityLinkTo,assignedResource,workReportEntry,involvedObject];orderBy=[createdAt.ASCENDING] <_content /> CR10011495 LDAPSynchronizer. Workflow which exports contacts as LDIF. Configuration ------------- * For each segment create Saved Search for Accounts named "LDAPSynchronizer" * The LDAPSynchronizer has the following configuration options (component configuration with name 'LDAPSynchronizer'). Option names are of the form ..