<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/hypergraph/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/hypergraph/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Thu, 17 Dec 2009 10:56:42 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/hypergraph/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Javascript setting edge class</title><link>https://sourceforge.net/p/hypergraph/support-requests/11/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello Jens,&lt;/p&gt;
&lt;p&gt;What a beautiful tool is HyperGraph! &lt;/p&gt;
&lt;p&gt;I am writing a tool that shows links between words and make use of Javascript to dynamically add nodes and edges. This works very well. However, when I try to set the class of an edge using Javascript, the layout does not change...&lt;/p&gt;
&lt;p&gt;I am using the following:&lt;/p&gt;
&lt;p&gt;var graphEdge = graph.createEdge(name, sourceNode, targetNode);&lt;br /&gt;
attrMgr.setAttribute('class',graphEdge,style);&lt;br /&gt;
document.hgApplet.getGraphPanel().getGraphLayout().layout();&lt;/p&gt;
&lt;p&gt;The (string) style contains the name of the class that I have in my GraphXML.&lt;/p&gt;
&lt;p&gt;Is this the right way, or is there another way to set the class 'runtime'?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Ruben de Graaf&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 17 Dec 2009 10:56:42 -0000</pubDate><guid>https://sourceforge.net19d275c6e842f20e832bff4f16257e895704fc36</guid></item><item><title>how to i obtain xml data using http</title><link>https://sourceforge.net/p/hypergraph/support-requests/10/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;this is what I want to do:&lt;/p&gt;
&lt;p&gt;&amp;lt;applet code="hypergraph.applications.hexplorer.HExplorerApplet.class" archive="hyperapplet.jar" height="540" width="720"&amp;gt;&lt;br /&gt;
&amp;lt;param name="file" value="http://someurl.com/hyper/hyper.php"&amp;gt;&lt;br /&gt;
&amp;lt;param name="properties" value="hyper.prop"&amp;gt;&lt;br /&gt;
&amp;lt;param name="center" value="9774"&amp;gt;&amp;lt;/applet&amp;gt;&lt;/p&gt;
&lt;p&gt;but using a url for the value does not seem to work. &lt;/p&gt;
&lt;p&gt;should it work?&lt;/p&gt;
&lt;p&gt;is their any fix i could do.&lt;/p&gt;
&lt;p&gt;ps: hyper.php returns a xml page, and sends xml headers, and is properly formated. i copyed the output of hyper.php and used it as a file, as hyper.xml. then i open a html file which contained the appropriate applet code. It worked like that.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 07 Feb 2008 17:55:40 -0000</pubDate><guid>https://sourceforge.netcda26550ba83bc766681434306a6a464e3725bde</guid></item><item><title>how to extend edges length?</title><link>https://sourceforge.net/p/hypergraph/support-requests/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;How to get the edges longer?&lt;br /&gt;
I try to use the TreeLayout.setMinDistance() but&lt;br /&gt;
nothing happens, so what should I do?&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">osiris</dc:creator><pubDate>Wed, 28 Jun 2006 07:30:48 -0000</pubDate><guid>https://sourceforge.neta4ee752d55d2c62d50f3a1cf1996b43ecf061ce4</guid></item><item><title>Parent/Child, Edge/node</title><link>https://sourceforge.net/p/hypergraph/support-requests/7/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello.&lt;/p&gt;
&lt;p&gt;Sorry, i search, but i dont find respond.&lt;br /&gt;
That is my problem :&lt;/p&gt;
&lt;p&gt;I want to rely 2 point in 2 different Tree.&lt;br /&gt;
But it's place the two point in the same tree.&lt;br /&gt;
How to force a node(or edge) to be in the tree i want.&lt;br /&gt;
Like Parent and Child.&lt;/p&gt;
&lt;p&gt;I'm not sure to be realy comprehensive, (I'm french &lt;br /&gt;
and my english is not good), so i join a gif about &lt;br /&gt;
what's hapend and what i want to do.&lt;/p&gt;
&lt;p&gt;Please help me a litle. I'm not programing' man, but &lt;br /&gt;
in Art-School.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 27 Mar 2006 19:59:46 -0000</pubDate><guid>https://sourceforge.netf210a99f52451148e92a77ebd0a425af4cdff6f5</guid></item><item><title>Center Node</title><link>https://sourceforge.net/p/hypergraph/support-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;How can I center a node using Java script. I have &lt;br /&gt;
graph in the applet and would like to center a &lt;br /&gt;
particular node based on user's click outside of the &lt;br /&gt;
graph. I am planning on using javascript. Earlier I &lt;br /&gt;
saw an example which was doing that but can't find &lt;br /&gt;
that now. It had something like this&lt;/p&gt;
&lt;p&gt;document.testApplet.getGraphPanel().centerNode("I20");&lt;/p&gt;
&lt;p&gt;Where testApplet is the name of the applet.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">utpal_amin</dc:creator><pubDate>Thu, 09 Mar 2006 03:39:31 -0000</pubDate><guid>https://sourceforge.net8e686bc18fff1f19ee36cd962691537420fcc543</guid></item><item><title>edge question</title><link>https://sourceforge.net/p/hypergraph/support-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Can you have more than one edge between the same nodes?&lt;br /&gt;
If so can you provided some sample xml, thanks  This&lt;br /&gt;
is a great toolkit!!!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 22 Dec 2005 22:07:21 -0000</pubDate><guid>https://sourceforge.net52e52c21856428c6d6a71764a043935719867fde</guid></item><item><title>Dynamic</title><link>https://sourceforge.net/p/hypergraph/support-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I would like the graph to be dynamic.  I would like to use &lt;br /&gt;
sql to create the tree on the fly.  So say you clicked on &lt;br /&gt;
a fourth level leaf, the application would then go out to &lt;br /&gt;
the database and requery up the next leafs. &lt;/p&gt;
&lt;p&gt;Or can I create the xml file on the fly.  The data/tree is &lt;br /&gt;
always changing.&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;br /&gt;
Is this possible?&lt;/p&gt;
&lt;p&gt;Email:  kjcook64@yahoo.com&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 05 Jul 2005 20:41:48 -0000</pubDate><guid>https://sourceforge.netf3fa391aa5efd50d7e5ae9b750a6c2654c18b705</guid></item><item><title>Hyperlinking</title><link>https://sourceforge.net/p/hypergraph/support-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;hi,&lt;br /&gt;
how can i load html file when clicking on a node?&lt;/p&gt;
&lt;p&gt;10x&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Earth</dc:creator><pubDate>Wed, 30 Jun 2004 20:20:15 -0000</pubDate><guid>https://sourceforge.net2e5a8d8d9ece5918917343fcab578649535fbc4c</guid></item><item><title>newbie features questions/requests</title><link>https://sourceforge.net/p/hypergraph/support-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I've just found this hypergraph project, and it looks to &lt;br /&gt;
be good for the kind of thing we need. i've played &lt;br /&gt;
around with it for a day, and can get it all up and &lt;br /&gt;
running with my own xml files.&lt;/p&gt;
&lt;p&gt;Our project looks at how risk is propagated through a &lt;br /&gt;
tree. The bottom-level nodes (leaves) of the tree show &lt;br /&gt;
how individual items contribute to risk. These individual &lt;br /&gt;
contributions are combined with their sibling nodes to &lt;br /&gt;
pass the combined risk up to the parent node&lt;br /&gt;
(branch). Each node has varying degrees of information &lt;br /&gt;
about the risk and there may be several hundred nodes &lt;br /&gt;
in the entire tree.&lt;/p&gt;
&lt;p&gt;Your hypergraph view will be useful for experts to &lt;br /&gt;
browse the tree to identify where the influences on risk &lt;br /&gt;
reside. We anticipate that using colour coding will make &lt;br /&gt;
this reasonably easy to visualise. However, in&lt;br /&gt;
order to progress with your applet, we need to be able &lt;br /&gt;
to do two other things:&lt;/p&gt;
&lt;p&gt;1. as the tree is so large, we'd like to place icons in the &lt;br /&gt;
applet which, when clicked, will re-orientate the tree to &lt;br /&gt;
pre-specified points (landmarks). The top of the tree is &lt;br /&gt;
the obvious one, but others may also be useful e.g. a &lt;br /&gt;
commonly used point within the subtree.&lt;/p&gt;
&lt;p&gt;2. richer analysis of node information. As stated above, &lt;br /&gt;
each node has considerable information about the risk &lt;br /&gt;
value associated with it and we would like to control &lt;br /&gt;
how it is displayed when a node is double-clicked. At the &lt;br /&gt;
moment, the only way I can see this happening&lt;br /&gt;
is by opening up another web page, and I'm not even &lt;br /&gt;
sure this would work as there would be specific &lt;br /&gt;
parameters that must be passed to the page to show &lt;br /&gt;
the data. The other thing is, we'd like to show the data&lt;br /&gt;
and the hypergraph on the same page to preserve &lt;br /&gt;
context - perhaps the graph on the left and a pop-up, &lt;br /&gt;
or panel on the right which shows the data for the node &lt;br /&gt;
in question. At the moment, our data is stored in the &lt;br /&gt;
same xml file as the tree structure, embedded in the &lt;br /&gt;
node information. So, our requirement (or wish) is that &lt;br /&gt;
double clicking on the node could fire up another applet &lt;br /&gt;
(or Flash movie) containing a simple graph of the node &lt;br /&gt;
information. Can this be made possible?&lt;/p&gt;
&lt;p&gt;We are a University, not a private company, and we are &lt;br /&gt;
developing a tool for health-care workers, on a grant &lt;br /&gt;
provided by the Department of Health. If these features &lt;br /&gt;
can be implemented quickly, we would be able&lt;br /&gt;
and willing to make an appropriate donation for your hard &lt;br /&gt;
work.&lt;/p&gt;
&lt;p&gt;My e-mail address is r.picking@newi.ac.uk and my name &lt;br /&gt;
is Rich.&lt;/p&gt;
&lt;p&gt;Please contact me asap.&lt;/p&gt;
&lt;p&gt;cheers&lt;/p&gt;
&lt;p&gt;Rich&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rich</dc:creator><pubDate>Thu, 20 May 2004 10:35:53 -0000</pubDate><guid>https://sourceforge.net8b82101a6bb2693d79fafb3d7b5ae16ecc776921</guid></item><item><title>newbie features questions/requests</title><link>https://sourceforge.net/p/hypergraph/support-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I've just found this hypergraph project, and it looks to &lt;br /&gt;
be good for the kind of thing we need. i've played &lt;br /&gt;
around with it for a day, and can get it all up and &lt;br /&gt;
running with my own xml files.&lt;/p&gt;
&lt;p&gt;Our project looks at how risk is propagated through a &lt;br /&gt;
tree. The bottom-level nodes (leaves) of the tree show &lt;br /&gt;
how individual items contribute to risk. These individual &lt;br /&gt;
contributions are combined with their sibling nodes to &lt;br /&gt;
pass the combined risk up to the parent node&lt;br /&gt;
(branch). Each node has varying degrees of information &lt;br /&gt;
about the risk and there may be several hundred nodes &lt;br /&gt;
in the entire tree.&lt;/p&gt;
&lt;p&gt;Your hypergraph view will be useful for experts to &lt;br /&gt;
browse the tree to identify where the influences on risk &lt;br /&gt;
reside. We anticipate that using colour coding will make &lt;br /&gt;
this reasonably easy to visualise. However, in&lt;br /&gt;
order to progress with your applet, we need to be able &lt;br /&gt;
to do two other things:&lt;/p&gt;
&lt;p&gt;1. as the tree is so large, we'd like to place icons in the &lt;br /&gt;
applet which, when clicked, will re-orientate the tree to &lt;br /&gt;
pre-specified points (landmarks). The top of the tree is &lt;br /&gt;
the obvious one, but others may also be useful e.g. a &lt;br /&gt;
commonly used point within the subtree.&lt;/p&gt;
&lt;p&gt;2. richer analysis of node information. As stated above, &lt;br /&gt;
each node has considerable information about the risk &lt;br /&gt;
value associated with it and we would like to control &lt;br /&gt;
how it is displayed when a node is double-clicked. At the &lt;br /&gt;
moment, the only way I can see this happening&lt;br /&gt;
is by opening up another web page, and I'm not even &lt;br /&gt;
sure this would work as there would be specific &lt;br /&gt;
parameters that must be passed to the page to show &lt;br /&gt;
the data. The other thing is, we'd like to show the data&lt;br /&gt;
and the hypergraph on the same page to preserve &lt;br /&gt;
context - perhaps the graph on the left and a pop-up, &lt;br /&gt;
or panel on the right which shows the data for the node &lt;br /&gt;
in question. At the moment, our data is stored in the &lt;br /&gt;
same xml file as the tree structure, embedded in the &lt;br /&gt;
node information. So, our requirement (or wish) is that &lt;br /&gt;
double clicking on the node could fire up another applet &lt;br /&gt;
(or Flash movie) containing a simple graph of the node &lt;br /&gt;
information. Can this be made possible?&lt;/p&gt;
&lt;p&gt;We are a University, not a private company, and we are &lt;br /&gt;
developing a tool for health-care workers, on a grant &lt;br /&gt;
provided by the Department of Health. If these features &lt;br /&gt;
can be implemented quickly, we would be able&lt;br /&gt;
and willing to make an appropriate donation for your hard &lt;br /&gt;
work.&lt;/p&gt;
&lt;p&gt;My e-mail address is r.picking@newi.ac.uk and my name &lt;br /&gt;
is Rich.&lt;/p&gt;
&lt;p&gt;Please contact me asap.&lt;/p&gt;
&lt;p&gt;cheers&lt;/p&gt;
&lt;p&gt;Rich&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rich</dc:creator><pubDate>Thu, 20 May 2004 08:44:29 -0000</pubDate><guid>https://sourceforge.netb987a78923f199a53dbbaca55980cac64326679e</guid></item></channel></rss>