Index: trunk/UTIL/PYTHON/bibweb/ads.py
===================================================================
--- trunk/UTIL/PYTHON/bibweb/ads.py	(revision 1061)
+++ trunk/UTIL/PYTHON/bibweb/ads.py	(revision 1141)
@@ -3,5 +3,5 @@
 ## -----------------------------------------------------------------
 ## Purpose: make a nice publication page with an ADS database link
-## Author: Aymeric Spiga 19/05/2012
+## Author: Aymeric Spiga 19/05/2013
 ## -----------------------------------------------------------------
 ## NB: uses BIBTEX2HTML https://www.lri.fr/~filliatr/bibtex2html/doc/manual.html
@@ -18,5 +18,6 @@
              retrieve = True,
              addpdf = None,
-             addlink = None):
+             addlink = None,
+             target=None):
 
     htmlcontent = ""
@@ -37,5 +38,5 @@
     ### if linkads is None, we set it to "link.authorref"
     if linkads is None: 
-      linkads = 'link.'+authorref
+      linkads = authorref+'.link'
 
     ### GET INFO FROM ADS
@@ -169,2 +170,15 @@
     print >> htmlmain, htmlcontent
     htmlmain.close()
+
+    ## move results to target directory and remove txt files
+    if target is None: target=authorref+"dir"
+    target=target+"/"
+    arg = target,\
+          authorref+"*.html",\
+          authorref+"*.bib",\
+          authorref+"*.txt",\
+          target,\
+          target+linkads+".bib"
+    os.system( "mkdir -p %s ; mv %s %s %s %s ; mv %s ./" % (arg) )
+
+
Index: trunk/UTIL/PYTHON/bibweb/basic.py
===================================================================
--- trunk/UTIL/PYTHON/bibweb/basic.py	(revision 1061)
+++ trunk/UTIL/PYTHON/bibweb/basic.py	(revision 1141)
@@ -2,7 +2,7 @@
 import ads
 
-ads.makepage('pub',\
+ads.makepage('feynman',\
              retrieve = True,\
              listyear = range(1990,1938,-1),\
-             linkads = "link.feynman",\
+             linkads = "feynman.link",\
              title = "<CENTER><H2><EM><font color='#B8860B;'>Richard Feynman's publications</font></EM></H2></CENTER>")
Index: trunk/UTIL/PYTHON/bibweb/header.html
===================================================================
--- trunk/UTIL/PYTHON/bibweb/header.html	(revision 1061)
+++ trunk/UTIL/PYTHON/bibweb/header.html	(revision 1141)
@@ -53,4 +53,5 @@
 <li><a href="../teaching.html">Teaching</a></li>
 <li><a href="http://www-mars.lmd.jussieu.fr/mars/access.html">MCD</a></li>
+<li><a href="../planetoplot/index.html">PLANETOPLOT</a></li>
 </ul> 
 </div> 
Index: trunk/UTIL/PYTHON/bibweb/inpress.html
===================================================================
--- trunk/UTIL/PYTHON/bibweb/inpress.html	(revision 1061)
+++ trunk/UTIL/PYTHON/bibweb/inpress.html	(revision 1141)
@@ -1,2 +1,3 @@
+<!--
 <h3>In press or just published</h3>
 <p>
@@ -9,2 +10,15 @@
 </p>
 <hr><br>
+
+
+<h3>In press or just published</h3><br>
+<p>
+<b>A Thermal Plume Model for the Martian Convective Boundary Layer</b><br>
+Arnaud Colaitis, Aymeric Spiga, Frederic Hourdin, Catherine Rio, Francois Forget, Ehouarn Millour (2013)<br>
+<i>Journal of Geophysical Research</i>, in press<br>
+<a href="http://onlinelibrary.wiley.com/doi/10.1002/jgre.20104/abstract">[early view]</a>
+<a href="http://arxiv.org/abs/1306.6215">[arxiv link]</a><br>
+</p>
+<hr><br>
+
+-->
Index: trunk/UTIL/PYTHON/bibweb/lmdwebsite.py
===================================================================
--- trunk/UTIL/PYTHON/bibweb/lmdwebsite.py	(revision 1061)
+++ trunk/UTIL/PYTHON/bibweb/lmdwebsite.py	(revision 1141)
@@ -29,5 +29,5 @@
              retrieve = False,\
              customcond = ''' -c 'author:"Forget"' ''',\
-             listyear = range(2013,1992,-1),\
+             listyear = range(2014,1992,-1),\
              linkads = "link.LMD_planeto",\
              title = "<CENTER><H2><EM><font color='#B8860B;'>Francois Forget's peer-reviewed publications</font></EM></H2></CENTER>")
