Skip to content

Commit 23c1ee5

Browse files
committed
fixed the missing video on pdf with a screenshot and a link
1 parent 187ee72 commit 23c1ee5

11 files changed

Lines changed: 44 additions & 28 deletions
254 KB
Loading

docs/generated-html/working-from-the-source-en.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ <h2 id="_presentation_of_this_tutorial">Presentation of this tutorial</h2>
601601
</div>
602602
</div>
603603
<div class="paragraph">
604-
<p>For this tutorial you need:</p>
604+
<p>For this tutorial you will need:</p>
605605
</div>
606606
<div class="ulist">
607607
<ul>
@@ -947,7 +947,7 @@ <h2 id="_the_end">the end</h2>
947947
<div id="footer">
948948
<div id="footer-text">
949949
Version 1.0<br>
950-
Last updated 2017-02-28 17:39:18 CET
950+
Last updated 2017-02-28 17:55:14 CET
951951
</div>
952952
</div>
953953
</body>
236 KB
Binary file not shown.
254 KB
Loading

docs/generated-slides/subdir/working-from-the-source-en_temp_common.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,14 @@ We should get something like:
4545

4646
video::Y3jk-_QaFx4[youtube, height=315, width=560, align="center"]
4747

48+
//PDF: image::en/developers/screenshot-encircling-pdf.png[align="center",title="Circles enclosing communities"]
49+
50+
//PDF: link to animated version: https://www.youtube.com/watch?v=Y3jk-_QaFx4
51+
4852

4953
//ST: !
5054

51-
For this tutorial you need:
55+
For this tutorial you will need:
5256

5357
- some knowledge of Java.
5458

docs/generated-slides/subdir/working-from-the-source-en_temp_html.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,20 @@ We will:
3636

3737

3838
//ST: !
39-
The modified version of Gephi that we will implement, as for effect to add circles around nodes communities.
39+
The modified version of Gephi that we will implement will have for effect to add circles around nodes communities.
4040

41-
This project originates from https://twitter.com/DataToViz/status/828840269072080896[Susie Lu's creation].)
41+
This project originates from https://twitter.com/DataToViz/status/828840269072080896[Susie Lu's creation].
4242

4343
We should get something like:
4444

4545
//ST: !
4646

4747
video::Y3jk-_QaFx4[youtube, height=315, width=560, align="center"]
4848

49+
//PDF: image::en/developers/screenshot-encircling-pdf.png[align="center",title="Circles enclosing communities"]
50+
51+
//PDF: link to animated version: https://www.youtube.com/watch?v=Y3jk-_QaFx4
52+
4953

5054
//ST: !
5155

