From: <bh...@us...> - 2006-09-13 20:52:00
|
Revision: 185 http://svn.sourceforge.net/cishell/?rev=185&view=rev Author: bh2 Date: 2006-09-13 13:51:52 -0700 (Wed, 13 Sep 2006) Log Message: ----------- moving features to the deployment dir Added Paths: ----------- trunk/deployment/org.cishell.development.feature/ Removed Paths: ------------- trunk/core/org.cishell.development.feature/ Copied: trunk/deployment/org.cishell.development.feature (from rev 184, trunk/core/org.cishell.development.feature) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bh...@us...> - 2006-09-13 20:52:44
|
Revision: 186 http://svn.sourceforge.net/cishell/?rev=186&view=rev Author: bh2 Date: 2006-09-13 13:52:37 -0700 (Wed, 13 Sep 2006) Log Message: ----------- moving update site to the deployment dir Added Paths: ----------- trunk/deployment/org.cishell.update/ Removed Paths: ------------- trunk/core/org.cishell.update/ Copied: trunk/deployment/org.cishell.update (from rev 185, trunk/core/org.cishell.update) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bh...@us...> - 2006-09-13 20:53:19
|
Revision: 187 http://svn.sourceforge.net/cishell/?rev=187&view=rev Author: bh2 Date: 2006-09-13 13:53:13 -0700 (Wed, 13 Sep 2006) Log Message: ----------- moving features to the deployment dir Added Paths: ----------- trunk/deployment/org.cishell.feature/ Removed Paths: ------------- trunk/core/org.cishell.feature/ Copied: trunk/deployment/org.cishell.feature (from rev 186, trunk/core/org.cishell.feature) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bea...@us...> - 2006-10-16 15:04:32
|
Revision: 280 http://svn.sourceforge.net/cishell/?rev=280&view=rev Author: bearsfan Date: 2006-10-16 08:04:20 -0700 (Mon, 16 Oct 2006) Log Message: ----------- Changed the title in the SaveDataChooser, added NullConverter, and a check for a converter path to itself Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.persistence/src/org/cishell/reference/gui/persistence/save/Save.java trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/DataConversionServiceImpl.java Added Paths: ----------- trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/NullConverter.java Modified: trunk/clients/gui/org.cishell.reference.gui.persistence/src/org/cishell/reference/gui/persistence/save/Save.java =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.persistence/src/org/cishell/reference/gui/persistence/save/Save.java 2006-10-14 15:53:43 UTC (rev 279) +++ trunk/clients/gui/org.cishell.reference.gui.persistence/src/org/cishell/reference/gui/persistence/save/Save.java 2006-10-16 15:04:20 UTC (rev 280) @@ -67,7 +67,7 @@ public void run() { SaveDataChooser sdc = new SaveDataChooser(data[0], parentShell, converters, - "title", + "Save", context); sdc.createContent(parentShell); sdc.open(); Modified: trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/DataConversionServiceImpl.java =================================================================== --- trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/DataConversionServiceImpl.java 2006-10-14 15:53:43 UTC (rev 279) +++ trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/DataConversionServiceImpl.java 2006-10-16 15:04:20 UTC (rev 280) @@ -24,6 +24,7 @@ import java.util.List; import java.util.Map; import java.util.Set; +import java.util.regex.Pattern; import org.cishell.framework.CIShellContext; import org.cishell.framework.algorithm.AlgorithmFactory; @@ -191,6 +192,13 @@ //in=file:text/graphml out=file:* If so, need to add a null converter //(w/ 0 sized servicereference array) to the converterList + if (outFormat.indexOf('*') != -1) { + String outFormatCopy = outFormat.replaceAll("[*]", ".*"); + if (Pattern.matches(outFormatCopy, inFormat)) { + converterList.add(new NullConverter(inFormat)); + } + } + try { ServiceReference[] inRefs = bContext.getServiceReferences( AlgorithmFactory.class.getName(), inFilter); @@ -230,10 +238,6 @@ Vertex srcVertex = (Vertex)dataTypeToVertex.get(inType); Vertex tgtVertex = (Vertex)dataTypeToVertex.get(outType); - if (srcVertex.equals(tgtVertex)) { - return new ConverterImpl(bContext, ciContext, new ServiceReference[0]); - } - if (srcVertex != null && tgtVertex != null) { DijkstraShortestPath shortestPathAlg = new DijkstraShortestPath(graph); List edgeList = shortestPathAlg.getPath(srcVertex, tgtVertex); Added: trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/NullConverter.java =================================================================== --- trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/NullConverter.java (rev 0) +++ trunk/core/org.cishell.reference/src/org/cishell/reference/service/conversion/NullConverter.java 2006-10-16 15:04:20 UTC (rev 280) @@ -0,0 +1,121 @@ +/* **************************************************************************** + * CIShell: Cyberinfrastructure Shell, An Algorithm Integration Framework. + * + * All rights reserved. This program and the accompanying materials are made + * available under the terms of the Apache License v2.0 which accompanies + * this distribution, and is available at: + * http://www.apache.org/licenses/LICENSE-2.0.html + * + * Created on Jul 20, 2006 at Indiana University. + * + * Contributors: + * Indiana University - + * ***************************************************************************/ +package org.cishell.reference.service.conversion; + +import java.util.Dictionary; +import java.util.Hashtable; + +import org.cishell.framework.CIShellContext; +import org.cishell.framework.algorithm.Algorithm; +import org.cishell.framework.algorithm.AlgorithmFactory; +import org.cishell.framework.algorithm.AlgorithmProperty; +import org.cishell.framework.data.Data; +import org.cishell.service.conversion.Converter; +import org.osgi.framework.ServiceReference; +import org.osgi.service.metatype.MetaTypeProvider; + +/** + * + * @author Bruce Herr (bh...@bh...) + */ +public class NullConverter implements Converter, AlgorithmFactory, AlgorithmProperty, Comparable { + private Dictionary props; + + + public NullConverter(String inData) { + props = new Hashtable(); + + props.put(IN_DATA, inData); + props.put(OUT_DATA, inData); + props.put(LABEL, props.get(IN_DATA) + " -> " + props.get(OUT_DATA)); + + String lossiness = LOSSLESS; + + //TODO: Do the same thing for complexity + props.put(CONVERSION, lossiness); + } + + /** + * @see org.cishell.service.conversion.Converter#convert(org.cishell.framework.data.Data) + */ + public Data convert(Data inDM) { + return inDM; + } + + + /** + * @see org.cishell.service.conversion.Converter#getAlgorithmFactory() + */ + public AlgorithmFactory getAlgorithmFactory() { + return this; + } + + /** + * @see org.cishell.service.conversion.Converter#getConverterChain() + */ + public ServiceReference[] getConverterChain() { + return new ServiceReference[0]; + } + + /** + * @see org.cishell.service.conversion.Converter#getProperties() + */ + public Dictionary getProperties() { + return props; + } + + public Algorithm createAlgorithm(Data[] dm, Dictionary parameters, CIShellContext context) { + return new ConverterAlgorithm(dm, parameters, context); + } + + public MetaTypeProvider createParameters(Data[] dm) { + return null; + } + + public boolean equals(Object o) { + boolean equals = false; + if (o instanceof Converter) { + ServiceReference[] otherServiceReference = ((Converter)o).getConverterChain(); + if (otherServiceReference.length == 0) { + Dictionary otherDictionary = ((Converter)o).getProperties(); + if (otherDictionary.get(IN_DATA).equals(props.get(IN_DATA)) && + otherDictionary.get(OUT_DATA).equals(props.get(OUT_DATA))) { + equals = true; + } + } + } + + return equals; + } + + private class ConverterAlgorithm implements Algorithm { + Data[] inDM; + CIShellContext context; + Dictionary parameters; + + public ConverterAlgorithm(Data[] dm, Dictionary parameters, CIShellContext context) { + this.inDM = dm; + this.parameters = parameters; + this.context = context; + } + + public Data[] execute() { + return inDM; + } + } + + public int compareTo(Object o) { + return equals(o) ? 0 : 1; + } +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bh...@us...> - 2006-10-16 21:26:31
|
Revision: 287 http://svn.sourceforge.net/cishell/?rev=287&view=rev Author: bh2 Date: 2006-10-16 14:21:18 -0700 (Mon, 16 Oct 2006) Log Message: ----------- version bump to 0.2.0 Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.guibuilder.temp/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF trunk/core/org.cishell.framework/META-INF/MANIFEST.MF trunk/core/org.cishell.reference/META-INF/MANIFEST.MF trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF trunk/deployment/cishell-installer/build.xml trunk/deployment/cishell-installer/install.xml trunk/deployment/cishell-installer/thanks.txt trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml trunk/deployment/org.cishell.development.feature/feature.xml trunk/deployment/org.cishell.feature/feature.xml trunk/deployment/org.cishell.reference.feature/feature.xml trunk/deployment/org.cishell.reference.gui.feature/feature.xml Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Branding Plug-in Bundle-SymbolicName: org.cishell.reference.gui.brand.cishell;singleton:=true -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-Activator: org.cishell.reference.gui.brand.cishell.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.core.runtime, Modified: trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Data Manager GUI Plug-in Bundle-SymbolicName: org.cishell.reference.gui.datamanager;singleton:=true -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-Activator: org.cishell.reference.gui.datamanager.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: GUI Builder Reference Implementation Using SWT Bundle-SymbolicName: org.cishell.reference.gui.guibuilder.swt -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-Localization: plugin Import-Package: org.cishell.framework, org.cishell.service.guibuilder, Modified: trunk/clients/gui/org.cishell.reference.gui.guibuilder.temp/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.guibuilder.temp/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.guibuilder.temp/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Temporary GUI Builder Plugin Bundle-SymbolicName: org.cishell.reference.gui.guibuilder.temp -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-Localization: plugin Require-Bundle: org.eclipse.core.runtime, edu.iu.iv.common, Modified: trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Log GUI Plug-in Bundle-SymbolicName: org.cishell.reference.gui.log;singleton:=true -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-Activator: org.cishell.reference.gui.log.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Menu Manager Plug-in Bundle-SymbolicName: org.cishell.reference.gui.menumanager;singleton:=true -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-Activator: org.cishell.reference.gui.menumanager.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Persistence Plug-in Bundle-SymbolicName: org.cishell.reference.gui.persistence;singleton:=true -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-ClassPath: . Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager, Modified: trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Reference GUI Workspace Plug-in Bundle-SymbolicName: org.cishell.reference.gui.workspace; singleton:=true -Bundle-Version: 0.1.0.qualifier +Bundle-Version: 0.2.0 Bundle-Activator: org.cishell.reference.gui.workspace.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/core/org.cishell.framework/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Framework API Bundle-SymbolicName: org.cishell.framework -Bundle-Version: 0.1.0 +Bundle-Version: 0.2.0 Bundle-Vendor: Bruce Herr Bundle-Localization: plugin Import-Package: org.osgi.framework, Modified: trunk/core/org.cishell.reference/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Reference Service Implementations Bundle-SymbolicName: org.cishell.reference -Bundle-Version: 0.1.0 +Bundle-Version: 0.2.0 Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager, org.cishell.app.service.scheduler, Modified: trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Reference Services Starter Bundle-SymbolicName: org.cishell.reference.services -Bundle-Version: 0.1.0 +Bundle-Version: 0.2.0 Bundle-Activator: org.cishell.reference.services.Activator Bundle-Localization: plugin X-AutoStart: true Modified: trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Bundler Autostarter Bundle-SymbolicName: org.cishell.service.autostart -Bundle-Version: 0.1.0 +Bundle-Version: 0.2.0 Bundle-Activator: org.cishell.service.autostart.Activator Bundle-Localization: plugin Import-Package: org.osgi.framework;version="1.3.0" Modified: trunk/deployment/cishell-installer/build.xml =================================================================== --- trunk/deployment/cishell-installer/build.xml 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/cishell-installer/build.xml 2006-10-16 21:21:18 UTC (rev 287) @@ -12,7 +12,7 @@ <project name='CIShell Installer' default='compile' basedir='.'> <!-- Properties --> - <property name="version" value="0.1.0"/> + <property name="version" value="0.2.0"/> <property name="full.xml" value="install.xml"/> <property name="min.xml" value="install.xml"/> <property name="full.jar" value="cishell-installer_${version}.alpha.jar"/> Modified: trunk/deployment/cishell-installer/install.xml =================================================================== --- trunk/deployment/cishell-installer/install.xml 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/cishell-installer/install.xml 2006-10-16 21:21:18 UTC (rev 287) @@ -16,7 +16,7 @@ <info> <appname>CIShell: Cyberinfrastructure Shell</appname> <appsubpath>cishell</appsubpath> - <appversion>0.1.0</appversion> + <appversion>0.2.0</appversion> <authors> <author name="Bruce Herr" email="bh...@bh..." /> <author name="Weixia Huang" email="hu...@in..." /> Modified: trunk/deployment/cishell-installer/thanks.txt =================================================================== --- trunk/deployment/cishell-installer/thanks.txt 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/cishell-installer/thanks.txt 2006-10-16 21:21:18 UTC (rev 287) @@ -1,9 +1,12 @@ Installation of CIShell: Cyberinfrastructure Shell was successful! -WARNING: This is an early alpha release of CIShell. +This release adds several algorithms and converters to give an idea of +what a filling of CIShell would be like. -Also, there are no algorithms integrated. This release is mainly only -useful for early adopters for testing integration of their own algorithms. +WARNING: This is an alpha release of CIShell. This means that not all +the functionality is there, there will be bugs, and that the final +feature set is not yet set in stone. If you have bug reports, comments, +or feature requests please feel free to contact us as described below. If you have any problems, please contact the CIShell development team at cis...@li.... Modified: trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ <feature id="org.cishell.algorithm.examples.feature" label="CIShell Sample Algorithms" - version="0.1.0.qualifier"> + version="0.2.0.qualifier"> <description> Example algorithms for development and testing of CIShell. @@ -37,17 +37,170 @@ </url> <plugin - id="org.cishell.tests.conversion1" + id="org.cishell.tests.guibuilder1" download-size="0" install-size="0" version="0.0.0" unpack="false"/> <plugin - id="org.cishell.tests.guibuilder1" + id="edu.iu.iv.attacktolerance" download-size="0" install-size="0" version="0.0.0" unpack="false"/> + <plugin + id="edu.iu.iv.clustering.betweennesscentrality" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.errortolerance" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.modeling.barabasialbertmodel" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.modeling.p2p.can" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.modeling.p2p.chord" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.modeling.p2p.hypergrid" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.modeling.p2p.pru" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.modeling.p2p.randomnetwork" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.preprocessing.directoryhierarchyreader" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.search.p2p.bfs" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.search.p2p.randomwalk" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.treemap" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.iv.visualization.treeviz" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.converter.junggraphml" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.converter.jungpajeknet" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.converter.jungprefuse" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.converter.prefusegraphml" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.converter.prefusexgmml" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.visualization.forcedirectedlayout" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.visualization.jungnetworklayout" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.visualization.radialgraph" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="org.prefuse.lib" + download-size="0" + install-size="0" + version="0.0.0"/> + </feature> Modified: trunk/deployment/org.cishell.development.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.development.feature/feature.xml 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/org.cishell.development.feature/feature.xml 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ <feature id="org.cishell.development.feature" label="CIShell Algorithm Development Plug-In" - version="0.1.0.qualifier"> + version="0.2.0.qualifier"> <description url="http://cishell.org"> The CIShell Algorithm Development Pack Modified: trunk/deployment/org.cishell.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.feature/feature.xml 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/org.cishell.feature/feature.xml 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ <feature id="org.cishell.feature" label="CIShell Framework API Feature" - version="0.1.0.qualifier"> + version="0.2.0.qualifier"> <description url="http://cishell.org"> CIShell Framework API Modified: trunk/deployment/org.cishell.reference.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.reference.feature/feature.xml 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/org.cishell.reference.feature/feature.xml 2006-10-16 21:21:18 UTC (rev 287) @@ -57,4 +57,29 @@ version="0.0.0" unpack="false"/> + <plugin + id="org.cishell.templates" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.uci.ics.jung" + download-size="0" + install-size="0" + version="0.0.0"/> + + <plugin + id="org.apache.commons.collections" + download-size="0" + install-size="0" + version="0.0.0"/> + + <plugin + id="cern.colt" + download-size="0" + install-size="0" + version="0.0.0"/> + </feature> Modified: trunk/deployment/org.cishell.reference.gui.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.reference.gui.feature/feature.xml 2006-10-16 20:40:27 UTC (rev 286) +++ trunk/deployment/org.cishell.reference.gui.feature/feature.xml 2006-10-16 21:21:18 UTC (rev 287) @@ -2,7 +2,7 @@ <feature id="org.cishell.reference.gui.feature" label="CIShell Reference GUI" - version="0.1.0.qualifier"> + version="0.2.0.qualifier"> <description url="http://cishell.org"> CIShell Reference GUI This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bh...@us...> - 2006-10-27 19:55:03
|
Revision: 327 http://svn.sourceforge.net/cishell/?rev=327&view=rev Author: bh2 Date: 2006-10-27 12:54:39 -0700 (Fri, 27 Oct 2006) Log Message: ----------- Version bump to v0.2.1 Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF trunk/core/org.cishell.framework/META-INF/MANIFEST.MF trunk/core/org.cishell.reference/META-INF/MANIFEST.MF trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF trunk/deployment/cishell-installer/build.xml trunk/deployment/cishell-installer/cishell.product trunk/deployment/cishell-installer/install.xml trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml trunk/deployment/org.cishell.development.feature/feature.xml trunk/deployment/org.cishell.feature/feature.xml trunk/deployment/org.cishell.reference.feature/feature.xml trunk/deployment/org.cishell.reference.gui.feature/feature.xml trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF Added Paths: ----------- trunk/deployment/cishell-installer/cishell_linux/plugins/org.eclipse.update.core.linux_3.2.0.v20060605.jar trunk/deployment/cishell-installer/sampledata/ trunk/deployment/cishell-installer/sampledata/Network/ trunk/deployment/cishell-installer/sampledata/Network/conversionGraph.graphml.xml trunk/deployment/cishell-installer/sampledata/Network/friendster.graphml.xml trunk/deployment/cishell-installer/sampledata/Network/friendster.xgmml.xml trunk/deployment/cishell-installer/sampledata/Network/terror.graphml.xml trunk/deployment/cishell-installer/sampledata/Network/terror.xgmml.xml Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Branding Plug-in Bundle-SymbolicName: org.cishell.reference.gui.brand.cishell;singleton:=true -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Activator: org.cishell.reference.gui.brand.cishell.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.core.runtime, Modified: trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Data Manager GUI Plug-in Bundle-SymbolicName: org.cishell.reference.gui.datamanager;singleton:=true -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Activator: org.cishell.reference.gui.datamanager.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: GUI Builder Reference Implementation Using SWT Bundle-SymbolicName: org.cishell.reference.gui.guibuilder.swt -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Localization: plugin Import-Package: org.cishell.framework, org.cishell.service.guibuilder, Modified: trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Log GUI Plug-in Bundle-SymbolicName: org.cishell.reference.gui.log;singleton:=true -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Activator: org.cishell.reference.gui.log.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Menu Manager Plug-in Bundle-SymbolicName: org.cishell.reference.gui.menumanager;singleton:=true -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Activator: org.cishell.reference.gui.menumanager.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Persistence Plug-in Bundle-SymbolicName: org.cishell.reference.gui.persistence;singleton:=true -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-ClassPath: . Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager, Modified: trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Reference GUI Workspace Plug-in Bundle-SymbolicName: org.cishell.reference.gui.workspace; singleton:=true -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Activator: org.cishell.reference.gui.workspace.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/core/org.cishell.framework/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Framework API Bundle-SymbolicName: org.cishell.framework -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Vendor: Bruce Herr Bundle-Localization: plugin Import-Package: org.osgi.framework, Modified: trunk/core/org.cishell.reference/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Reference Service Implementations Bundle-SymbolicName: org.cishell.reference -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager, org.cishell.app.service.scheduler, Modified: trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Reference Services Starter Bundle-SymbolicName: org.cishell.reference.services -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Activator: org.cishell.reference.services.Activator Bundle-Localization: plugin X-AutoStart: true Modified: trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2006-10-27 19:54:39 UTC (rev 327) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Bundler Autostarter Bundle-SymbolicName: org.cishell.service.autostart -Bundle-Version: 0.2.0 +Bundle-Version: 0.2.1 Bundle-Activator: org.cishell.service.autostart.Activator Bundle-Localization: plugin Import-Package: org.osgi.framework;version="1.3.0" Modified: trunk/deployment/cishell-installer/build.xml =================================================================== --- trunk/deployment/cishell-installer/build.xml 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/deployment/cishell-installer/build.xml 2006-10-27 19:54:39 UTC (rev 327) @@ -12,7 +12,7 @@ <project name='CIShell Installer' default='compile' basedir='.'> <!-- Properties --> - <property name="version" value="0.2.0"/> + <property name="version" value="0.2.1"/> <property name="full.xml" value="install.xml"/> <property name="min.xml" value="install.xml"/> <property name="full.jar" value="cishell-installer_${version}.alpha.jar"/> Modified: trunk/deployment/cishell-installer/cishell.product =================================================================== --- trunk/deployment/cishell-installer/cishell.product 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/deployment/cishell-installer/cishell.product 2006-10-27 19:54:39 UTC (rev 327) @@ -40,11 +40,11 @@ </plugins> <features> - <feature id="org.cishell.algorithm.examples.feature" version="0.2.0.qualifier"/> + <feature id="org.cishell.algorithm.examples.feature" version="0.2.1"/> <feature id="org.cishell.environment.equinox.feature" version="0.1.0"/> - <feature id="org.cishell.feature" version="0.1.0.qualifier"/> - <feature id="org.cishell.reference.feature" version="0.2.0.qualifier"/> - <feature id="org.cishell.reference.gui.feature" version="0.2.0.qualifier"/> + <feature id="org.cishell.feature" version="0.2.1"/> + <feature id="org.cishell.reference.feature" version="0.2.1"/> + <feature id="org.cishell.reference.gui.feature" version="0.2.1"/> </features> </product> Added: trunk/deployment/cishell-installer/cishell_linux/plugins/org.eclipse.update.core.linux_3.2.0.v20060605.jar =================================================================== (Binary files differ) Property changes on: trunk/deployment/cishell-installer/cishell_linux/plugins/org.eclipse.update.core.linux_3.2.0.v20060605.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/deployment/cishell-installer/install.xml =================================================================== --- trunk/deployment/cishell-installer/install.xml 2006-10-26 21:30:52 UTC (rev 326) +++ trunk/deployment/cishell-installer/install.xml 2006-10-27 19:54:39 UTC (rev 327) @@ -16,7 +16,7 @@ <info> <appname>CIShell: Cyberinfrastructure Shell</appname> <appsubpath>cishell</appsubpath> - <appversion>0.2.0</appversion> + <appversion>0.2.1</appversion> <authors> <author name="Bruce Herr" email="bh...@bh..." /> <author name="Weixia Huang" email="hu...@in..." /> Added: trunk/deployment/cishell-installer/sampledata/Network/conversionGraph.graphml.xml =================================================================== --- trunk/deployment/cishell-installer/sampledata/Network/conversionGraph.graphml.xml (rev 0) +++ trunk/deployment/cishell-installer/sampledata/Network/conversionGraph.graphml.xml 2006-10-27 19:54:39 UTC (rev 327) @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<graphml xmlns="http://graphml.graphdrawing.org/xmlns/graphml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns/graphml"> +<graph edgedefault="directed" > +<node id="1" label="file:text/xgmml+xml" /> +<node id="2" label="prefuse.data.Graph" /> +<node id="3" label="file:application/pajek" /> +<node id="4" label="edu.uci.ics.jung.graph.Graph" /> +<node id="5" label="edu.berkeley.guir.prefuse.graph.Graph" /> +<node id="6" label="file:text/graphml+xml" /> +<edge source="4" target="6" directed="true"/> +<edge source="3" target="4" directed="true"/> +<edge source="2" target="6" directed="true"/> +<edge source="5" target="1" directed="true"/> +<edge source="4" target="3" directed="true"/> +<edge source="4" target="5" directed="true"/> +<edge source="6" target="4" directed="true"/> +<edge source="1" target="5" directed="true"/> +<edge source="6" target="2" directed="true"/> +</graph> +</graphml> Added: trunk/deployment/cishell-installer/sampledata/Network/friendster.graphml.xml =================================================================== --- trunk/deployment/cishell-installer/sampledata/Network/friendster.graphml.xml (rev 0) +++ trunk/deployment/cishell-installer/sampledata/Network/friendster.graphml.xml 2006-10-27 19:54:39 UTC (rev 327) @@ -0,0 +1,331 @@ +<?xml version="1.0" encoding="UTF-8"?> +<graphml xmlns="http://graphml.graphdrawing.org/xmlns/graphml" +xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns/graphml"> +<graph edgedefault="undirected"> +<!-- me --> +<node id="1" label="Jeff"></node> +<!-- my friends --> +<node id="2" label="Ed"></node> +<node id="3" label="Christiaan"></node> +<node id="4" label="Emily"></node> +<node id="5" label="Adam"></node> +<node id="6" label="Cynthia"></node> +<node id="7" label="Joylette"></node> +<node id="8" label="Amanda"></node> +<node id="9" label="Nathaniel"></node> +<node id="10" label="Bryan"></node> +<node id="11" label="Tamara"></node> +<node id="12" label="Ashley"></node> +<node id="13" label="Ryan"></node> +<node id="14" label="Alan"></node> +<node id="15" label="Chris"></node> +<node id="16" label="Holly"></node> +<node id="17" label="Patrick"></node><!-- baudisch --> +<node id="18" label="Fernando"></node> +<node id="19" label="Corey"></node> +<node id="20" label="Ben"></node> +<node id="21" label="Non"></node> +<!-- friends of friends --> +<node id="22" label="John"></node> +<node id="23" label="Calvin"></node> +<node id="24" label="Stephanie"></node> +<node id="25" label="John"></node> +<node id="26" label="Parker"></node> +<node id="27" label="Patrick"></node><!-- em's friend --> +<node id="28" label="Marian"></node> +<node id="29" label="Robert"></node><!-- amanda's friend --> +<node id="30" label="Patrick"></node><!-- amanda's friend --> +<node id="31" label="Sam"></node> +<node id="32" label="Bob"></node> +<node id="33" label="Katie"></node> +<node id="34" label="Chako"></node> +<!-- through alan --> +<node id="35" label="Diana"></node> +<node id="36" label="Record Camp"></node> +<node id="37" label="Chuck"></node> +<node id="38" label="Micah"></node> +<node id="39" label="SuperGiggleB"></node> +<node id="40" label="Dan"></node> +<node id="41" label="Ida"></node> +<node id="42" label="Wen-Ting"></node> +<node id="43" label="Nina"></node> +<node id="44" label="Rion"></node> +<node id="45" label="Otomi"></node> +<node id="46" label="Ed"></node> +<node id="47" label="Red"></node> +<!-- through chris --> +<node id="48" label="Scott"></node> +<node id="49" label="Andrew"></node> +<node id="50" label="Emily"></node> +<node id="51" label="Robin"></node> +<node id="52" label="Ken"></node> +<node id="53" label="Michael"></node> +<node id="54" label="Jon"></node> +<node id="55" label="Josh"></node> +<node id="56" label="Matthew"></node> +<node id="57" label="Casey"></node> +<node id="58" label="Christopher"></node> +<node id="59" label="Stephen"></node> +<node id="60" label="Kenji"></node> +<node id="61" label="Richard"></node> +<node id="62" label="Matthew"></node> +<node id="63" label="David"></node> +<node id="64" label="Phil"></node> +<node id="65" label="David"></node> +<!-- through holly --> +<node id="66" label="Pete"></node> +<node id="67" label="Jeremy"></node> +<!-- through patrick (baudisch) --> +<node id="68" label="Daniel"></node> +<node id="69" label="Sumit"></node> +<!-- through fernando --> +<node id="70" label="Shane"></node> +<node id="71" label="Rikard"></node> +<node id="72" label="David"></node> +<node id="73" label="Justin"></node> +<node id="74" label="Shane"></node> +<node id="75" label="Micaela"></node> +<node id="76" label="Steven"></node> +<node id="77" label="Matt"></node> +<node id="78" label="Jory"></node> +<node id="79" label="Alexander"></node> +<node id="80" label="Jason"></node> +<node id="81" label="JohnAnthony"></node> +<!-- through ben --> +<node id="82" label="Dorothy"></node> +<node id="83" label="Nels"></node> +<node id="84" label="Rania"></node> +<node id="85" label="Michael"></node> +<node id="86" label="Evan"></node> +<node id="87" label="Joanna"></node> +<node id="88" label="sistah"></node> +<node id="89" label="Meredith"></node> +<node id="90" label="Eric"></node> +<node id="91" label="John"></node> +<node id="92" label="ryan"></node> +<node id="93" label="Eric"></node> +<node id="94" label="Jay"></node> +<node id="95" label="rumi"></node> +<node id="96" label="justin"></node> +<node id="97" label="Julij"></node> +<node id="98" label="beverly"></node> +<node id="99" label="Jai Young"></node> +<node id="100" label="spot"></node> +<node id="101" label="Tammy"></node> +<node id="102" label="Michael"></node> +<node id="103" label="jennifer"></node> +<node id="104" label="Brent"></node> +<node id="105" label="Lanha souris"></node> +<node id="106" label="dan"></node> +<node id="107" label="jeremy"></node> +<node id="108" label="Jim"></node> +<node id="109" label="steph"></node> +<node id="110" label="Jane"></node> +<node id="111" label="Justin"></node> +<node id="112" label="Kevin"></node> +<node id="113" label="Matt"></node> +<node id="114" label="Judith"></node> +<node id="115" label="Alexander"></node> +<node id="116" label="Caterina"></node> +<node id="117" label="Jesse James"></node> +<node id="118" label="Tom"></node> +<node id="119" label="Stewart"></node> +<node id="120" label="Meg"></node> +<node id="121" label="Matt"></node> +<node id="122" label="Anil"></node> +<!-- through non --> +<node id="123" label="Scott"></node> +<node id="124" label="Steve"></node> +<node id="125" label="kris"></node> +<node id="126" label="Bill"></node> +<node id="127" label="Xz"></node> +<node id="128" label="David"></node> +<node id="129" label="Zephoria"></node> + +<!-- edges --> +<edge label="" source="1" target="2"></edge> +<edge label="" source="1" target="3"></edge> +<edge label="" source="1" target="4"></edge> +<edge label="" source="1" target="5"></edge> +<edge label="" source="1" target="6"></edge> +<edge label="" source="1" target="7"></edge> +<edge label="" source="1" target="8"></edge> +<edge label="" source="1" target="9"></edge> +<edge label="" source="1" target="10"></edge> +<edge label="" source="1" target="11"></edge> +<edge label="" source="1" target="12"></edge> +<edge label="" source="1" target="13"></edge> +<edge label="" source="1" target="14"></edge> +<edge label="" source="1" target="15"></edge> +<edge label="" source="1" target="16"></edge> +<edge label="" source="1" target="17"></edge> +<edge label="" source="1" target="18"></edge> +<edge label="" source="1" target="19"></edge> +<edge label="" source="1" target="20"></edge> +<edge label="" source="1" target="21"></edge> +<!-- ed's friends --> +<edge label="" source="2" target="5"></edge> +<edge label="" source="2" target="8"></edge> +<edge label="" source="2" target="10"></edge> +<!-- christiaan's friends --> +<edge label="" source="3" target="5"></edge> +<edge label="" source="3" target="8"></edge> +<edge label="" source="3" target="10"></edge> +<edge label="" source="3" target="17"></edge> +<!-- emily's friends --> +<edge label="" source="4" target="22"></edge> +<edge label="" source="4" target="23"></edge> +<edge label="" source="4" target="24"></edge> +<edge label="" source="4" target="25"></edge> +<edge label="" source="4" target="26"></edge> +<edge label="" source="4" target="27"></edge> +<!-- adam's friends --> +<edge label="" source="5" target="8"></edge> +<edge label="" source="5" target="10"></edge> +<!-- cynthia's friends --> +<edge label="" source="6" target="14"></edge> +<!-- joylette's friends --> +<edge label="" source="7" target="8"></edge> +<edge label="" source="7" target="10"></edge> +<edge label="" source="7" target="28"></edge> +<!-- amanda's friends --> +<edge label="" source="8" target="10"></edge> +<edge label="" source="8" target="14"></edge> +<edge label="" source="8" target="15"></edge> +<edge label="" source="8" target="29"></edge> +<edge label="" source="8" target="17"></edge> +<edge label="" source="8" target="18"></edge> +<edge label="" source="8" target="30"></edge> +<edge label="" source="8" target="21"></edge> +<!-- nathaniel's friends --> +<!-- bryan's friends --> +<edge label="" source="10" target="31"></edge> +<edge label="" source="10" target="17"></edge> +<edge label="" source="10" target="30"></edge> +<!-- tamara's friends --> +<edge label="" source="11" target="12"></edge> +<edge label="" source="11" target="32"></edge> +<edge label="" source="11" target="33"></edge> +<!-- ashley's friends --> +<!-- ryan's friends --> +<edge label="" source="13" target="34"></edge> +<edge label="" source="13" target="19"></edge> +<!-- alan's friends --> +<edge label="" source="14" target="35"></edge> +<edge label="" source="14" target="36"></edge> +<edge label="" source="14" target="37"></edge> +<edge label="" source="14" target="38"></edge> +<edge label="" source="14" target="39"></edge> +<edge label="" source="14" target="40"></edge> +<edge label="" source="14" target="41"></edge> +<edge label="" source="14" target="42"></edge> +<edge label="" source="14" target="43"></edge> +<edge label="" source="14" target="44"></edge> +<edge label="" source="14" target="45"></edge> +<edge label="" source="14" target="46"></edge> +<edge label="" source="14" target="47"></edge> +<edge label="" source="14" target="15"></edge> +<edge label="" source="14" target="18"></edge> +<edge label="" source="14" target="21"></edge> +<!-- chris's friends --> +<edge label="" source="15" target="48"></edge> +<edge label="" source="15" target="49"></edge> +<edge label="" source="15" target="50"></edge> +<edge label="" source="15" target="51"></edge> +<edge label="" source="15" target="52"></edge> +<edge label="" source="15" target="53"></edge> +<edge label="" source="15" target="54"></edge> +<edge label="" source="15" target="55"></edge> +<edge label="" source="15" target="56"></edge> +<edge label="" source="15" target="57"></edge> +<edge label="" source="15" target="58"></edge> +<edge label="" source="15" target="59"></edge> +<edge label="" source="15" target="60"></edge> +<edge label="" source="15" target="61"></edge> +<edge label="" source="15" target="62"></edge> +<edge label="" source="15" target="63"></edge> +<edge label="" source="15" target="64"></edge> +<edge label="" source="15" target="65"></edge> +<edge label="" source="15" target="16"></edge> +<edge label="" source="15" target="18"></edge> +<edge label="" source="15" target="21"></edge> +<!-- holly's friends --> +<edge label="" source="16" target="66"></edge> +<edge label="" source="16" target="59"></edge> +<edge label="" source="16" target="60"></edge> +<edge label="" source="16" target="67"></edge> +<!-- patrick's friends --> +<edge label="" source="17" target="68"></edge> +<edge label="" source="17" target="69"></edge> +<!-- fernando's friends --> +<edge label="" source="18" target="70"></edge> +<edge label="" source="18" target="71"></edge> +<edge label="" source="18" target="72"></edge> +<edge label="" source="18" target="73"></edge> +<edge label="" source="18" target="74"></edge> +<edge label="" source="18" target="75"></edge> +<edge label="" source="18" target="76"></edge> +<edge label="" source="18" target="77"></edge> +<edge label="" source="18" target="78"></edge> +<edge label="" source="18" target="79"></edge> +<edge label="" source="18" target="80"></edge> +<edge label="" source="18" target="81"></edge> +<!-- corey's friends --> +<edge label="" source="19" target="20"></edge> +<!-- ben's friends --> +<edge label="" source="20" target="45"></edge> +<edge label="" source="20" target="46"></edge> +<edge label="" source="20" target="82"></edge> +<edge label="" source="20" target="83"></edge> +<edge label="" source="20" target="84"></edge> +<edge label="" source="20" target="85"></edge> +<edge label="" source="20" target="86"></edge> +<edge label="" source="20" target="87"></edge> +<edge label="" source="20" target="88"></edge> +<edge label="" source="20" target="89"></edge> +<edge label="" source="20" target="90"></edge> +<edge label="" source="20" target="91"></edge> +<edge label="" source="20" target="92"></edge> +<edge label="" source="20" target="93"></edge> +<edge label="" source="20" target="94"></edge> +<edge label="" source="20" target="95"></edge> +<edge label="" source="20" target="96"></edge> +<edge label="" source="20" target="97"></edge> +<edge label="" source="20" target="98"></edge> +<edge label="" source="20" target="99"></edge> +<edge label="" source="20" target="100"></edge> +<edge label="" source="20" target="101"></edge> +<edge label="" source="20" target="102"></edge> +<edge label="" source="20" target="103"></edge> +<edge label="" source="20" target="104"></edge> +<edge label="" source="20" target="105"></edge> +<edge label="" source="20" target="106"></edge> +<edge label="" source="20" target="107"></edge> +<edge label="" source="20" target="108"></edge> +<edge label="" source="20" target="109"></edge> +<edge label="" source="20" target="110"></edge> +<edge label="" source="20" target="111"></edge> +<edge label="" source="20" target="112"></edge> +<edge label="" source="20" target="113"></edge> +<edge label="" source="20" target="114"></edge> +<edge label="" source="20" target="115"></edge> +<edge label="" source="20" target="116"></edge> +<edge label="" source="20" target="117"></edge> +<edge label="" source="20" target="118"></edge> +<edge label="" source="20" target="119"></edge> +<edge label="" source="20" target="120"></edge> +<edge label="" source="20" target="121"></edge> +<edge label="" source="20" target="122"></edge> +<!-- non's friends --> +<edge label="" source="21" target="123"></edge> +<edge label="" source="21" target="124"></edge> +<edge label="" source="21" target="125"></edge> +<edge label="" source="21" target="126"></edge> +<edge label="" source="21" target="127"></edge> +<edge label="" source="21" target="128"></edge> +<edge label="" source="21" target="129"></edge> + +</graph> +</graphml> + Added: trunk/deployment/cishell-installer/sampledata/Network/friendster.xgmml.xml =================================================================== --- trunk/deployment/cishell-installer/sampledata/Network/friendster.xgmml.xml (rev 0) +++ trunk/deployment/cishell-installer/sampledata/Network/friendster.xgmml.xml 2006-10-27 19:54:39 UTC (rev 327) @@ -0,0 +1,325 @@ +<graph directed="0"> +<!-- me --> +<node id="1" label="Jeff"></node> +<!-- my friends --> +<node id="2" label="Ed"></node> +<node id="3" label="Christiaan"></node> +<node id="4" label="Emily"></node> +<node id="5" label="Adam"></node> +<node id="6" label="Cynthia"></node> +<node id="7" label="Joylette"></node> +<node id="8" label="Amanda"></node> +<node id="9" label="Nathaniel"></node> +<node id="10" label="Bryan"></node> +<node id="11" label="Tamara"></node> +<node id="12" label="Ashley"></node> +<node id="13" label="Ryan"></node> +<node id="14" label="Alan"></node> +<node id="15" label="Chris"></node> +<node id="16" label="Holly"></node> +<node id="17" label="Patrick"></node><!-- baudisch --> +<node id="18" label="Fernando"></node> +<node id="19" label="Corey"></node> +<node id="20" label="Ben"></node> +<node id="21" label="Non"></node> +<!-- friends of friends --> +<node id="22" label="John"></node> +<node id="23" label="Calvin"></node> +<node id="24" label="Stephanie"></node> +<node id="25" label="John"></node> +<node id="26" label="Parker"></node> +<node id="27" label="Patrick"></node><!-- em's friend --> +<node id="28" label="Marian"></node> +<node id="29" label="Robert"></node><!-- amanda's friend --> +<node id="30" label="Patrick"></node><!-- amanda's friend --> +<node id="31" label="Sam"></node> +<node id="32" label="Bob"></node> +<node id="33" label="Katie"></node> +<node id="34" label="Chako"></node> +<!-- through alan --> +<node id="35" label="Diana"></node> +<node id="36" label="Record Camp"></node> +<node id="37" label="Chuck"></node> +<node id="38" label="Micah"></node> +<node id="39" label="SuperGiggleB"></node> +<node id="40" label="Dan"></node> +<node id="41" label="Ida"></node> +<node id="42" label="Wen-Ting"></node> +<node id="43" label="Nina"></node> +<node id="44" label="Rion"></node> +<node id="45" label="Otomi"></node> +<node id="46" label="Ed"></node> +<node id="47" label="Red"></node> +<!-- through chris --> +<node id="48" label="Scott"></node> +<node id="49" label="Andrew"></node> +<node id="50" label="Emily"></node> +<node id="51" label="Robin"></node> +<node id="52" label="Ken"></node> +<node id="53" label="Michael"></node> +<node id="54" label="Jon"></node> +<node id="55" label="Josh"></node> +<node id="56" label="Matthew"></node> +<node id="57" label="Casey"></node> +<node id="58" label="Christopher"></node> +<node id="59" label="Stephen"></node> +<node id="60" label="Kenji"></node> +<node id="61" label="Richard"></node> +<node id="62" label="Matthew"></node> +<node id="63" label="David"></node> +<node id="64" label="Phil"></node> +<node id="65" label="David"></node> +<!-- through holly --> +<node id="66" label="Pete"></node> +<node id="67" label="Jeremy"></node> +<!-- through patrick (baudisch) --> +<node id="68" label="Daniel"></node> +<node id="69" label="Sumit"></node> +<!-- through fernando --> +<node id="70" label="Shane"></node> +<node id="71" label="Rikard"></node> +<node id="72" label="David"></node> +<node id="73" label="Justin"></node> +<node id="74" label="Shane"></node> +<node id="75" label="Micaela"></node> +<node id="76" label="Steven"></node> +<node id="77" label="Matt"></node> +<node id="78" label="Jory"></node> +<node id="79" label="Alexander"></node> +<node id="80" label="Jason"></node> +<node id="81" label="JohnAnthony"></node> +<!-- through ben --> +<node id="82" label="Dorothy"></node> +<node id="83" label="Nels"></node> +<node id="84" label="Rania"></node> +<node id="85" label="Michael"></node> +<node id="86" label="Evan"></node> +<node id="87" label="Joanna"></node> +<node id="88" label="sistah"></node> +<node id="89" label="Meredith"></node> +<node id="90" label="Eric"></node> +<node id="91" label="John"></node> +<node id="92" label="ryan"></node> +<node id="93" label="Eric"></node> +<node id="94" label="Jay"></node> +<node id="95" label="rumi"></node> +<node id="96" label="justin"></node> +<node id="97" label="Julij"></node> +<node id="98" label="beverly"></node> +<node id="99" label="Jai Young"></node> +<node id="100" label="spot"></node> +<node id="101" label="Tammy"></node> +<node id="102" label="Michael"></node> +<node id="103" label="jennifer"></node> +<node id="104" label="Brent"></node> +<node id="105" label="Lanha souris"></node> +<node id="106" label="dan"></node> +<node id="107" label="jeremy"></node> +<node id="108" label="Jim"></node> +<node id="109" label="steph"></node> +<node id="110" label="Jane"></node> +<node id="111" label="Justin"></node> +<node id="112" label="Kevin"></node> +<node id="113" label="Matt"></node> +<node id="114" label="Judith"></node> +<node id="115" label="Alexander"></node> +<node id="116" label="Caterina"></node> +<node id="117" label="Jesse James"></node> +<node id="118" label="Tom"></node> +<node id="119" label="Stewart"></node> +<node id="120" label="Meg"></node> +<node id="121" label="Matt"></node> +<node id="122" label="Anil"></node> +<!-- through non --> +<node id="123" label="Scott"></node> +<node id="124" label="Steve"></node> +<node id="125" label="kris"></node> +<node id="126" label="Bill"></node> +<node id="127" label="Xz"></node> +<node id="128" label="David"></node> +<node id="129" label="Zephoria"></node> + +<!-- edges --> +<edge label="" source="1" target="2"></edge> +<edge label="" source="1" target="3"></edge> +<edge label="" source="1" target="4"></edge> +<edge label="" source="1" target="5"></edge> +<edge label="" source="1" target="6"></edge> +<edge label="" source="1" target="7"></edge> +<edge label="" source="1" target="8"></edge> +<edge label="" source="1" target="9"></edge> +<edge label="" source="1" target="10"></edge> +<edge label="" source="1" target="11"></edge> +<edge label="" source="1" target="12"></edge> +<edge label="" source="1" target="13"></edge> +<edge label="" source="1" target="14"></edge> +<edge label="" source="1" target="15"></edge> +<edge label="" source="1" target="16"></edge> +<edge label="" source="1" target="17"></edge> +<edge label="" source="1" target="18"></edge> +<edge label="" source="1" target="19"></edge> +<edge label="" source="1" target="20"></edge> +<edge label="" source="1" target="21"></edge> +<!-- ed's friends --> +<edge label="" source="2" target="5"></edge> +<edge label="" source="2" target="8"></edge> +<edge label="" source="2" target="10"></edge> +<!-- christiaan's friends --> +<edge label="" source="3" target="5"></edge> +<edge label="" source="3" target="8"></edge> +<edge label="" source="3" target="10"></edge> +<edge label="" source="3" target="17"></edge> +<!-- emily's friends --> +<edge label="" source="4" target="22"></edge> +<edge label="" source="4" target="23"></edge> +<edge label="" source="4" target="24"></edge> +<edge label="" source="4" target="25"></edge> +<edge label="" source="4" target="26"></edge> +<edge label="" source="4" target="27"></edge> +<!-- adam's friends --> +<edge label="" source="5" target="8"></edge> +<edge label="" source="5" target="10"></edge> +<!-- cynthia's friends --> +<edge label="" source="6" target="14"></edge> +<!-- joylette's friends --> +<edge label="" source="7" target="8"></edge> +<edge label="" source="7" target="10"></edge> +<edge label="" source="7" target="28"></edge> +<!-- amanda's friends --> +<edge label="" source="8" target="10"></edge> +<edge label="" source="8" target="14"></edge> +<edge label="" source="8" target="15"></edge> +<edge label="" source="8" target="29"></edge> +<edge label="" source="8" target="17"></edge> +<edge label="" source="8" target="18"></edge> +<edge label="" source="8" target="30"></edge> +<edge label="" source="8" target="21"></edge> +<!-- nathaniel's friends --> +<!-- bryan's friends --> +<edge label="" source="10" target="31"></edge> +<edge label="" source="10" target="17"></edge> +<edge label="" source="10" target="30"></edge> +<!-- tamara's friends --> +<edge label="" source="11" target="12"></edge> +<edge label="" source="11" target="32"></edge> +<edge label="" source="11" target="33"></edge> +<!-- ashley's friends --> +<!-- ryan's friends --> +<edge label="" source="13" target="34"></edge> +<edge label="" source="13" target="19"></edge> +<!-- alan's friends --> +<edge label="" source="14" target="35"></edge> +<edge label="" source="14" target="36"></edge> +<edge label="" source="14" target="37"></edge> +<edge label="" source="14" target="38"></edge> +<edge label="" source="14" target="39"></edge> +<edge label="" source="14" target="40"></edge> +<edge label="" source="14" target="41"></edge> +<edge label="" source="14" target="42"></edge> +<edge label="" source="14" target="43"></edge> +<edge label="" source="14" target="44"></edge> +<edge label="" source="14" target="45"></edge> +<edge label="" source="14" target="46"></edge> +<edge label="" source="14" target="47"></edge> +<edge label="" source="14" target="15"></edge> +<edge label="" source="14" target="18"></edge> +<edge label="" source="14" target="21"></edge> +<!-- chris's friends --> +<edge label="" source="15" target="48"></edge> +<edge label="" source="15" target="49"></edge> +<edge label="" source="15" target="50"></edge> +<edge label="" source="15" target="51"></edge> +<edge label="" source="15" target="52"></edge> +<edge label="" source="15" target="53"></edge> +<edge label="" source="15" target="54"></edge> +<edge label="" source="15" target="55"></edge> +<edge label="" source="15" target="56"></edge> +<edge label="" source="15" target="57"></edge> +<edge label="" source="15" target="58"></edge> +<edge label="" source="15" target="59"></edge> +<edge label="" source="15" target="60"></edge> +<edge label="" source="15" target="61"></edge> +<edge label="" source="15" target="62"></edge> +<edge label="" source="15" target="63"></edge> +<edge label="" source="15" target="64"></edge> +<edge label="" source="15" target="65"></edge> +<edge label="" source="15" target="16"></edge> +<edge label="" source="15" target="18"></edge> +<edge label="" source="15" target="21"></edge> +<!-- holly's friends --> +<edge label="" source="16" target="66"></edge> +<edge label="" source="16" target="59"></edge> +<edge label="" source="16" target="60"></edge> +<edge label="" source="16" target="67"></edge> +<!-- patrick's friends --> +<edge label="" source="17" target="68"></edge> +<edge label="" source="17" target="69"></edge> +<!-- fernando's friends --> +<edge label="" source="18" target="70"></edge> +<edge label="" source="18" target="71"></edge> +<edge label="" source="18" target="72"></edge> +<edge label="" source="18" target="73"></edge> +<edge label="" source="18" target="74"></edge> +<edge label="" source="18" target="75"></edge> +<edge label="" source="18" target="76"></edge> +<edge label="" source="18" target="77"></edge> +<edge label="" source="18" target="78"></edge> +<edge label="" source="18" target="79"></edge> +<edge label="" source="18" target="80"></edge> +<edge label="" source="18" target="81"></edge> +<!-- corey's friends --> +<edge label="" source="19" target="20"></edge> +<!-- ben's friends --> +<edge label="" source="20" target="45"></edge> +<edge label="" source="20" target="46"></edge> +<edge label="" source="20" target="82"></edge> +<edge label="" source="20" target="83"></edge> +<edge label="" source="20" target="84"></edge> +<edge label="" source="20" target="85"></edge> +<edge label="" source="20" target="86"></edge> +<edge label="" source="20" target="87"></edge> +<edge label="" source="20" target="88"></edge> +<edge label="" source="20" target="89"></edge> +<edge label="" source="20" target="90"></edge> +<edge label="" source="20" target="91"></edge> +<edge label="" source="20" target="92"></edge> +<edge label="" source="20" target="93"></edge> +<edge label="" source="20" target="94"></edge> +<edge label="" source="20" target="95"></edge> +<edge label="" source="20" target="96"></edge> +<edge label="" source="20" target="97"></edge> +<edge label="" source="20" target="98"></edge> +<edge label="" source="20" target="99"></edge> +<edge label="" source="20" target="100"></edge> +<edge label="" source="20" target="101"></edge> +<edge label="" source="20" target="102"></edge> +<edge label="" source="20" target="103"></edge> +<edge label="" source="20" target="104"></edge> +<edge label="" source="20" target="105"></edge> +<edge label="" source="20" target="106"></edge> +<edge label="" source="20" target="107"></edge> +<edge label="" source="20" target="108"></edge> +<edge label="" source="20" target="109"></edge> +<edge label="" source="20" target="110"></edge> +<edge label="" source="20" target="111"></edge> +<edge label="" source="20" target="112"></edge> +<edge label="" source="20" target="113"></edge> +<edge label="" source="20" target="114"></edge> +<edge label="" source="20" target="115"></edge> +<edge label="" source="20" target="116"></edge> +<edge label="" source="20" target="117"></edge> +<edge label="" source="20" target="118"></edge> +<edge label="" source="20" target="119"></edge> +<edge label="" source="20" target="120"></edge> +<edge label="" source="20" target="121"></edge> +<edge label="" source="20" target="122"></edge> +<!-- non's friends --> +<edge label="" source="21" target="123"></edge> +<edge label="" source="21" target="124"></edge> +<edge label="" source="21" target="125"></edge> +<edge label="" source="21" target="126"></edge> +<edge label="" source="21" target="127"></edge> +<edge label="" source="21" target="128"></edge> +<edge label="" source="21" target="129"></edge> + +</graph> \ No newline at end of file Added: trunk/deployment/cishell-installer/sampledata/Network/terror.graphml.xml =================================================================== --- trunk/deployment/cishell-installer/sampledata/Network/terror.graphml.xml (rev 0) +++ trunk/deployment/cishell-installer/sampledata/Network/terror.graphml.xml 2006-10-27 19:54:39 UTC (rev 327) @@ -0,0 +1,256 @@ +<?xml version="1.0" encoding="UTF-8"?> +<graphml xmlns="http://graphml.graphdrawing.org/xmlns/graphml" +xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns/graphml"> +<graph edgedefault="undirected" > +<!-- prefuse graph writer :: Sat Aug 09 15:08:49 PDT 2003 --> + <!-- nodes --> + <node id="al-shehhi" label="Marwan Al-Shehhi"> + <att name="Y" value="435.0"/> + <att name="X" value="229.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> + <att name="pilot" value="true"/> +</node> + <node id="alshehri" label="Waleed M. Alshehri"> + <att name="Y" value="571.0"/> + <att name="X" value="383.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="halghamdi" label="Hamza Alghamdi"> + <att name="Y" value="329.0"/> + <att name="X" value="300.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="alsuqami" label="Satam M. A. Al Suqami"> + <att name="Y" value="443.0"/> + <att name="X" value="413.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="omar" label="Ramzi Omar"> + <att name="Y" value="435.0"/> + <att name="X" value="41.0"/> +</node> + <node id="abdullah" label="Rayed Mohammed Abdullah"> + <att name="Y" value="67.0"/> + <att name="X" value="77.0"/> +</node> +<node id="essabar" label="Zakariya Essabar"> + <att name="Y" value="469.0"/> + <att name="X" value="126.0"/> +</node> + <node id="moqed" label="Majed Moqed"> + <att name="Y" value="12.0"/> + <att name="X" value="200.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="nalhazmi" label="Nawaf Alhazmi"> + <att name="Y" value="43.0"/> + <att name="X" value="460.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="salim" label="Mamduh Mahmud Salim"> + <att name="Y" value="554.0"/> + <att name="X" value="71.0"/> +</node> + <node id="atta" label="Mohamed Atta"> + <att name="Y" value="393.0"/> + <att name="X" value="229.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> + <att name="pilot" value="true"/> +</node> + <node id="moussaoui" label="Habib Zacarias Moussaoui"> + <att name="Y" value="223.0"/> + <att name="X" value="201.0"/> +</node> + <node id="raissi" label="Lotfi Raissi"> + <att name="Y" value="186.0"/> + <att name="X" value="77.0"/> +</node> + <node id="bahaji" label="Said Bahaji"> + <att name="Y" value="393.0"/> + <att name="X" value="41.0"/> +</node> + <node id="al-marabh" label="Nabil al-Marabh"> + <att name="Y" value="311.0"/> + <att name="X" value="475.0"/> +</node> + <node id="salhazmi" label="Salem Alhazmi"> + <att name="Y" value="116.0"/> + <att name="X" value="304.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="aalghamdi" label="Ahmed Alghamdi"> + <att name="Y" value="174.0"/> + <att name="X" value="359.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="abdi" label="Mohamed Abdi"> + <att name="Y" value="73.0"/> + <att name="X" value="544.0"/> +</node> + <node id="saiid" label="Shaykh Saiid"> + <att name="Y" value="517.0"/> + <att name="X" value="287.0"/> +</node> + <node id="alhaznawi" label="Ahmed Ibrahim A. Al Haznawi"> + <att name="Y" value="254.0"/> + <att name="X" value="251.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> +</node> + <node id="alomari" label="Abdulaziz Alomari"> + <att name="Y" value="387.0"/> + <att name="X" value="352.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="darkazanli" label="Mamoun Darkazanli"> + <att name="Y" value="516.0"/> + <att name="X" value="174.0"/> +</node> + <node id="alnami" label="Ahmed Alnami"> + <att name="Y" value="161.0"/> + <att name="X" value="460.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> +</node> + <node id="salghamdi" label="Saeed Alghamdi"> + <att name="Y" value="211.0"/> + <att name="X" value="541.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> +</node> + <node id="hijazi" label="Raed Hijazi"> + <att name="Y" value="350.0"/> + <att name="X" value="541.0"/> +</node> + <node id="malshehri" label="Mohand Alshehri"> + <att name="Y" value="438.0"/> + <att name="X" value="543.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="almihdhar" label="Khalid Almihdhar"> + <att name="Y" value="12.0"/> + <att name="X" value="364.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="shaikh" label="Abdussattar Shaikh"> + <att name="Y" value="12.0"/> + <att name="X" value="529.0"/> +</node> + <node id="jarrah" label="Ziad Samir Jarrah"> + <att name="Y" value="362.0"/> + <att name="X" value="126.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> + <att name="pilot" value="true"/> +</node> + <node id="walshehri" label="Wail M. Alshehri"> + <att name="Y" value="501.0"/> + <att name="X" value="386.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="banihammad" label="Fayez Rashid Ahmed Hassan Al Qadi Banihammad"> + <att name="Y" value="536.0"/> + <att name="X" value="553.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="alsalmi" label="Faisal Al Salmi"> + <att name="Y" value="15.0"/> + <att name="X" value="107.0"/> +</node> + <node id="al-ani" label="Ahmed Khalil Ibrahim Samir Al-Ani"> + <att name="Y" value="280.0"/> + <att name="X" value="129.0"/> +</node> + <node id="hanjour" label="Hani Hanjour"> + <att name="Y" value="67.0"/> + <att name="X" value="200.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> + <att name="pilot" value="true"/> +</node> + + <!-- edges --> + <edge source="al-shehhi" target="halghamdi" weight="1"></edge> + <edge source="al-shehhi" target="raissi" weight="2"></edge> + <edge source="al-shehhi" target="essabar" weight="3"></edge> + <edge source="al-shehhi" target="atta" weight="3"></edge> + <edge source="al-shehhi" target="omar" weight="3"></edge> + <edge source="al-shehhi" target="bahaji" weight="3"></edge> + <edge source="al-shehhi" target="jarrah" weight="3"></edge> + <edge source="al-shehhi" target="darkazanli" weight="2"></edge> + <edge source="al-shehhi" target="saiid" weight="1"></edge> + <edge source="al-shehhi" target="alshehri" weight="1"></edge> + <edge source="al-shehhi" target="walshehri" weight="1"></edge> + <edge source="al-shehhi" target="alsuqami" weight="1"></edge> + <edge source="alshehri" target="saiid" weight="1"></edge> + <edge source="alshehri" target="walshehri" weight="3"></edge> + <edge source="alshehri" target="alomari" weight="1"></edge> + <edge source="alshehri" target="alsuqami" weight="3"></edge> + <edge source="alshehri" target="banihammad" weight="1"></edge> + <edge source="halghamdi" target="nalhazmi" weight="2"></edge> + <edge source="halghamdi" target="alnami" weight="3"></edge> + <edge source="halghamdi" target="salghamdi" weight="2"></edge> + <edge source="halghamdi" target="aalghamdi" weight="2"></edge> + <edge source="halghamdi" target="alhaznawi" weight="3"></edge> + <edge source="halghamdi" target="malshehri" weight="2"></edge> + <edge source="alsuqami" target="hijazi" weight="2"></edge> + <edge source="alsuqami" target="al-marabh" weight="2"></edge> + <edge source="alsuqami" target="banihammad" weight="1"></edge> + <edge source="alsuqami" target="walshehri" weight="3"></edge> + <edge source="alsuqami" target="alomari" weight="1"></edge> + <edge source="alsuqami" target="atta" weight="1"></edge> + <edge source="omar" target="bahaji" weight="3"></edge> + <edge source="omar" target="essabar" weight="3"></edge> + <edge source="omar" target="atta" weight="3"></edge> + <edge source="omar" target="jarrah" weight="3"></edge> + <edge source="abdullah" target="alsalmi" weight="1"></edge> + <edge source="abdullah" target="hanjour" weight="3"></edge> + <edge source="abdullah" target="raissi" weight="2"></edge> + <edge source="essabar" target="atta" weight="3"></edge> + <edge source="essabar" target="bahaji" weight="3"></edge> + <edge source="essabar" target="jarrah" weight="3"></edge> + <edge source="moqed" target="almihdhar" weight="1"></edge> + <edge source="moqed" target="nalhazmi" weight="1"></edge> + <edge source="moqed" target="salhazmi" weight="1"></edge> + <edge source="moqed" target="hanjour" weight="3"></edge> + <edge source="nalhazmi" target="shaikh" weight="2"></edge> + <edge source="nalhazmi" target="almihdhar" weight="3"></edge> + <edge source="nalhazmi" target="abdi" weight="2"></edge> + <edge source="nalhazmi" target="alnami" weight="3"></edge> + <edge source="nalhazmi" target="salghamdi" weight="3"></edge> + <edge source="nalhazmi" target="hanjour" weight="3"></edge> + <edge source="nalhazmi" target="salhazmi" weight="3"></edge> + <edge source="salim" target="darkazanli" weight="2"></edge> + <edge source="atta" target="hanjour" weight="2"></edge> + <edge source="atta" target="moussaoui" weight="1"></edge> + <edge source="atta" target="raissi" weight="2"></edge> + <edge source="atta" target="al-ani" weight="2"></edge> + <edge source="atta" target="jarrah" weight="3"></edge> + <edge source="atta" target="bahaji" weight="3"></edge> + <edge source="atta" target="darkazanli" weight="2"></edge> + <edge source="atta" target="saiid" weight="1"></edge> + <edge source="atta" target="walshehri" weight="1"></edge> + <edge source="atta" target="banihammad" weight="1"></edge> + <edge source="raissi" target="hanjour" weight="2"></edge> + <edge source="raissi" target="jarrah" weight="2"></edge> + <edge source="bahaji" target="jarrah" weight="3"></edge> + <edge source="al-marabh" target="aalghamdi" weight="2"></edge> + <edge source="al-marabh" target="hijazi" weight="2"></edge> + <edge source="al-marabh" target="salghamdi" weight="2"></edge> + <edge source="salhazmi" target="almihdhar" weight="1"></edge> + <edge source="salhazmi" target="hanjour" weight="2"></edge> + <edge source="salhazmi" target="aalghamdi" weight="1"></edge> + <edge source="salhazmi" target="alomari" weight="1"></edge> + <edge source="salghamdi" target="alhaznawi" weight="3"></edge> + <edge source="aalghamdi" target="hanjour" weight="1"></edge> + <edge source="aalghamdi" target="alomari" weight="1"></edge> + <edge source="alhaznawi" target="jarrah" weight="3"></edge> + <edge source="alomari" target="banihammad" weight="1"></edge> + <edge source="alomari" target="walshehri" weight="1"></edge> + <edge source="alomari" target="hanjour" weight="1"></edge> + <edge source="alnami" target="salghamdi" weight="3"></edge> + <edge source="salghamdi" target="hijazi" weight="2"></edge> + <edge source="malshehri" target="banihammad" weight="2"></edge> + <edge source="almihdhar" target="shaikh" weight="3"></edge> + <edge source="almihdhar" target="hanjour" weight="3"></edge> + <edge source="walshehri" target="banihammad" weight="1"></edge> + <edge source="alsalmi" target="hanjour" weight="1"></edge> +</graph> +</graphml> + Added: trunk/deployment/cishell-installer/sampledata/Network/terror.xgmml.xml =================================================================== --- trunk/deployment/cishell-installer/sampledata/Network/terror.xgmml.xml (rev 0) +++ trunk/deployment/cishell-installer/sampledata/Network/terror.xgmml.xml 2006-10-27 19:54:39 UTC (rev 327) @@ -0,0 +1,250 @@ +<!-- prefuse graph writer :: Sat Aug 09 15:08:49 PDT 2003 --> +<graph directed="0"> + <!-- nodes --> + <node id="al-shehhi" label="Marwan Al-Shehhi"> + <att name="Y" value="435.0"/> + <att name="X" value="229.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> + <att name="pilot" value="true"/> +</node> + <node id="alshehri" label="Waleed M. Alshehri"> + <att name="Y" value="571.0"/> + <att name="X" value="383.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="halghamdi" label="Hamza Alghamdi"> + <att name="Y" value="329.0"/> + <att name="X" value="300.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="alsuqami" label="Satam M. A. Al Suqami"> + <att name="Y" value="443.0"/> + <att name="X" value="413.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="omar" label="Ramzi Omar"> + <att name="Y" value="435.0"/> + <att name="X" value="41.0"/> +</node> + <node id="abdullah" label="Rayed Mohammed Abdullah"> + <att name="Y" value="67.0"/> + <att name="X" value="77.0"/> +</node> +<node id="essabar" label="Zakariya Essabar"> + <att name="Y" value="469.0"/> + <att name="X" value="126.0"/> +</node> + <node id="moqed" label="Majed Moqed"> + <att name="Y" value="12.0"/> + <att name="X" value="200.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="nalhazmi" label="Nawaf Alhazmi"> + <att name="Y" value="43.0"/> + <att name="X" value="460.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="salim" label="Mamduh Mahmud Salim"> + <att name="Y" value="554.0"/> + <att name="X" value="71.0"/> +</node> + <node id="atta" label="Mohamed Atta"> + <att name="Y" value="393.0"/> + <att name="X" value="229.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> + <att name="pilot" value="true"/> +</node> + <node id="moussaoui" label="Habib Zacarias Moussaoui"> + <att name="Y" value="223.0"/> + <att name="X" value="201.0"/> +</node> + <node id="raissi" label="Lotfi Raissi"> + <att name="Y" value="186.0"/> + <att name="X" value="77.0"/> +</node> + <node id="bahaji" label="Said Bahaji"> + <att name="Y" value="393.0"/> + <att name="X" value="41.0"/> +</node> + <node id="al-marabh" label="Nabil al-Marabh"> + <att name="Y" value="311.0"/> + <att name="X" value="475.0"/> +</node> + <node id="salhazmi" label="Salem Alhazmi"> + <att name="Y" value="116.0"/> + <att name="X" value="304.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="aalghamdi" label="Ahmed Alghamdi"> + <att name="Y" value="174.0"/> + <att name="X" value="359.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="abdi" label="Mohamed Abdi"> + <att name="Y" value="73.0"/> + <att name="X" value="544.0"/> +</node> + <node id="saiid" label="Shaykh Saiid"> + <att name="Y" value="517.0"/> + <att name="X" value="287.0"/> +</node> + <node id="alhaznawi" label="Ahmed Ibrahim A. Al Haznawi"> + <att name="Y" value="254.0"/> + <att name="X" value="251.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> +</node> + <node id="alomari" label="Abdulaziz Alomari"> + <att name="Y" value="387.0"/> + <att name="X" value="352.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="darkazanli" label="Mamoun Darkazanli"> + <att name="Y" value="516.0"/> + <att name="X" value="174.0"/> +</node> + <node id="alnami" label="Ahmed Alnami"> + <att name="Y" value="161.0"/> + <att name="X" value="460.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> +</node> + <node id="salghamdi" label="Saeed Alghamdi"> + <att name="Y" value="211.0"/> + <att name="X" value="541.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> +</node> + <node id="hijazi" label="Raed Hijazi"> + <att name="Y" value="350.0"/> + <att name="X" value="541.0"/> +</node> + <node id="malshehri" label="Mohand Alshehri"> + <att name="Y" value="438.0"/> + <att name="X" value="543.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="almihdhar" label="Khalid Almihdhar"> + <att name="Y" value="12.0"/> + <att name="X" value="364.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> +</node> + <node id="shaikh" label="Abdussattar Shaikh"> + <att name="Y" value="12.0"/> + <att name="X" value="529.0"/> +</node> + <node id="jarrah" label="Ziad Samir Jarrah"> + <att name="Y" value="362.0"/> + <att name="X" value="126.0"/> + <att name="flight" value="United Airlines Flight 93 (Pennsylvania)"/> + <att name="pilot" value="true"/> +</node> + <node id="walshehri" label="Wail M. Alshehri"> + <att name="Y" value="501.0"/> + <att name="X" value="386.0"/> + <att name="flight" value="American Airlines Flight 11 (WTC1)"/> +</node> + <node id="banihammad" label="Fayez Rashid Ahmed Hassan Al Qadi Banihammad"> + <att name="Y" value="536.0"/> + <att name="X" value="553.0"/> + <att name="flight" value="United Airlines Flight 175 (WTC2)"/> +</node> + <node id="alsalmi" label="Faisal Al Salmi"> + <att name="Y" value="15.0"/> + <att name="X" value="107.0"/> +</node> + <node id="al-ani" label="Ahmed Khalil Ibrahim Samir Al-Ani"> + <att name="Y" value="280.0"/> + <att name="X" value="129.0"/> +</node> + <node id="hanjour" label="Hani Hanjour"> + <att name="Y" value="67.0"/> + <att name="X" value="200.0"/> + <att name="flight" value="American Airlines Flight 77 (Pentagon)"/> + <att name="pilot" value="true"/> +</node> + + <!-- edges --> + <edge source="al-shehhi" target="halghamdi" weight="1"></edge> + <edge source="al-shehhi" target="raissi" weight="2"></edge> + <edge source="al-shehhi" target="essabar" weight="3"></edge> + <edge source="al-shehhi" target="atta" weight="3"></edge> + <edge source="al-shehhi" target="omar" weight="3"></edge> + <edge source="al-shehhi" target="bahaji" weight="3"></edge> + <edge source="al-shehhi" target="jarrah" weight="3... [truncated message content] |
From: <bh...@us...> - 2006-12-19 21:37:14
|
Revision: 354 http://svn.sourceforge.net/cishell/?rev=354&view=rev Author: bh2 Date: 2006-12-19 13:36:58 -0800 (Tue, 19 Dec 2006) Log Message: ----------- CIShell version bump to 0.3.0 Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF trunk/core/org.cishell.framework/META-INF/MANIFEST.MF trunk/core/org.cishell.reference/META-INF/MANIFEST.MF trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF trunk/deployment/cishell-installer/build.xml trunk/deployment/cishell-installer/cishell.product trunk/deployment/cishell-installer/install.xml trunk/deployment/cishell-installer/thanks.txt trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml trunk/deployment/org.cishell.development.feature/feature.xml trunk/deployment/org.cishell.feature/feature.xml trunk/deployment/org.cishell.reference.feature/feature.xml trunk/deployment/org.cishell.reference.gui.feature/feature.xml trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Branding Plug-in Bundle-SymbolicName: org.cishell.reference.gui.brand.cishell;singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.reference.gui.brand.cishell.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.core.runtime, Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/plugin.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -56,7 +56,7 @@ <perspectiveExtension targetID="org.cishell.reference.gui.workspace.Perspective"> <view id="org.cishell.reference.gui.scheduler.SchedulerView" - relative="org.cishell.reference.gui.log.LogView" + relative="org.eclipse.ui.editors" relationship="bottom" ratio="1.00" moveable = "true" Modified: trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.datamanager/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Data Manager GUI Plug-in Bundle-SymbolicName: org.cishell.reference.gui.datamanager;singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.reference.gui.datamanager.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: GUI Builder Reference Implementation Using SWT Bundle-SymbolicName: org.cishell.reference.gui.guibuilder.swt -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Localization: plugin Import-Package: org.cishell.framework, org.cishell.service.guibuilder, Modified: trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.log/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Log GUI Plug-in Bundle-SymbolicName: org.cishell.reference.gui.log;singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.reference.gui.log.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Menu Manager Plug-in Bundle-SymbolicName: org.cishell.reference.gui.menumanager;singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.reference.gui.menumanager.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.persistence/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Persistence Plug-in Bundle-SymbolicName: org.cishell.reference.gui.persistence;singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-ClassPath: . Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager, Modified: trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Reference GUI Workspace Plug-in Bundle-SymbolicName: org.cishell.reference.gui.workspace; singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.reference.gui.workspace.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/core/org.cishell.framework/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/core/org.cishell.framework/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Framework API Bundle-SymbolicName: org.cishell.framework -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Vendor: Bruce Herr Bundle-Localization: plugin Import-Package: org.osgi.framework, Modified: trunk/core/org.cishell.reference/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Reference Service Implementations Bundle-SymbolicName: org.cishell.reference -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager, org.cishell.app.service.scheduler, Modified: trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Reference Services Starter Bundle-SymbolicName: org.cishell.reference.services -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.reference.services.Activator Bundle-Localization: plugin X-AutoStart: true Modified: trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Bundler Autostarter Bundle-SymbolicName: org.cishell.service.autostart -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.service.autostart.Activator Bundle-Localization: plugin Import-Package: org.osgi.framework;version="1.3.0" Modified: trunk/deployment/cishell-installer/build.xml =================================================================== --- trunk/deployment/cishell-installer/build.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/cishell-installer/build.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -12,10 +12,10 @@ <project name='CIShell Installer' default='compile' basedir='.'> <!-- Properties --> - <property name="version" value="0.2.1"/> + <property name="version" value="0.3.0"/> <property name="full.xml" value="install.xml"/> <property name="min.xml" value="install.xml"/> - <property name="full.jar" value="cishell-installer_${version}.alpha.jar"/> + <property name="full.jar" value="cishell-installer_${version}.jar"/> <property name="min.jar" value="cishell.${version}.minimal-installer.jar"/> Modified: trunk/deployment/cishell-installer/cishell.product =================================================================== --- trunk/deployment/cishell-installer/cishell.product 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/cishell-installer/cishell.product 2006-12-19 21:36:58 UTC (rev 354) @@ -40,11 +40,11 @@ </plugins> <features> - <feature id="org.cishell.algorithm.examples.feature" version="0.2.1"/> + <feature id="org.cishell.algorithm.examples.feature" version="0.3.0"/> <feature id="org.cishell.environment.equinox.feature" version="0.1.0"/> - <feature id="org.cishell.feature" version="0.2.1"/> - <feature id="org.cishell.reference.feature" version="0.2.1"/> - <feature id="org.cishell.reference.gui.feature" version="0.2.1"/> + <feature id="org.cishell.feature" version="0.3.0"/> + <feature id="org.cishell.reference.feature" version="0.3.0"/> + <feature id="org.cishell.reference.gui.feature" version="0.3.0"/> </features> </product> Modified: trunk/deployment/cishell-installer/install.xml =================================================================== --- trunk/deployment/cishell-installer/install.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/cishell-installer/install.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -16,7 +16,7 @@ <info> <appname>CIShell: Cyberinfrastructure Shell</appname> <appsubpath>cishell</appsubpath> - <appversion>0.2.1</appversion> + <appversion>0.3.0</appversion> <authors> <author name="Bruce Herr" email="bh...@bh..." /> <author name="Weixia Huang" email="hu...@in..." /> Modified: trunk/deployment/cishell-installer/thanks.txt =================================================================== --- trunk/deployment/cishell-installer/thanks.txt 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/cishell-installer/thanks.txt 2006-12-19 21:36:58 UTC (rev 354) @@ -1,14 +1,9 @@ Installation of CIShell: Cyberinfrastructure Shell was successful! -This release adds several algorithms and converters to give an idea of -what a filling of CIShell would be like. Also, automatic multi-step -data conversion has been implemented in this version. +This release adds full Max OSX support, a brand new algorithm Scheduler GUI, +expanded windows executable support for batch files, some small GUI +improvements, new Visualizations and fixes to old ones, and many bug fixes. -WARNING: This is an alpha release of CIShell. This means that not all -the functionality is there, there will be bugs, and that the final -feature set is not yet set in stone. If you have bug reports, comments, -or feature requests please feel free to contact us as described below. - If you have any problems, please contact the CIShell development team at cis...@li.... New releases will be announced on the users list. You can sign up on our Modified: trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ <feature id="org.cishell.algorithm.examples.feature" label="CIShell Sample Algorithms" - version="0.2.1"> + version="0.3.0"> <description> Example algorithms for development and testing of CIShell. Modified: trunk/deployment/org.cishell.development.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.development.feature/feature.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/org.cishell.development.feature/feature.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ <feature id="org.cishell.development.feature" label="CIShell Algorithm Development Plug-In" - version="0.2.1"> + version="0.3.0"> <description url="http://cishell.org"> The CIShell Algorithm Development Pack Modified: trunk/deployment/org.cishell.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.feature/feature.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/org.cishell.feature/feature.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ <feature id="org.cishell.feature" label="CIShell Framework API Feature" - version="0.2.1"> + version="0.3.0"> <description url="http://cishell.org"> CIShell Framework API Modified: trunk/deployment/org.cishell.reference.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.reference.feature/feature.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/org.cishell.reference.feature/feature.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ <feature id="org.cishell.reference.feature" label="CIShell Reference Bundles" - version="0.2.1"> + version="0.3.0"> <description url="http://cishell.org"> CIShell Reference Bundles Modified: trunk/deployment/org.cishell.reference.gui.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.reference.gui.feature/feature.xml 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/deployment/org.cishell.reference.gui.feature/feature.xml 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ <feature id="org.cishell.reference.gui.feature" label="CIShell Reference GUI" - version="0.2.1"> + version="0.3.0"> <description url="http://cishell.org"> CIShell Reference GUI Modified: trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF =================================================================== --- trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Template Code Provider Bundle-SymbolicName: org.cishell.templates;singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Localization: plugin X-AutoStart: true Import-Package: org.cishell.framework, Modified: trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF =================================================================== --- trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2006-12-18 14:31:14 UTC (rev 353) +++ trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2006-12-19 21:36:58 UTC (rev 354) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Integration Wizards Bundle-SymbolicName: org.cishell.templates.wizards;singleton:=true -Bundle-Version: 0.2.1 +Bundle-Version: 0.3.0 Bundle-Activator: org.cishell.templates.wizards.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui;bundle-version="3.2.0", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bh...@us...> - 2007-03-01 16:25:22
|
Revision: 368 http://svn.sourceforge.net/cishell/?rev=368&view=rev Author: bh2 Date: 2007-03-01 08:25:17 -0800 (Thu, 01 Mar 2007) Log Message: ----------- CIShell version bump to 0.4.0 Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.scheduler/META-INF/MANIFEST.MF trunk/core/org.cishell.reference/META-INF/MANIFEST.MF trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml trunk/deployment/org.cishell.reference.feature/feature.xml trunk/deployment/org.cishell.reference.gui.feature/feature.xml Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/META-INF/MANIFEST.MF 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Branding Plug-in Bundle-SymbolicName: org.cishell.reference.gui.brand.cishell;singleton:=true -Bundle-Version: 0.3.0 +Bundle-Version: 0.4.0 Bundle-Activator: org.cishell.reference.gui.brand.cishell.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.core.runtime, Modified: trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/clients/gui/org.cishell.reference.gui.guibuilder.swt/META-INF/MANIFEST.MF 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: GUI Builder Reference Implementation Using SWT Bundle-SymbolicName: org.cishell.reference.gui.guibuilder.swt -Bundle-Version: 0.3.0 +Bundle-Version: 0.4.0 Bundle-Localization: plugin Import-Package: org.cishell.framework, org.cishell.service.guibuilder, Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Menu Manager Plug-in Bundle-SymbolicName: org.cishell.reference.gui.menumanager;singleton:=true -Bundle-Version: 0.3.0 +Bundle-Version: 0.4.0 Bundle-Activator: org.cishell.reference.gui.menumanager.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/clients/gui/org.cishell.reference.gui.scheduler/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.scheduler/META-INF/MANIFEST.MF 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/clients/gui/org.cishell.reference.gui.scheduler/META-INF/MANIFEST.MF 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Scheduler GUI Plug-in Bundle-SymbolicName: org.cishell.reference.gui.scheduler;singleton:=true -Bundle-Version: 0.3.0 +Bundle-Version: 0.4.0 Bundle-Activator: org.cishell.reference.gui.scheduler.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, Modified: trunk/core/org.cishell.reference/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Reference Service Implementations Bundle-SymbolicName: org.cishell.reference -Bundle-Version: 0.3.0 +Bundle-Version: 0.4.0 Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager, org.cishell.app.service.scheduler, Modified: trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/deployment/org.cishell.algorithm.examples.feature/feature.xml 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ <feature id="org.cishell.algorithm.examples.feature" label="CIShell Sample Algorithms" - version="0.3.0"> + version="0.4.0"> <description> Example algorithms for development and testing of CIShell. @@ -121,13 +121,6 @@ unpack="false"/> <plugin - id="edu.iu.nwb.converter.junggraphml" - download-size="0" - install-size="0" - version="0.0.0" - unpack="false"/> - - <plugin id="edu.iu.nwb.converter.jungpajeknet" download-size="0" install-size="0" @@ -210,4 +203,25 @@ version="0.0.0" unpack="false"/> + <plugin + id="edu.iu.nwb.converter.prefusegraphml" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.converter.prefusetreeml" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + + <plugin + id="edu.iu.nwb.converter.treegraph" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> + </feature> Modified: trunk/deployment/org.cishell.reference.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.reference.feature/feature.xml 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/deployment/org.cishell.reference.feature/feature.xml 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ <feature id="org.cishell.reference.feature" label="CIShell Reference Bundles" - version="0.3.0"> + version="0.4.0"> <description url="http://cishell.org"> CIShell Reference Bundles Modified: trunk/deployment/org.cishell.reference.gui.feature/feature.xml =================================================================== --- trunk/deployment/org.cishell.reference.gui.feature/feature.xml 2007-02-22 20:36:54 UTC (rev 367) +++ trunk/deployment/org.cishell.reference.gui.feature/feature.xml 2007-03-01 16:25:17 UTC (rev 368) @@ -2,7 +2,7 @@ <feature id="org.cishell.reference.gui.feature" label="CIShell Reference GUI" - version="0.3.0"> + version="0.4.0"> <description url="http://cishell.org"> CIShell Reference GUI This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bh...@us...> - 2008-01-23 20:53:27
|
Revision: 602 http://cishell.svn.sourceforge.net/cishell/?rev=602&view=rev Author: bh2 Date: 2008-01-23 12:53:14 -0800 (Wed, 23 Jan 2008) Log Message: ----------- Initial commit of the edu.iu.nwb.util utility bundle. It currently contains a callback based api for reading nwb files, an nwb writing class, and a handler for just grabbing metadata from nwb files. Future general purpose utility classes should go here. edu.iu.nwb.visualization.drl uses this library for its nwb reading/writing. Added Paths: ----------- trunk/plugins/ trunk/plugins/shared/ trunk/plugins/shared/edu.iu.nwb.util/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bh...@us...> - 2008-03-25 19:35:19
|
Revision: 708 http://cishell.svn.sourceforge.net/cishell/?rev=708&view=rev Author: bh2 Date: 2008-03-25 12:32:53 -0700 (Tue, 25 Mar 2008) Log Message: ----------- removed some unneeded bundle-localization items in manifests Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF trunk/core/org.cishell.reference/META-INF/MANIFEST.MF trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF trunk/examples/org.cishell.tests.conversion1/src/org/cishell/tests/conversion1/AlgC.java trunk/libs/cern.colt/META-INF/MANIFEST.MF trunk/libs/edu.uci.ics.jung/META-INF/MANIFEST.MF trunk/libs/org.apache.commons.collections/META-INF/MANIFEST.MF trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/clients/gui/org.cishell.reference.gui.menumanager/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -4,7 +4,6 @@ Bundle-SymbolicName: org.cishell.reference.gui.menumanager;singleton:=true Bundle-Version: 1.0.0 Bundle-Activator: org.cishell.reference.gui.menumanager.Activator -Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime Eclipse-LazyStart: true Modified: trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/clients/gui/org.cishell.reference.gui.workspace/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -4,7 +4,6 @@ Bundle-SymbolicName: org.cishell.reference.gui.workspace; singleton:=true Bundle-Version: 1.0.0 Bundle-Activator: org.cishell.reference.gui.workspace.Activator -Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, org.eclipse.update.ui Modified: trunk/core/org.cishell.reference/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/core/org.cishell.reference/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -3,7 +3,6 @@ Bundle-Name: CIShell Reference Service Implementations Bundle-SymbolicName: org.cishell.reference Bundle-Version: 1.0.0 -Bundle-Localization: plugin Import-Package: org.cishell.app.service.datamanager;version="1.0.0", org.cishell.app.service.scheduler;version="1.0.0", org.cishell.framework;version="1.0.0", Modified: trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/core/org.cishell.reference.services/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -4,7 +4,6 @@ Bundle-SymbolicName: org.cishell.reference.services Bundle-Version: 1.0.0 Bundle-Activator: org.cishell.reference.services.Activator -Bundle-Localization: plugin X-AutoStart: true Import-Package: org.cishell.app.service.datamanager;version="1.0.0", org.cishell.app.service.scheduler;version="1.0.0", Modified: trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/core/org.cishell.service.autostart/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -4,5 +4,4 @@ Bundle-SymbolicName: org.cishell.service.autostart Bundle-Version: 1.0.0 Bundle-Activator: org.cishell.service.autostart.Activator -Bundle-Localization: plugin Import-Package: org.osgi.framework;version="1.3.0" Modified: trunk/examples/org.cishell.tests.conversion1/src/org/cishell/tests/conversion1/AlgC.java =================================================================== --- trunk/examples/org.cishell.tests.conversion1/src/org/cishell/tests/conversion1/AlgC.java 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/examples/org.cishell.tests.conversion1/src/org/cishell/tests/conversion1/AlgC.java 2008-03-25 19:32:53 UTC (rev 708) @@ -20,7 +20,6 @@ import org.cishell.framework.algorithm.AlgorithmFactory; import org.cishell.framework.data.Data; import org.osgi.service.log.LogService; -import org.osgi.service.metatype.MetaTypeProvider; /** * Modified: trunk/libs/cern.colt/META-INF/MANIFEST.MF =================================================================== --- trunk/libs/cern.colt/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/libs/cern.colt/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -4,5 +4,4 @@ Bundle-SymbolicName: cern.colt Bundle-Version: 1.2.0 Bundle-ClassPath: colt.jar -Bundle-Localization: plugin Export-Package: cern.clhep,cern.colt,cern.colt.bitvector,cern.colt.buffer,cern.colt.function,cern.colt.list,cern.colt.list.adapter,cern.colt.map,cern.colt.matrix,cern.colt.matrix.bench,cern.colt.matrix.doublealgo,cern.colt.matrix.impl,cern.colt.matrix.linalg,cern.colt.matrix.objectalgo,cern.jet.math,cern.jet.random,cern.jet.random.engine,cern.jet.random.sampling,cern.jet.stat,cern.jet.stat.quantile,corejava,hep.aida,hep.aida.bin,hep.aida.ref Modified: trunk/libs/edu.uci.ics.jung/META-INF/MANIFEST.MF =================================================================== --- trunk/libs/edu.uci.ics.jung/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/libs/edu.uci.ics.jung/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -4,7 +4,6 @@ Bundle-SymbolicName: edu.uci.ics.jung Bundle-Version: 1.7.4 Bundle-ClassPath: jung-1.7.4.jar -Bundle-Localization: plugin Export-Package: edu.uci.ics.jung.algorithms, edu.uci.ics.jung.algorithms.blockmodel, edu.uci.ics.jung.algorithms.cluster, Modified: trunk/libs/org.apache.commons.collections/META-INF/MANIFEST.MF =================================================================== --- trunk/libs/org.apache.commons.collections/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/libs/org.apache.commons.collections/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -4,5 +4,4 @@ Bundle-SymbolicName: org.apache.commons.collections Bundle-Version: 3.1.0 Bundle-ClassPath: commons-collections-3.1.jar -Bundle-Localization: plugin Export-Package: org.apache.commons.collections,org.apache.commons.collections.bag,org.apache.commons.collections.bidimap,org.apache.commons.collections.buffer,org.apache.commons.collections.collection,org.apache.commons.collections.comparators,org.apache.commons.collections.functors,org.apache.commons.collections.iterators,org.apache.commons.collections.keyvalue,org.apache.commons.collections.list,org.apache.commons.collections.map,org.apache.commons.collections.set Modified: trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF =================================================================== --- trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF 2008-03-25 19:18:32 UTC (rev 707) +++ trunk/templates/org.cishell.templates/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) @@ -3,7 +3,6 @@ Bundle-Name: CIShell Template Code Provider Bundle-SymbolicName: org.cishell.templates;singleton:=true Bundle-Version: 1.0.0 -Bundle-Localization: plugin X-AutoStart: true Import-Package: org.cishell.framework;version="1.0.0", org.cishell.framework.algorithm;version="1.0.0", This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |