1 | #! /usr/bin/env python |
---|
2 | import ads |
---|
3 | |
---|
4 | ####### |
---|
5 | lk = "lmdplaneto.link" |
---|
6 | anneec = 2014 |
---|
7 | gencond = ''' -c 'not journal:"Discussions"' ''' # to solve EGU journal duplication |
---|
8 | ####### |
---|
9 | |
---|
10 | ads.makepage('pubmars',\ |
---|
11 | retrieve = True,\ |
---|
12 | customcond = gencond + ''' -c 'title:"Mars" or title:"martian"' ''',\ |
---|
13 | linkads = lk,\ |
---|
14 | printnum = True,\ |
---|
15 | title = "<CENTER><H2><EM><font color='#B8860B;'>Mars peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
16 | |
---|
17 | ads.makepage('pubtitan',\ |
---|
18 | retrieve = False,\ |
---|
19 | customcond = gencond + ''' -c 'title:"Titan"' ''',\ |
---|
20 | linkads = lk,\ |
---|
21 | printnum = True,\ |
---|
22 | title = "<CENTER><H2><EM><font color='#B8860B;'>Titan peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
23 | |
---|
24 | ads.makepage('pubvenus',\ |
---|
25 | retrieve = False,\ |
---|
26 | customcond = gencond + ''' -c 'title:"Venus" or title:"venusian"' ''',\ |
---|
27 | linkads = lk,\ |
---|
28 | printnum = True,\ |
---|
29 | title = "<CENTER><H2><EM><font color='#B8860B;'>Venus peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
30 | |
---|
31 | ads.makepage('pubexo',\ |
---|
32 | retrieve = False,\ |
---|
33 | customcond = gencond + ''' -c 'abstract:"exoplanet" or title:"habitable" or title:"habitability"' ''',\ |
---|
34 | linkads = lk,\ |
---|
35 | printnum = True,\ |
---|
36 | title = "<CENTER><H2><EM><font color='#B8860B;'>Exoplanets peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
37 | |
---|
38 | ads.makepage('pubforget',\ |
---|
39 | retrieve = False,\ |
---|
40 | customcond = gencond + ''' -c 'author:"Forget"' ''',\ |
---|
41 | listyear = range(anneec,1993-1,-1),\ |
---|
42 | linkads = lk,\ |
---|
43 | printnum = True,\ |
---|
44 | title = "<CENTER><H2><EM><font color='#B8860B;'>Francois Forget's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
45 | |
---|
46 | ads.makepage('publebonnois',\ |
---|
47 | retrieve = False,\ |
---|
48 | customcond = gencond + ''' -c 'author:"Lebonnois"' ''',\ |
---|
49 | listyear = range(anneec,1999-1,-1),\ |
---|
50 | linkads = lk,\ |
---|
51 | printnum = True,\ |
---|
52 | title = "<CENTER><H2><EM><font color='#B8860B;'>Sebastien Lebonnois's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
53 | |
---|
54 | ads.makepage('pubspiga',\ |
---|
55 | retrieve = False,\ |
---|
56 | customcond = gencond + ''' -c 'author:"Spiga"' ''',\ |
---|
57 | listyear = range(anneec,2007-1,-1),\ |
---|
58 | linkads = lk,\ |
---|
59 | printnum = True,\ |
---|
60 | title = "<CENTER><H2><EM><font color='#B8860B;'>Aymeric Spiga's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
61 | |
---|
62 | ads.makepage('pubmillour',\ |
---|
63 | retrieve = False,\ |
---|
64 | customcond = gencond + ''' -c 'author:"Millour"' ''',\ |
---|
65 | listyear = range(anneec,2008-1,-1),\ |
---|
66 | linkads = lk,\ |
---|
67 | printnum = True,\ |
---|
68 | title = "<CENTER><H2><EM><font color='#B8860B;'>Ehouarn Millour's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
69 | |
---|
70 | ads.makepage('pub',\ |
---|
71 | retrieve = False,\ |
---|
72 | listyear = range(anneec,1993-1,-1),\ |
---|
73 | linkads = lk,\ |
---|
74 | customcond = gencond,\ |
---|
75 | printnum = True,\ |
---|
76 | title = "<CENTER><H2><EM><font color='#B8860B;'>Peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>",\ |
---|
77 | addlink = ''' |
---|
78 | <br> |
---|
79 | Planet: |
---|
80 | <a href="pubmars.html">Mars</a> / |
---|
81 | <a href="pubvenus.html">Venus</a> / |
---|
82 | <a href="pubtitan.html">Titan</a> / |
---|
83 | <a href="pubexo.html">Exoplanets</a><br> |
---|
84 | <br> |
---|
85 | Author: |
---|
86 | <a href="pubforget.html">F. Forget</a> / |
---|
87 | <a href="publebonnois.html">S. Lebonnois</a> / |
---|
88 | <a href="pubmillour.html">E. Millour</a> / |
---|
89 | <a href="pubspiga.html">A. Spiga</a> / |
---|
90 | <br> |
---|
91 | <hr> |
---|
92 | ''',\ |
---|
93 | target="/home/marshttp/www-mars/pubplaneto") |
---|