From f5347a4bcc318b52f9101ba4c9bb1d042924d0b4 Mon Sep 17 00:00:00 2001 From: Jonas Handwerker Date: Tue, 26 May 2026 21:39:06 +0200 Subject: [PATCH 1/2] Update dead link for Pajek NET format Based on archive.org snapshots, the Gephi project moved documentation sometime between September 2025 and May 2026. The new page is almost identical to the old one, the only thing missing is the link to the Pajek manual. --- README.md | 2 +- src/NET/Net.jl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fbee3df..24faee8 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,6 @@ The current design avoids populating your environment with unnecessary dependenc [GML]: https://en.wikipedia.org/wiki/Graph_Modelling_Language [Graph6]: https://users.cecs.anu.edu.au/~bdm/data/formats.html [GraphML]: https://en.wikipedia.org/wiki/GraphML -[Pajek NET]: https://gephi.org/users/supported-graph-formats/pajek-net-format/ +[Pajek NET]: https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format [GEXF]: https://gephi.org/gexf/format/ [DOT]: https://en.wikipedia.org/wiki/DOT_(graph_description_language) diff --git a/src/NET/Net.jl b/src/NET/Net.jl index 9db87b9..a0e2753 100644 --- a/src/NET/Net.jl +++ b/src/NET/Net.jl @@ -12,7 +12,7 @@ struct NETFormat <: AbstractGraphFormat end """ savenet(io, g, gname="g") -Write a graph `g` to an IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/) +Write a graph `g` to an IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format) format. Return 1 (number of graphs written). """ function savenet(io::IO, g::Graphs.AbstractGraph, gname::String="g") @@ -32,7 +32,7 @@ end """ loadnet(io::IO, gname="graph") -Read a graph from IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/) +Read a graph from IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format) format. Return the graph. """ function loadnet(io::IO, gname::String="graph") From be2120ffaa28a7e60fa354b8c459ac639864b206 Mon Sep 17 00:00:00 2001 From: Jonas Handwerker Date: Tue, 26 May 2026 21:47:53 +0200 Subject: [PATCH 2/2] Update dead link for GEXF format Again, the gephi docs were revamped at the end of 2025. Juding from the archive.org snapshots, the new page has much more details and examples than the old one. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24faee8..98864f4 100644 --- a/README.md +++ b/README.md @@ -54,5 +54,5 @@ The current design avoids populating your environment with unnecessary dependenc [Graph6]: https://users.cecs.anu.edu.au/~bdm/data/formats.html [GraphML]: https://en.wikipedia.org/wiki/GraphML [Pajek NET]: https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format -[GEXF]: https://gephi.org/gexf/format/ +[GEXF]: https://docs.gephi.org/desktop/User_Manual/Import/GEXF_File_Format [DOT]: https://en.wikipedia.org/wiki/DOT_(graph_description_language)