source: trunk/UTIL/PYTHON/bibweb/planetowebsite/lmdplaneto.py @ 1186

Last change on this file since 1186 was 1179, checked in by aslmd, 11 years ago

BIBWEB python. various improvements: big LMD script, teams, no year without pubs, pub counts, verbose mode.

  • Property svn:executable set to *
File size: 3.8 KB
Line 
1#! /usr/bin/env python
2import ads
3
4#######
5lk = "lmdplaneto.link"
6anneec = 2014
7gencond = ''' -c 'not journal:"Discussions"' ''' # to solve EGU journal duplication
8#######
9
10ads.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
17ads.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
24ads.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
31ads.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
38ads.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
46ads.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
54ads.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
62ads.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
70ads.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>",\
77addlink = '''
78<br>
79Planet:
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>
85Author:
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''',\
93target="/home/marshttp/www-mars/pubplaneto")
Note: See TracBrowser for help on using the repository browser.