Author: paperwing
Date: 2012-01-16 15:33:35 -0800 (Mon, 16 Jan 2012)
New Revision: 28026
Added:
csplugins/trunk/toronto/yuedong/paperwing-install/
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/checkout.sh
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install.sh
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install_jogl.sh
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/jogl_repacked/
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/jogl_repacked/jogl-natives.jar
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/jogl_repacked/jogl.jar
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patch.sh
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/gui-distribution.patch
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/presentation-impl.patch
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/swing-application-impl.patch
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/vizmap-gui-impl.patch
csplugins/trunk/toronto/yuedong/paperwing-install/controls.txt
csplugins/trunk/toronto/yuedong/paperwing-install/download_and_install.sh
csplugins/trunk/toronto/yuedong/paperwing-install/instructions.txt
csplugins/trunk/toronto/yuedong/paperwing-install/start.sh
Log:
first release of 3d renderer installer, which should be capable of downloading,
patching, and running Cytoscape with the 3d renderer
Added: csplugins/trunk/toronto/yuedong/paperwing-install/bundles/checkout.sh
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/bundles/checkout.sh
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/bundles/checkout.sh
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+# checkout the renderer
+svn co
http://chianti.ucsd.edu/svn/csplugins/trunk/toronto/yuedong/paperwing-impl
+
+# checkout bundles that need to be patched
+for i in presentation-impl swing-application-impl vizmap-gui-impl
+do
+ svn co http://chianti.ucsd.edu/svn/core3/impl/trunk/$i
+done
+
+# checkout cytoscape
+svn co http://chianti.ucsd.edu/svn/core3/gui-distribution/trunk
gui-distribution
Property changes on:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/checkout.sh
___________________________________________________________________
Added: svn:executable
+
Added: csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install.sh
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install.sh
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install.sh
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+# build renderer
+pushd paperwing-impl
+mvn clean install
+popd
+
+# build patched parts of Cytoscape core
+for i in presentation-impl swing-application-impl vizmap-gui-impl
+do
+ pushd $i
+ mvn clean install
+ popd
+done
+
+# build Cytoscape
+pushd gui-distribution
+mvn clean install
+popd
+
+
+
Property changes on:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install.sh
___________________________________________________________________
Added: svn:executable
+
Added: csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install_jogl.sh
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install_jogl.sh
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install_jogl.sh
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+GROUP_ID=cytoscape-temp
+VERSION=2.0-b23-20110303
+
+for FILE in jogl_repacked/*.jar
+do
+ ARTIFACT_ID=`basename $FILE .jar`
+ mvn install:install-file -Dfile=$FILE -DgroupId=$GROUP_ID
-DartifactId=$ARTIFACT_ID -Dversion=$VERSION -Dpackaging=jar
+done
Property changes on:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/install_jogl.sh
___________________________________________________________________
Added: svn:executable
+
Added:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/jogl_repacked/jogl-natives.jar
===================================================================
(Binary files differ)
Property changes on:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/jogl_repacked/jogl-natives.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/jogl_repacked/jogl.jar
===================================================================
(Binary files differ)
Property changes on:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/jogl_repacked/jogl.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patch.sh
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patch.sh
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patch.sh
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+for i in patches/*.patch
+do
+ patch -r patch.rej -p0 -N <$i
+done
Property changes on:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patch.sh
___________________________________________________________________
Added: svn:executable
+
Added:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/gui-distribution.patch
===================================================================
---
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/gui-distribution.patch
(rev 0)
+++
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/gui-distribution.patch
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,38 @@
+Index: gui-distribution/features/src/main/resources/features.xml
+===================================================================
+--- gui-distribution/features/src/main/resources/features.xml (revision 27967)
++++ gui-distribution/features/src/main/resources/features.xml (working copy)
+@@ -49,6 +49,9 @@
+ <bundle
start-level="103">mvn:cytoscape-temp/biopax-converter/4.0.1</bundle>
+ <bundle
start-level="103">mvn:com.googlecode.guava-osgi/guava-osgi/9.0.0</bundle>
+
++ <bundle
start-level="103">mvn:cytoscape-temp/jogl/2.0-b23-20110303</bundle>
++ <bundle
start-level="103">mvn:cytoscape-temp/jogl-natives/2.0-b23-20110303</bundle>
++
+ <bundle
start-level="103">mvn:org.apache.commons/com.springsource.org.apache.commons.io/1.4.0</bundle>
+ <bundle start-level="103">mvn:psidev.psi.tools/xxindex/0.11</bundle>
+
+@@ -58,7 +61,7 @@
+ <bundle
start-level="103">mvn:javax.xml.stream/com.springsource.javax.xml.stream/1.0.1</bundle>
+
+ <bundle
start-level="103">mvn:psidev.psi.mi/psi25-xml/1.7.10-SNAPSHOT</bundle>
+-
++
+ <bundle
start-level="110">mvn:org.cytoscape/cmdline/${cytoscape.support.version}</bundle>
+ <bundle
start-level="110">mvn:org.cytoscape/equations-api/${cytoscape.api.version}</bundle>
+ <bundle
start-level="110">mvn:org.cytoscape/model-api/${cytoscape.api.version}</bundle>
+@@ -105,10 +108,13 @@
+
+ <bundle
start-level="140">mvn:org.cytoscape/datasource-biogrid-impl/${cytoscape.impl.version}</bundle>
+ <bundle
start-level="140">mvn:org.cytoscape/session-impl/${cytoscape.impl.version}</bundle>
++
++ <!--
+ <bundle
start-level="140">mvn:org.cytoscape/ding-customgraphics-manager-impl/${cytoscape.impl.version}</bundle>
+-
+ <bundle
start-level="145">mvn:org.cytoscape/ding-presentation-impl/${cytoscape.impl.version}</bundle>
++ -->
+
++ <bundle
start-level="145">mvn:org.cytoscape/paperwing-impl/1.0-SNAPSHOT</bundle>
+ <bundle
start-level="150">mvn:org.cytoscape/io-impl/${cytoscape.impl.version}</bundle>
+
+ <bundle
start-level="155">mvn:org.cytoscape/core-task-impl/${cytoscape.impl.version}</bundle>
Added:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/presentation-impl.patch
===================================================================
---
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/presentation-impl.patch
(rev 0)
+++
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/presentation-impl.patch
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,25 @@
+Index:
presentation-impl/src/main/java/org/cytoscape/view/presentation/internal/RenderingEngineManagerImpl.java
+===================================================================
+---
presentation-impl/src/main/java/org/cytoscape/view/presentation/internal/RenderingEngineManagerImpl.java
(revision 28020)
++++
presentation-impl/src/main/java/org/cytoscape/view/presentation/internal/RenderingEngineManagerImpl.java
(working copy)
+@@ -19,7 +19,7 @@
+ private final Map<View<?>, RenderingEngine<?>> renderingEngineMap;
+
+ private static final String FACTORY_ID_TAG = "id";
+- private static final String DEFAULT_FACTORY_ID = "ding";
++ private static final String DEFAULT_FACTORY_ID = "wind";
+
+ private VisualLexicon defaultLexicon;
+
+Index:
presentation-impl/src/main/java/org/cytoscape/view/presentation/internal/CyActivator.java
+===================================================================
+---
presentation-impl/src/main/java/org/cytoscape/view/presentation/internal/CyActivator.java
(revision 28020)
++++
presentation-impl/src/main/java/org/cytoscape/view/presentation/internal/CyActivator.java
(working copy)
+@@ -25,7 +25,6 @@
+
registerService(bc,renderingEngineManager,RenderingEngineManager.class,
renderingEngineManagerProps);
+
+
registerServiceListener(bc,renderingEngineManager,"addRenderingEngineFactory","removeRenderingEngineFactory",RenderingEngineFactory.class);
+-
+ }
+ }
+
Added:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/swing-application-impl.patch
===================================================================
---
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/swing-application-impl.patch
(rev 0)
+++
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/swing-application-impl.patch
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,30 @@
+Index:
swing-application-impl/src/main/java/org/cytoscape/internal/CyActivator.java
+===================================================================
+---
swing-application-impl/src/main/java/org/cytoscape/internal/CyActivator.java
(revision 28020)
++++
swing-application-impl/src/main/java/org/cytoscape/internal/CyActivator.java
(working copy)
+@@ -169,10 +169,10 @@
+ SubmenuTaskManager submenuTaskManagerServiceRef =
getService(bc, SubmenuTaskManager.class);
+ RenderingEngineFactory dingRenderingEngineFactoryServiceRef =
getService(bc,
+
RenderingEngineFactory.class,
+-
"(id=ding)");
++
"(id=wind)");
+ RenderingEngineFactory
dingNavigationPresentationFactoryServiceRef = getService(bc,
+
RenderingEngineFactory.class,
+-
"(id=dingNavigation)");
++
"(id=windMap)");
+ CyProperty bookmarkServiceRef = getService(bc, CyProperty.class,
+
"(cyPropertyName=bookmarks)");
+ BookmarksUtil bookmarksUtilServiceRef = getService(bc,
BookmarksUtil.class);
+Index:
swing-application-impl/src/main/java/org/cytoscape/internal/view/NetworkViewManager.java
+===================================================================
+---
swing-application-impl/src/main/java/org/cytoscape/internal/view/NetworkViewManager.java
(revision 28020)
++++
swing-application-impl/src/main/java/org/cytoscape/internal/view/NetworkViewManager.java
(working copy)
+@@ -123,7 +123,7 @@
+
+ // TODO: for now, use this as default. But in the future, we should
provide
+ // UI to select presentation.
+- private static final String DEFAULT_PRESENTATION = "ding";
++ private static final String DEFAULT_PRESENTATION = "wind";
+
+ private final CyNetworkViewManager networkViewManager;
+ private final CyApplicationManager applicationManager;
Added:
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/vizmap-gui-impl.patch
===================================================================
---
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/vizmap-gui-impl.patch
(rev 0)
+++
csplugins/trunk/toronto/yuedong/paperwing-install/bundles/patches/vizmap-gui-impl.patch
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,78 @@
+Index:
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/DefaultViewEditorImpl.java
+===================================================================
+---
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/DefaultViewEditorImpl.java
(revision 28020)
++++
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/DefaultViewEditorImpl.java
(working copy)
+@@ -201,7 +201,7 @@
+
+ for (VisualLexicon lexicon : lexSet) {
+ for (VisualProperty<?> vp : props) {
+- if
(lexicon.getVisualLexiconNode(vp).getChildren().size() == 0)
++ if (lexicon.getVisualLexiconNode(vp) != null &&
(lexicon.getVisualLexiconNode(vp).getChildren().size() == 0))
+ propSet.add(vp);
+ }
+ }
+@@ -218,7 +218,7 @@
+
+ for (VisualLexicon lexicon : lexSet) {
+ for (VisualProperty<?> vp : props) {
+- if
(lexicon.getVisualLexiconNode(vp).getChildren().size() == 0
++ if (lexicon.getVisualLexiconNode(vp) != null &&
lexicon.getVisualLexiconNode(vp).getChildren().size() == 0
+ &&
lexicon.getVisualLexiconNode(vp).getParent()
+
.getVisualProperty() == MinimalVisualLexicon.NETWORK)
+ propSet.add(vp);
+Index:
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/bypass/BypassManager.java
+===================================================================
+---
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/bypass/BypassManager.java
(revision 28020)
++++
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/bypass/BypassManager.java
(working copy)
+@@ -44,7 +44,7 @@
+ }
+
+ public void addBypass(RenderingEngineFactory<?> factory, Map props) {
+- if (props.containsValue("ding") == false)
++ if (props.containsValue("wind") == false)
+ return;
+
+ final VisualLexicon lexicon = factory.getVisualLexicon();
+Index:
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/CyActivator.java
+===================================================================
+---
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/CyActivator.java
(revision 28020)
++++
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/CyActivator.java
(working copy)
+@@ -74,8 +74,8 @@
+ CyApplicationConfiguration cyApplicationConfigurationServiceRef
= getService(bc,CyApplicationConfiguration.class);
+ DialogTaskManager dialogTaskManagerServiceRef =
getService(bc,DialogTaskManager.class);
+ VisualStyleFactory visualStyleFactoryServiceRef =
getService(bc,VisualStyleFactory.class);
+- VisualLexicon dingVisualLexiconServiceRef =
getService(bc,VisualLexicon.class,"(id=ding)");
+- RenderingEngineFactory dingRenderingEngineFactoryServiceRef =
getService(bc,RenderingEngineFactory.class,"(id=ding)");
++ VisualLexicon windVisualLexiconServiceRef =
getService(bc,VisualLexicon.class,"(id=wind)");
++ RenderingEngineFactory windRenderingEngineFactoryServiceRef =
getService(bc,RenderingEngineFactory.class,"(id=wind)");
+ VisualMappingManager vmmServiceRef =
getService(bc,VisualMappingManager.class);
+ CyNetworkManager cyNetworkManagerServiceRef =
getService(bc,CyNetworkManager.class);
+ CyApplicationManager cyApplicationManagerServiceRef =
getService(bc,CyApplicationManager.class);
+Index:
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/util/VisualPropertyFilter.java
+===================================================================
+---
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/util/VisualPropertyFilter.java
(revision 28020)
++++
vizmap-gui-impl/src/main/java/org/cytoscape/view/vizmap/gui/internal/util/VisualPropertyFilter.java
(working copy)
+@@ -12,8 +12,8 @@
+
+ // Visual Properties which are not compatible with current rendering
engine.
+ static {
+- INCOMPATIBLE_VP_SET.add(RichVisualLexicon.NODE_DEPTH);
+- INCOMPATIBLE_VP_SET.add(RichVisualLexicon.NODE_Z_LOCATION);
++ // INCOMPATIBLE_VP_SET.add(RichVisualLexicon.NODE_DEPTH);
++ // INCOMPATIBLE_VP_SET.add(RichVisualLexicon.NODE_Z_LOCATION);
+ }
+
+
+Index: vizmap-gui-impl/src/main/resources/default_vizmap.xml
+===================================================================
+--- vizmap-gui-impl/src/main/resources/default_vizmap.xml (revision 28020)
++++ vizmap-gui-impl/src/main/resources/default_vizmap.xml (working copy)
+@@ -458,7 +458,7 @@
+ <visualProperty name="NODE_TRANSPARENCY" default="255"/>
+ <visualProperty name="NODE_SIZE" default="35.0"/>
+ <visualProperty name="NODE_CUSTOMGRAPHICS_2"/>
+- <visualProperty name="NODE_FILL_COLOR" default="#00acad"/>
++ <visualProperty name="NODE_FILL_COLOR" default="#797979"/>
+ <visualProperty name="NODE_CUSTOMPAINT_5"
default="org.cytoscape.view.presentation.property.DefaultVisualizableVisualProperty$VisualizableImpl@69d41410"/>
+ <visualProperty name="NODE_CUSTOMPAINT_6"
default="org.cytoscape.view.presentation.property.DefaultVisualizableVisualProperty$VisualizableImpl@69d41410"/>
+ <visualProperty name="NODE_CUSTOMPAINT_7"
default="org.cytoscape.view.presentation.property.DefaultVisualizableVisualProperty$VisualizableImpl@69d41410"/>
Added: csplugins/trunk/toronto/yuedong/paperwing-install/controls.txt
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/controls.txt
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/controls.txt
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,73 @@
+General functions
+=================
+
+(None listed yet)
+
+Performance adjustment functions
+================================
+
+(None listed yet)
+
+Network manipulation
+====================
+
+Node selection
+--------------
+-Hover the mouse cursor over an edge or node to cause it to turn BLUE.
+-Click on an edge or node to select it, turning it GREEN.
+
+Multiple selection
+------------------
+-Hold SHIFT and click on additional nodes/edges to select them.
+
+Drag selection
+--------------
+-Drag the mouse cursor to create a selection rectangle, selecting all
nodes/edges
+ inside the rectangle upon mouse button release.
+
+Node, edge creation/deletion
+----------------------------
+J: Create an edge between selected nodes and the hovered (currently under the
mouse cursor) node
+Delete: Deletes selected nodes/edges
+N: Create new node under mouse cursor
+
+Node dragging
+-------------
+-Hold CTRL and drag the mouse cursor to move all currently selected nodes
alongside the mouse.
+
+Camera movement
+===============
+
+Movement
+--------
+
+W: Move camera up
+A: Move camera left
+S: Move camera down
+D: Move camera right
+E: Move camera forward
+Q: Move camera backwards
+
+Rotation
+--------
+
+Z: Roll camera clockwise
+X: Roll camera counter-clockwise
+
+Shift + Left/Right: Rotation about Y-axis
+Shift + Up/Down: Rotation about X-axis
+
+Note that currently, both these rotations rotate around axes that intersect a
"target point". This point, located in front of the camera, is used as the
centre of rotation. The mouse wheel can adjust the distance between the camera
and the target point. Moving the target point close to the network centre will
cause rotations to rotate the network about its centre. The target point moves
with the camera.
+
+Arrow Keys: Turn camera
+
+Bird's eye view camera
+======================
+
+In Cytoscape, click on the "Network" tab on the left to see the bird's eye
view.
+
+Movement:
+-Click or drag the mouse on the bird's eye view to move the main camera.
+-Move the main camera to move the rectangle in the bird's eye view depicting
where the main camera currently is.
+
+
Added: csplugins/trunk/toronto/yuedong/paperwing-install/download_and_install.sh
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/download_and_install.sh
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/download_and_install.sh
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+pushd bundles
+
+./install_jogl.sh
+./checkout.sh
+./patch.sh
+./install.sh
+
+popd
+
Property changes on:
csplugins/trunk/toronto/yuedong/paperwing-install/download_and_install.sh
___________________________________________________________________
Added: svn:executable
+
Added: csplugins/trunk/toronto/yuedong/paperwing-install/instructions.txt
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/instructions.txt
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/instructions.txt
2012-01-16 23:33:35 UTC (rev 28026)
@@ -0,0 +1,29 @@
+Description
+===========
+
+This installer will check out the latest build of Cytoscape, the latest build
of the 3D renderer plugin (no official name yet, but it is currently dubbed
"Wind"), and patch the Cytoscape build to accommodate the renderer plugin.
+
+Requirements
+============
+
+Maven 3 or later
+Bash
+
+Running Cytoscape with the renderer
+===================================
+
+1. Run download-and-install.sh to download and install the renderer.
+2. Run start.sh to start Cytoscape with the renderer.
+
+Camera controls, selection, node dragging
+=========================================
+
+Please see controls.txt
+
+Explanation of directories
+==========================
+
+bundles/paperwing-impl : source code for the renderer
+bundles/gui-distribution : a recent check-out of Cytoscape
+bundles/patches : patches that are needed to patch parts of the core for the
renderer to run
+bundles/jogl_repacked : contains repackaged JOGL libraries
\ No newline at end of file
Added: csplugins/trunk/toronto/yuedong/paperwing-install/start.sh
===================================================================
--- csplugins/trunk/toronto/yuedong/paperwing-install/start.sh
(rev 0)
+++ csplugins/trunk/toronto/yuedong/paperwing-install/start.sh 2012-01-16
23:33:35 UTC (rev 28026)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+pushd bundles/gui-distribution/assembly/target/cytoscape
+./cytoscape.sh
+popd
+
Property changes on: csplugins/trunk/toronto/yuedong/paperwing-install/start.sh
___________________________________________________________________
Added: svn:executable
+
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.