| 1 |
<!--
|
| 2 |
* Licensed to the Apache Software Foundation (ASF) under one or more
|
| 3 |
* contributor license agreements. See the NOTICE file distributed with
|
| 4 |
* this work for additional information regarding copyright ownership.
|
| 5 |
* The ASF licenses this file to You under the Apache License, Version 2.0
|
| 6 |
* (the "License"); you may not use this file except in compliance with
|
| 7 |
* the License. You may obtain a copy of the License at
|
| 8 |
*
|
| 9 |
* http://www.apache.org/licenses/LICENSE-2.0
|
| 10 |
*
|
| 11 |
* Unless required by applicable law or agreed to in writing, software
|
| 12 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
| 13 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 |
* See the License for the specific language governing permissions and
|
| 15 |
* limitations under the License.
|
| 16 |
-->
|
| 17 |
$Id$
|
| 18 |
|
| 19 |
Commons SCXML Package
|
| 20 |
Version 0.8
|
| 21 |
Release Notes
|
| 22 |
|
| 23 |
INTRODUCTION:
|
| 24 |
|
| 25 |
Commons SCXML 0.8 is a minor release containing a few enhancements and
|
| 26 |
bug fixes. See about section at the end for general information on
|
| 27 |
Commons SCXML.
|
| 28 |
|
| 29 |
NEW FEATURES:
|
| 30 |
|
| 31 |
o [SCXML-62] - Fragment URLs are now supported by the src attribute of the
|
| 32 |
<state> element
|
| 33 |
|
| 34 |
o [SCXML-64] - Better error reporting for ignored or misplaced elements by
|
| 35 |
parser (SCXMLParser class)
|
| 36 |
|
| 37 |
BUG FIXES:
|
| 38 |
|
| 39 |
o [SCXML-66] - Potential race condition while getting path segments for
|
| 40 |
transitions
|
| 41 |
|
| 42 |
o [SCXML-67] - <state> does not process <parallel> children correctly
|
| 43 |
|
| 44 |
OTHER COMMENTS:
|
| 45 |
|
| 46 |
o This is the first release of Commons SCXML using Maven 2.
|
| 47 |
|
| 48 |
ABOUT COMMONS SCXML:
|
| 49 |
|
| 50 |
The Commons SCXML (State Chart XML) project provides a generic
|
| 51 |
state-machine based execution environment. It borrows most semantics
|
| 52 |
from its namesake Working Draft at the W3C. Anything that can be
|
| 53 |
represented as a UML state chart -- business process flows, view
|
| 54 |
navigation bits, interaction or dialog management, and many more -- can
|
| 55 |
leverage the Commons SCXML library. The library abstracts out the
|
| 56 |
environment interfaces, and can be used in numerous server-side and
|
| 57 |
client-side runtimes.
|
| 58 |
|
| 59 |
Please visit the website for project information and documentation:
|
| 60 |
|
| 61 |
http://commons.apache.org/scxml/
|
| 62 |
|