source: trunk/UTIL/PYTHON/bibweb/lmdwebsite.py @ 967

Last change on this file since 967 was 967, checked in by aslmd, 12 years ago

UTIL PYTHON a tool to build automatic web page with ADS

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