netwulf icon indicating copy to clipboard operation
netwulf copied to clipboard

Save visualization

Open ccampanile opened this issue 5 years ago • 4 comments

Hi,

I am testing Netwulf on a project and I would like to save the webpage. If I save the page in Chrome it and when re-open it, no graph appears and the UI is frozen.

Is there a proper way to save this from python?

Thank you! Cheers Claudio

EDIT: I also tied to open it from ~/.netwulf directly, or through a Chrome web server, but still the same result.

ccampanile avatar Oct 18 '18 08:10 ccampanile

Hey, though sometimes possible, you should not use the html-file and open it directly with a browser. Rather, you should run a local server. What you could do is the following.

Start the visualization from Python. Now, in ~/.netwulf/, there appeared two files, both something with *tmp_*.json. One of them is the network data and the other one is the configuration data.

Copy the ~/.netwulf directory to some other directory /path/to/other with

cp -r ~/.netwulf/ /path/to/other

Then change to the directory and start a local webserver

cd /path/to/other
python -m "http.server" 1234

Then, in your browser, open

http://localhost:1234/?config=config_filename.json&data_filename.json

where config_filename.json should be replaced with the config file in /path/to/other and similarly with data_filename.json.

When your question is "I want to save the current configuration", currently there's no other way to use the controls on top of the GUI. You can directly access the config json by clicking on the small gear wheel though. This might change in the future.

benmaier avatar Oct 18 '18 10:10 benmaier

But like in webweb, could we not have a feature "Save to HTML" that creates a standalone html file which people can put in their keynote presentations and web-based research papers? Maybe this should be done on the JavaScript side, but I imagine it's possible and useful in many cases.

ulfaslak avatar Apr 24 '19 06:04 ulfaslak

I've recently added an export feature to github.com/benmaier/tacoma, so it is feasible, but one still would have to start a webserver to view the page -- the reason being that javascript does not load files if it is not run from a server. In webweb, they put all the sources (d3, colors, network data) in a single HTML file, apparently that's why it works. Do we want that?

benmaier avatar Apr 24 '19 15:04 benmaier

apparently there's some arguments against loading data as raw JavaScript, they would, however, not directly apply to us: https://betterexplained.com/articles/using-json-to-exchange-data/ . Mostly security reasons

I still think it'd a bit messy though :)

benmaier avatar Apr 24 '19 16:04 benmaier