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

Last change on this file since 1144 was 1143, checked in by aslmd, 11 years ago

bibweb: a version with clean repositories 2

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1#! /usr/bin/env python
2import ads
3
4#######
5lk = "lmdplaneto.link"
6#######
7
8ads.makepage('pubmars',\
9             retrieve = True,\
10             customcond = ''' -c 'title:"Mars" or title:"martian"' ''',\
11             linkads = lk,\
12             title = "<CENTER><H2><EM><font color='#B8860B;'>Mars peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>")
13
14ads.makepage('pubtitan',\
15             retrieve = False,\
16             customcond = ''' -c 'title:"Titan"' ''',\
17             linkads = lk,\
18             title = "<CENTER><H2><EM><font color='#B8860B;'>Titan peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>")
19
20ads.makepage('pubvenus',\
21             retrieve = False,\
22             customcond = ''' -c 'title:"Venus" or title:"venusian"' ''',\
23             linkads = lk,\
24             title = "<CENTER><H2><EM><font color='#B8860B;'>Venus peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>")
25
26ads.makepage('pubexo',\
27             retrieve = False,\
28             customcond = ''' -c 'abstract:"exoplanet" or title:"habitable" or title:"habitability"' ''',\
29             linkads = lk,\
30             title = "<CENTER><H2><EM><font color='#B8860B;'>Exoplanets peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>")
31
32ads.makepage('pubforget',\
33             retrieve = False,\
34             customcond = ''' -c 'author:"Forget"' ''',\
35             listyear = range(2014,1992,-1),\
36             linkads = lk,\
37             title = "<CENTER><H2><EM><font color='#B8860B;'>Francois Forget's peer-reviewed publications</font></EM></H2></CENTER>")
38
39ads.makepage('publebonnois',\
40             retrieve = False,\
41             customcond = ''' -c 'author:"Lebonnois"' ''',\
42             listyear = range(2014,1998,-1),\
43             linkads = lk,\
44             title = "<CENTER><H2><EM><font color='#B8860B;'>Sebastien Lebonnois's peer-reviewed publications</font></EM></H2></CENTER>")
45
46ads.makepage('pubspiga',\
47             retrieve = False,\
48             customcond = ''' -c 'author:"Spiga"' ''',\
49             listyear = range(2014,2006,-1),\
50             linkads = lk,\
51             title = "<CENTER><H2><EM><font color='#B8860B;'>Aymeric Spiga's peer-reviewed publications</font></EM></H2></CENTER>")
52
53ads.makepage('pubmillour',\
54             retrieve = False,\
55             customcond = ''' -c 'author:"Millour"' ''',\
56             listyear = range(2014,2007,-1),\
57             linkads = lk,\
58             title = "<CENTER><H2><EM><font color='#B8860B;'>Ehouarn Millour's peer-reviewed publications</font></EM></H2></CENTER>")
59
60ads.makepage('pub',\
61             retrieve = False,\
62             listyear = range(2014,1992,-1),\
63             linkads = lk,\
64             title = "<CENTER><H2><EM><font color='#B8860B;'>Peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>",\
65addlink = '''
66<br>
67Planet:
68<a href="pubmars.html">Mars</a> /
69<a href="pubvenus.html">Venus</a> /
70<a href="pubtitan.html">Titan</a> /
71<a href="pubexo.html">Exoplanets</a><br>
72<br>
73Author:
74<a href="pubforget.html">F. Forget</a> /
75<a href="publebonnois.html">S. Lebonnois</a> /
76<a href="pubspiga.html">A. Spiga</a> /
77<a href="pubmillour.html">E. Millour</a><br>
78<br>
79<hr>
80''',\
81             target="lmdplaneto")
Note: See TracBrowser for help on using the repository browser.