Skip to content

Commit

Permalink
update 5.9.3 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ldoguin committed Apr 9, 2014
1 parent 095616b commit f565d70
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
23 changes: 20 additions & 3 deletions releasenotes/5.9.3/developers.html
Expand Up @@ -58,10 +58,27 @@ <h1 style="margin-left:-0.5em !important;">For Developers</h1>

<h2><a name="anchor-0"></a>Calendar Facet</h2>
<p>We have added a calendar facet that allows to easily set Calendar objects in the repository. They themselves display events in a calendar style, with ability to bind documents to calendars and events. This feature is very useful on Case Management projects, where one wants to review cases on specific events. Thanks to this roadmap item, it is a matter of a few minutes to setup some calendars in your application! The feature is made available in the already existing nuxeo-agenda module.</p>
<h2><a name="anchor-1"></a>REST API Endpoint for Types and Schemas</h2>

<h2><a name="anchor-1"></a>Facilitators for escalation rules configuration</h2>
<p>Simplify frequent escalation rules use cases by providing some functions usable in the conditional expression:</p>
<ul><li>timeSinceWorkflowWasStarted()</li><li>timeSinceTaskWasStarted()</li><li>timeSinceDueDateIsOver()</li><li>timeSinceRuleHasBeenFalse()</li></ul> <p>That way, the following current condition</p>
<div class="embededCode"><pre>

@{!(NodeVariables["last_reminder"] == empty) &amp;&amp;
Context["taskDueTime"].compareTo(CurrentDate.calendar) &lt; 0 &amp;&amp;
Fn.date(NodeVariables["last_reminder"]).days(1).calendar.compareTo(CurrentDate.calendar) &lt; 0}

</pre></div>
<p>would be replaced by:</p>
<div class="embededCode"><pre>
@{timeSinceDueDateIsOver() &gt; 0 &amp;&amp; timeSinceRuleHasBeenFalse(86400000) }
</pre></div>
<p>without having to deal with adding a custom node variable etc... </p>

<h2><a name="anchor-2"></a>REST API Endpoint for Types and Schemas</h2>
<p>We added a new REST API endpoint for document types and schemas. It can be useful when implementing something like a connector. See <a href="https://jira.nuxeo.com/browse/NXP-14114">NXP-14114</a> for details.</p>

<h2><a name="anchor-2"></a>Improve File Download with the REST API</h2>
<h2><a name="anchor-3"></a>Improve File Download with the REST API</h2>


<p>We've work on the Blob property JSON representation. See <a href="https://jira.nuxeo.com/browse/NXP-13616">NXP-13616</a> for details.</p>
Expand Down Expand Up @@ -92,7 +109,7 @@ <h2><a name="anchor-2"></a>Improve File Download with the REST API</h2>
},
</pre></div>

<h2><a name="anchor-3"></a>Nuxeo API Sandbox</h2>
<h2><a name="anchor-4"></a>Nuxeo API Sandbox</h2>
<p>TBA</p>

</div>
Expand Down
7 changes: 4 additions & 3 deletions releasenotes/5.9.3/index.html
Expand Up @@ -76,9 +76,10 @@
<li><a href="developers.html">For Developers</a>
<ul class="second-label">
<li><a href="developers.html#anchor-0">Calendar Facet</a></li>
<li><a href="developers.html#anchor-1">REST API Endpoint for Types and Schemas</a></li>
<li><a href="developers.html#anchor-2">Improve File Download with the REST API</a></li>
<li><a href="developers.html#anchor-3">Nuxeo API Sandbox</a></li>
<li><a href="developers.html#anchor-1">Facilitators for Escalation Rules Configuration</a></li>
<li><a href="developers.html#anchor-2">REST API Endpoint for Types and Schemas</a></li>
<li><a href="developers.html#anchor-3">Improve File Download with the REST API</a></li>
<li><a href="developers.html#anchor-4">Nuxeo API Sandbox</a></li>
</ul>
</li>
<li><a href="upgrade_notes.html">Upgrade Notes</a></li>
Expand Down
Binary file modified releasenotes/5.9.3/jungleBertrand.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f565d70

Please sign in to comment.