You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jb...@apache.org on 2010/08/16 00:06:12 UTC

svn commit: r985767 - in /commons/sandbox/gsoc/2010/scxml-js/trunk: .gitignore .project demo/drawing-tool/display.html src/site/xdoc/test.xml

Author: jbeard
Date: Sun Aug 15 22:06:12 2010
New Revision: 985767

URL: http://svn.apache.org/viewvc?rev=985767&view=rev
Log:
Updated .gitignore, added Eclipse .project file, added missing display.html, added test xdoc file that shows how to use inline javascript with xdoc.

Added:
    commons/sandbox/gsoc/2010/scxml-js/trunk/.project   (with props)
    commons/sandbox/gsoc/2010/scxml-js/trunk/demo/drawing-tool/display.html   (with props)
    commons/sandbox/gsoc/2010/scxml-js/trunk/src/site/xdoc/test.xml   (with props)
Modified:
    commons/sandbox/gsoc/2010/scxml-js/trunk/.gitignore

Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/.gitignore
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/.gitignore?rev=985767&r1=985766&r2=985767&view=diff
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/.gitignore (original)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/.gitignore Sun Aug 15 22:06:12 2010
@@ -9,7 +9,9 @@ lib/java/*.jar
 build_dbg.bat
 build_dbg.sh
 tmp*
-Session.vim
+*.vim
 *.bak
 test/out.js
 target
+demo/hierarchical-layout/out.svg
+*.log

Added: commons/sandbox/gsoc/2010/scxml-js/trunk/.project
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/.project?rev=985767&view=auto
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/.project (added)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/.project Sun Aug 15 22:06:12 2010
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>scxml-js</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+	</buildSpec>
+	<natures>
+	</natures>
+</projectDescription>

Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/.project
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/gsoc/2010/scxml-js/trunk/demo/drawing-tool/display.html
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/demo/drawing-tool/display.html?rev=985767&view=auto
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/demo/drawing-tool/display.html (added)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/demo/drawing-tool/display.html Sun Aug 15 22:06:12 2010
@@ -0,0 +1,20 @@
+<!--
+ * 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.
+-->
+<html>
+	<head></head>
+	<body style="width:98%;height:98%"></body>
+</html>

Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/demo/drawing-tool/display.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: commons/sandbox/gsoc/2010/scxml-js/trunk/src/site/xdoc/test.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/site/xdoc/test.xml?rev=985767&view=auto
==============================================================================
--- commons/sandbox/gsoc/2010/scxml-js/trunk/src/site/xdoc/test.xml (added)
+++ commons/sandbox/gsoc/2010/scxml-js/trunk/src/site/xdoc/test.xml Sun Aug 15 22:06:12 2010
@@ -0,0 +1,32 @@
+<?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>Test</title>
+    <author email="jbeard@apache.org">Jacob Beard</author>
+  </properties>
+
+  <body>
+	<script><![CDATA[
+		alert("hello world");
+	//]]></script>
+  </body>
+</document>
+
+
+

Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/src/site/xdoc/test.xml
------------------------------------------------------------------------------
    svn:eol-style = native