@@ -117,7 +121,7 @@ image::en/developers/git-clone-gephi-4-en.png[align="center", title="Click on Op
117121
{nbsp} +
118122

119123
//ST: !
120-
Select (highlight in blue) the line mentionning Gephi, and click on "Open"
124+
Select (highlight in blue) the line mentioning Gephi, and click on "Open"
121125

122126
image::en/developers/git-clone-gephi-5-en.png[align="center", title="Click on Open Project"]
123127
{nbsp} +
@@ -168,7 +172,7 @@ We are going to add circles which will enclose groups of nodes (aka communities)
168172
//ST: !
169173
==== 1. Open the `VisualizationImpl` module
170174

171-
In the gephi project, in the folder Modules, double click on the `VisualizationImpl`module:
175+
In the gephi project, in the folder Modules, double click on the `VisualizationImpl` module:
172176

173177

174178
image::en/developers/enclosing-circles-1-en.png[align="center", title="Opening VisualizationImpl"]
@@ -201,6 +205,7 @@ No need to understand most of the code in this class.
201205
But we see that starting at https://github.com/seinecle/gephi/blob/enclosing-circles-opengl/modules/VisualizationImpl/src/main/java/org/gephi/visualization/opengl/CompatibilityEngine.java#L194[line 194], a loop on nodes starts:
202206

203207
We will put nodes in a map (declared above, at https://github.com/seinecle/gephi/blob/enclosing-circles-opengl/modules/VisualizationImpl/src/main/java/org/gephi/visualization/opengl/CompatibilityEngine.java#L155[line 155]) where:
208+
204209
- keys are the name of the cluster nodes belong too,
205210
- values are the Set of Nodes corresponding to the cluster.
206211

@@ -216,20 +221,17 @@ Then, https://github.com/seinecle/gephi/blob/enclosing-circles-opengl/modules/Vi
216221
The logic of the circle creation in OpenGL can be understood rather easily, by copying and modyfying the code used just above for the creation of nodes, and by looking at the online documentation on http://www.openglprojects.in/2014/03/draw-circle-opengl.html#gsc.tab=0[how to create shapes in OpenGL].
217222

218223
//ST: !
219-
That's it. Now just run Gephi from source as we did before. From Gephi, open a network where nodes have a "cluster" attribute, and Gephi will draw circles around nodes from the same clusters:
224+
That's it. Now just run Gephi from source as we did before. From Gephi, open a network where nodes have a "Modularity Class" attribute, and Gephi will draw circles around nodes from the same clusters:
220225

221226
//ST: !
222227

223228
video::Y3jk-_QaFx4[youtube, height=315, width=560, align="center"]
224229

225-
226-
227-
== More tutorials on importing data to Gephi
228-
//ST: More tutorials on importing data to Gephi
230+
== More tutorials on using the source code of Gephi
231+
//ST: More tutorials on using the source code of Gephi
229232
//ST: !
230233

231-
- https://github.com/gephi/gephi/wiki/Import-CSV-Data[The Gephi wiki on importing csv]
232-
- https://www.youtube.com/watch?v=3Im7vNRA2ns[Video "How to import a CSV into Gephi" by Jen Golbeck]
234+
- https://github.com/gephi/gephi[The Gephi readme with some instructions for developers]
233235

234236
== the end
235237

docs/generated-slides/subdir/working-from-the-source-en_temp_pdf.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,20 @@ We will:
3636

3737

3838
//ST: !
39-
The modified version of Gephi that we will implement, as for effect to add circles around nodes communities.
39+
The modified version of Gephi that we will implement will have for effect to add circles around nodes communities.
4040

41-
This project originates from https://twitter.com/DataToViz/status/828840269072080896[Susie Lu's creation].)
41+
This project originates from https://twitter.com/DataToViz/status/828840269072080896[Susie Lu's creation].
4242

4343
We should get something like:
4444

4545
//ST: !
4646

4747
video::Y3jk-_QaFx4[youtube, height=315, width=560, align="center"]
4848

49+
image::en/developers/screenshot-encircling-pdf.png[align="center",title="Circles enclosing communities"]
50+
51+
link to animated version: https://www.youtube.com/watch?v=Y3jk-_QaFx4
52+
4953

5054
//ST: !
5155

@@ -117,7 +121,7 @@ image::en/developers/git-clone-gephi-4-en.png[align="center", title="Click on Op
117121
{nbsp} +
118122

119123
//ST: !
120-
Select (highlight in blue) the line mentionning Gephi, and click on "Open"
124+
Select (highlight in blue) the line mentioning Gephi, and click on "Open"
121125

122126
image::en/developers/git-clone-gephi-5-en.png[align="center", title="Click on Open Project"]
123127
{nbsp} +
@@ -168,7 +172,7 @@ We are going to add circles which will enclose groups of nodes (aka communities)
168172
//ST: !
169173
==== 1. Open the `VisualizationImpl` module
170174

171-
In the gephi project, in the folder Modules, double click on the `VisualizationImpl`module:
175+
In the gephi project, in the folder Modules, double click on the `VisualizationImpl` module:
172176

173177

174178
image::en/developers/enclosing-circles-1-en.png[align="center", title="Opening VisualizationImpl"]
@@ -201,6 +205,7 @@ No need to understand most of the code in this class.
201205
But we see that starting at https://github.com/seinecle/gephi/blob/enclosing-circles-opengl/modules/VisualizationImpl/src/main/java/org/gephi/visualization/opengl/CompatibilityEngine.java#L194[line 194], a loop on nodes starts:
202206

203207
We will put nodes in a map (declared above, at https://github.com/seinecle/gephi/blob/enclosing-circles-opengl/modules/VisualizationImpl/src/main/java/org/gephi/visualization/opengl/CompatibilityEngine.java#L155[line 155]) where:
208+
204209
- keys are the name of the cluster nodes belong too,
205210
- values are the Set of Nodes corresponding to the cluster.
206211

@@ -216,20 +221,17 @@ Then, https://github.com/seinecle/gephi/blob/enclosing-circles-opengl/modules/Vi
216221
The logic of the circle creation in OpenGL can be understood rather easily, by copying and modyfying the code used just above for the creation of nodes, and by looking at the online documentation on http://www.openglprojects.in/2014/03/draw-circle-opengl.html#gsc.tab=0[how to create shapes in OpenGL].
217222

218223
//ST: !
219-
That's it. Now just run Gephi from source as we did before. From Gephi, open a network where nodes have a "cluster" attribute, and Gephi will draw circles around nodes from the same clusters:
224+
That's it. Now just run Gephi from source as we did before. From Gephi, open a network where nodes have a "Modularity Class" attribute, and Gephi will draw circles around nodes from the same clusters:
220225

221226
//ST: !
222227

223228
video::Y3jk-_QaFx4[youtube, height=315, width=560, align="center"]
224229

225-
226-
227-
== More tutorials on importing data to Gephi
228-
//ST: More tutorials on importing data to Gephi
230+
== More tutorials on using the source code of Gephi
231+
//ST: More tutorials on using the source code of Gephi
229232
//ST: !
230233

231-
- https://github.com/gephi/gephi/wiki/Import-CSV-Data[The Gephi wiki on importing csv]
232-
- https://www.youtube.com/watch?v=3Im7vNRA2ns[Video "How to import a CSV into Gephi" by Jen Golbeck]
234+
- https://github.com/gephi/gephi[The Gephi readme with some instructions for developers]
233235

234236
== the end
235237

docs/generated-slides/subdir/working-from-the-source-en_temp_slides.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,14 @@ We should get something like:
4646

4747
video::Y3jk-_QaFx4[youtube, height=315, width=560, align="center"]
4848

49+
//PDF: image::en/developers/screenshot-encircling-pdf.png[align="center",title="Circles enclosing communities"]
50+
51+
//PDF: link to animated version: https://www.youtube.com/watch?v=Y3jk-_QaFx4
52+
4953

5054
== !
5155

52-
For this tutorial you need:
56+
For this tutorial you will need:
5357

5458
- some knowledge of Java.
5559

docs/generated-slides/working-from-the-source-en.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<div class="paragraph"><p>This project originates from <a href="https://twitter.com/DataToViz/status/828840269072080896">Susie Lu&#8217;s creation</a>.</p></div>
9999
<div class="paragraph"><p>We should get something like:</p></div></section>
100100
<section><div class="videoblock"><iframe width="560" height="315" src="https://www.youtube.com/embed/Y3jk-_QaFx4?rel=0" frameborder="0" allowfullscreen=""></iframe></div></section>
101-
<section><div class="paragraph"><p>For this tutorial you need:</p></div>
101+
<section><div class="paragraph"><p>For this tutorial you will need:</p></div>
102102
<div class="ulist"><ul><li><p>some knowledge of Java.</p></li><li><p>NetBeans installed (<a href="https://dl.dropboxusercontent.com/u/28091845/coursera/codapps/session%201/module%201%20-%20installing%20NetBeans%20ans%20Codename%20One%20on%20a%20PC.pdf">up to date instructions here</a>). Eclipse, IntelliJ or any other code editor won&#8217;t do.</p></li><li><p>a good internet connection since we will download a lot of small dependencies.</p></li><li><p>no Github account is necessary (if you have one, fork Gephi before doing all the steps below).</p></li></ul></div></section>
103103
<section id="_downloading_the_source_code"><h2>Downloading the source code</h2></section>
104104
<section><div class="olist arabic"><ol class="arabic"><li><p>Open NetBeans.</p></li><li><p>In NetBeans, go to <code>Team &#8594; Git &#8594; Clone</code></p></li></ol></div>

src/main/asciidoc/en/developers/working-from-the-source-en.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,14 @@ We should get something like:
4545

4646
video::Y3jk-_QaFx4[youtube, height=315, width=560, align="center"]
4747

48+
//PDF: image::en/developers/screenshot-encircling-pdf.png[align="center",title="Circles enclosing communities"]
49+
50+
//PDF: link to animated version: https://www.youtube.com/watch?v=Y3jk-_QaFx4
51+
4852

4953
//ST: !
5054

51-
For this tutorial you need:
55+
For this tutorial you will need:
5256

5357
- some knowledge of Java.
5458

0 commit comments

Comments
 (0)