@@ -36,5 +36,5 @@
              retrieve = False,\
              customcond = ''' -c 'author:"Lebonnois"' ''',\
-             listyear = range(2013,1998,-1),\
+             listyear = range(2014,1998,-1),\
              linkads = "link.LMD_planeto",\
              title = "<CENTER><H2><EM><font color='#B8860B;'>Sebastien Lebonnois's peer-reviewed publications</font></EM></H2></CENTER>")
@@ -43,5 +43,5 @@
              retrieve = False,\
              customcond = ''' -c 'author:"Spiga"' ''',\
-             listyear = range(2013,2006,-1),\
+             listyear = range(2014,2006,-1),\
              linkads = "link.LMD_planeto",\
              title = "<CENTER><H2><EM><font color='#B8860B;'>Aymeric Spiga's peer-reviewed publications</font></EM></H2></CENTER>")
@@ -50,5 +50,5 @@
              retrieve = False,\
              customcond = ''' -c 'author:"Millour"' ''',\
-             listyear = range(2013,2007,-1),\
+             listyear = range(2014,2007,-1),\
              linkads = "link.LMD_planeto",\
              title = "<CENTER><H2><EM><font color='#B8860B;'>Ehouarn Millour's peer-reviewed publications</font></EM></H2></CENTER>")
@@ -56,5 +56,5 @@
 ads.makepage('pub',\
              retrieve = False,\
-             listyear = range(2013,1992,-1),\
+             listyear = range(2014,1992,-1),\
              linkads = "link.LMD_planeto",\
              title = "<CENTER><H2><EM><font color='#B8860B;'>Peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>",\
Index: trunk/UTIL/PYTHON/bibweb/mywebsite.py
===================================================================
--- trunk/UTIL/PYTHON/bibweb/mywebsite.py	(revision 1061)
+++ trunk/UTIL/PYTHON/bibweb/mywebsite.py	(revision 1141)
@@ -7,5 +7,5 @@
              customcond = ''' -c 'abstract:"devil"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about dust devils</h2>")
 
@@ -15,5 +15,5 @@
              customcond = ''' -c 'abstract:"gravity wave"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about gravity waves</h2>")
 
@@ -23,5 +23,5 @@
              customcond = ''' -c 'abstract:"mesoscale"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about mesoscale meteorology</h2>")
 
@@ -31,5 +31,5 @@
              customcond = ''' -c 'title:"cloud"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about clouds</h2>")
 
@@ -39,5 +39,5 @@
              customcond = ''' -c 'title:"Earth" or title:"terrestrial" or title:"Andes"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about the Earth</h2>")
 
@@ -47,5 +47,5 @@
              customcond = ''' -c 'title:"Mars" or title:"martian"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about Mars</h2>")
 
@@ -55,5 +55,5 @@
              customcond = ''' -c 'title:"boundary layer" or title:"microscale" or title:"large-eddy simulations"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about planetary boundary layer</h2>")
 
@@ -63,5 +63,5 @@
              customcond = ''' -c 'title:"spectrometer"' ''',\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "<h2>Publications about remote sensing</h2>")
 
@@ -69,7 +69,7 @@
              embedded = True,\
              retrieve = False,\
-             listyear = [2013,2012,2011,2010,2009,2008,2007],\
+             listyear = [2014,2013,2012,2011,2010,2009,2008,2007],\
              linkads = "link.spiga",\
-             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
+             addpdf = "REF/",\
              title = "",\
 addlink = '''
