Author: guixl Date: Mon Jul 5 13:52:27 2010 New Revision: 960599 URL: http://svn.apache.org/viewvc?rev=960599&view=rev Log: add document page for web site
Added: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/datamodel/ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/datamodel/scxml-2010-07-05.ecore (with props) commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document/ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document.xml (with props) commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document/history.xml (with props) Modified: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/site.xml Added: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/datamodel/scxml-2010-07-05.ecore URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/datamodel/scxml-2010-07-05.ecore?rev=960599&view=auto ============================================================================== --- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/datamodel/scxml-2010-07-05.ecore (added) +++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/datamodel/scxml-2010-07-05.ecore Mon Jul 5 13:52:27 2010 @@ -0,0 +1,208 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ecore:EPackage xmi:version="2.0" + xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="modeling" + nsURI="org.apache.commons.scxml" nsPrefix="org.apache.commons.scxml"> + <eClassifiers xsi:type="ecore:EClass" name="NamedElement"> + <eStructuralFeatures xsi:type="ecore:EReference" name="sourceConnection" upperBound="-1" + eType="#//Transition" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="targetConnection" upperBound="-1" + eType="#//Transition" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="dataModel" upperBound="-1" + eType="#//DataModel" containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="State" eSuperTypes="#//NamedElement"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="initial" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="onEntry" eType="#//OnEntry" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="onExit" eType="#//OnExit" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="initState" eType="#//InitialState" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="subState" upperBound="-1" + eType="#//State" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="finalState" upperBound="-1" + eType="#//FinalState" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="subParallel" upperBound="-1" + eType="#//Parallel" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="historyState" upperBound="-1" + eType="#//HistoryState" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="anchor" upperBound="-1" + eType="#//Anchor" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="invoke" eType="#//Invoke" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Transition"> + <eStructuralFeatures xsi:type="ecore:EReference" name="targetStatus" eType="#//NamedElement"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="sourceStatus" eType="#//NamedElement"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="event" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="cond" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="target" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="anchor" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Assign" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="dataid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="expr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="ServiceTemplate"> + <eStructuralFeatures xsi:type="ecore:EReference" name="transList" upperBound="-1" + eType="#//Transition" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="stateList" upperBound="-1" + eType="#//State" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="initial" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="xmlns" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="version" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="profile" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="exmode" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="finalState" upperBound="-1" + eType="#//FinalState" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="parallel" upperBound="-1" + eType="#//Parallel" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="dataModel" upperBound="-1" + eType="#//DataModel" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="script" eType="#//Script" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="ExecutableContent"/> + <eClassifiers xsi:type="ecore:EClass" name="OnEntry"> + <eStructuralFeatures xsi:type="ecore:EReference" name="executableContext" upperBound="-1" + eType="#//ExecutableContent" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="script" eType="#//Script" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="OnExit"> + <eStructuralFeatures xsi:type="ecore:EReference" name="executableContext" upperBound="-1" + eType="#//ExecutableContent" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="script" eType="#//Script" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="InitialState" eSuperTypes="#//NamedElement"/> + <eClassifiers xsi:type="ecore:EClass" name="FinalState" eSuperTypes="#//NamedElement"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="onEntry" eType="#//OnEntry" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="onExit" eType="#//OnExit" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="donedata" eType="#//Donedata" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Parallel" eSuperTypes="#//NamedElement"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="onEntry" eType="#//OnEntry" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="onExit" eType="#//OnExit" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="parallel" upperBound="-1" + eType="#//Parallel" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="state" upperBound="-1" + eType="#//State" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="historyState" upperBound="-1" + eType="#//HistoryState" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="anchor" upperBound="-1" + eType="#//Anchor" containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="HistoryState" eSuperTypes="#//NamedElement"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Raise" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="event" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="If" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="cond" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="elseif" upperBound="-1" + eType="#//ElseIf" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="else" eType="#//Else" containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="ElseIf" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="cond" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Else" eSuperTypes="#//ExecutableContent"/> + <eClassifiers xsi:type="ecore:EClass" name="Log" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="label" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="expr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="level" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="ExtenExecContent" eSuperTypes="#//ExecutableContent"/> + <eClassifiers xsi:type="ecore:EClass" name="DataModel"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="schema" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="data" upperBound="-1" eType="#//Data" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Data"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="src" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="expr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="#//Content" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Validate" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="location" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="schema" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Param" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="name" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="expr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Script"/> + <eClassifiers xsi:type="ecore:EClass" name="Anchor"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="snapshot" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Send" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="event" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="eventexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="target" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="targetexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="idlocation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="delay" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="delayexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="namelist" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="hints" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="hintsexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="param" upperBound="-1" + eType="#//Param" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="#//Content" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Cancel" eSuperTypes="#//ExecutableContent"> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="sendid" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="sendidexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Content"> + <eStructuralFeatures xsi:type="ecore:EReference" name="content" upperBound="-1" + eType="#//Content" containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Donedata"> + <eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="#//Content" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="param" upperBound="-1" + eType="#//Param" containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Invoke"> + <eStructuralFeatures xsi:type="ecore:EReference" name="content" eType="#//Content" + containment="true"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="param" upperBound="-1" + eType="#//Param" containment="true"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="type" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="typeexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="src" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="srcexpr" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="id" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="idlocation" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="namelist" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EAttribute" name="autoforward" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> + <eStructuralFeatures xsi:type="ecore:EReference" name="finalize" eType="#//Finalize" + containment="true"/> + </eClassifiers> + <eClassifiers xsi:type="ecore:EClass" name="Finalize"> + <eStructuralFeatures xsi:type="ecore:EReference" name="executableContent" upperBound="-1" + eType="#//ExecutableContent" containment="true"/> + </eClassifiers> +</ecore:EPackage> Propchange: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/resources/document/datamodel/scxml-2010-07-05.ecore ------------------------------------------------------------------------------ svn:eol-style = native Modified: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/site.xml?rev=960599&r1=960598&r2=960599&view=diff ============================================================================== --- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/site.xml (original) +++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/site.xml Mon Jul 5 13:52:27 2010 @@ -15,15 +15,18 @@ * See the License for the specific language governing permissions and * limitations under the License. --> -<project name="Commons SCXML Eclipse"> +<project name="Visual SCXML"> <body> - <menu name="Commons SCXML Eclipse"> + <menu name="Visual SCXML"> <item name="Overview" href="/index.html"/> <item name="User Guide" href="/guide.html" collapse="true"> <item name="Run source code" href="/guide/run-source-code.html" /> <item name="Using Visual SCXML" href="/guide/using-visual-scxml.html" /> </item> + <item name="Document" href="/document.html" collapse="true"> + <item name="Data Model History" href="/document/history.html" /> + </item> <item name="FAQ" href="/faq.html" /> <item name="Wiki" href="http://wiki.apache.org/commons/SCXML/HomePage"/> </menu> Added: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document.xml URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document.xml?rev=960599&view=auto ============================================================================== --- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document.xml (added) +++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document.xml Mon Jul 5 13:52:27 2010 @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +--> + +<document> + + <properties> + <title>Visual SCXML Document</title> + <author email="d...@commons.apache.org">Commons Documentation Team</author> + </properties> + + <body> + + <section name="Visual SCXML Document"> + <p> + This is a collection of documents about all things of Eclipse based Visual SCXML editor. + </p> + + <ul> + <li><a href="document/history.html">Data Model History</a> - + a collection of Visual SCXML data model files ordered by date</li> + </ul> + + </section> + + </body> + +</document> Propchange: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document/history.xml URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document/history.xml?rev=960599&view=auto ============================================================================== --- commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document/history.xml (added) +++ commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document/history.xml Mon Jul 5 13:52:27 2010 @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. +--> + +<document> + + <properties> + <title>Visual SCXML Data Model History</title> + <author email="d...@commons.apache.org">Commons Documentation Team</author> + </properties> + + <body> + + <section name="Visual SCXML Data Model History"> + + <p>State Chart XML (SCXML) is a W3C Working Draft, it may change in the coming days, so our project's SCXML data model should change with + W3C recommendation specification together. This is a list of Visual SCXML's data model change history. + </p> + + <subsection name="Version List of 2010"> + <ul> + <li><a href="datamodel/scxml-2010-07-05.ecore">Data Model Version 2010-07-05</a> - + Corresponding to <a href="http://www.w3.org/TR/2010/WD-scxml-20100513/" target="_blank">SCXML W3C Working Draft 13 May 2010</a></li> + </ul> + </subsection> + + </section> + + </body> + +</document> Propchange: commons/sandbox/gsoc/2010/scxml-eclipse/trunk/src/site/xdoc/document/history.xml ------------------------------------------------------------------------------ svn:eol-style = native