Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Initial commit for split doc (in order to let Pierre play with it). Please do not...
[simgrid.git] / doc / user_guide / doxygen / use.doc
diff --git a/doc/user_guide/doxygen/use.doc b/doc/user_guide/doxygen/use.doc
new file mode 100644 (file)
index 0000000..3933f92
--- /dev/null
@@ -0,0 +1,49 @@
+/*! \page use Using SimGrid
+
+\section use_welcome Welcome to SimGrid!
+
+If you don't know were to look to start with, you should probably have
+a look at the following presentation first to get the basic concepts.
+Afterward, you probably want to proceed to the \ref MSG_API. Of
+course, if you're curious or if you know what you want, you may prefer
+to go to \ref SMPI_API, or even \ref GRAS_API.
+
+The scientific bases of the SimGrid project are presented in a 3 ou 4
+hours-long tutorial. It can be found at the following locations.
+ - https://gforge.inria.fr/plugins/scmgit/cgi-bin/gitweb.cgi?p=simgrid/propaganda.git;a=blob_plain;f=tutorial/simgrid-tutorial.pdf;hb=HEAD
+ - http://webloria.loria.fr/~quinson/blog/2010/0628/Tutorial_at_HPCS/
+
+\latexonly
+\includepdf[nup=2x4,pages=1-]{../webcruft/simgrid-101.pdf}
+\endlatexonly
+
+\htmlonly
+<script language="javascript">
+var base="simgrid-101",max=30,cur=1;
+function pad(){ return cur < 10 ? '00' + cur : cur < 100 ? '0' + cur : '' + cur; }
+function slidemove(dir) {
+        var nums=document.getElementById('nums'), display=document.getElementById('display');
+        if (cur+dir>0 && cur+dir<=max)  cur+=dir;
+       display.src=base+'_'+pad()+'.png';
+       nums.innerHTML=(cur)+'/'+max;
+}
+</script>
+
+<div id='blah' style='text-align:center;'>
+  <div id='practical-simgrid' >
+    <img src='simgrid-101_001.png' id="display" onclick='slidemove(1)'/>
+    <br/>
+    <form>
+      <input type='button' value='&laquo; Previous' onclick="slidemove(-1)"/>
+      &nbsp;&nbsp;
+      <span id="nums">1/30</span>&nbsp;&nbsp
+      <input type='button' value='Next &raquo;' onclick="slidemove(1)"/>
+      <br/>
+      <a href='simgrid-101.pdf'>Download PDF version</a>
+    </form>
+  </div>
+</div>
+\endhtmlonly
+
+
+*/
\ No newline at end of file