source: trunk/UTIL/PYTHON/bibweb/mywebsite.py @ 1062

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

UTIL PYTHON bibweb support for local pdf

  • Property svn:executable set to *
File size: 3.4 KB
Line 
1#! /usr/bin/env python
2import ads
3
4ads.makepage('pubdd',\
5             embedded = True,\
6             retrieve = True,\
7             customcond = ''' -c 'abstract:"devil"' ''',\
8             linkads = "link.spiga",\
9             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
10             title = "<h2>Publications about dust devils</h2>")
11
12ads.makepage('pubgw',\
13             embedded = True,\
14             retrieve = False,\
15             customcond = ''' -c 'abstract:"gravity wave"' ''',\
16             linkads = "link.spiga",\
17             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
18             title = "<h2>Publications about gravity waves</h2>")
19
20ads.makepage('pubmeso',\
21             embedded = True,\
22             retrieve = False,\
23             customcond = ''' -c 'abstract:"mesoscale"' ''',\
24             linkads = "link.spiga",\
25             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
26             title = "<h2>Publications about mesoscale meteorology</h2>")
27
28ads.makepage('pubcloud',\
29             embedded = True,\
30             retrieve = False,\
31             customcond = ''' -c 'title:"cloud"' ''',\
32             linkads = "link.spiga",\
33             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
34             title = "<h2>Publications about clouds</h2>")
35
36ads.makepage('pubearth',\
37             embedded = True,\
38             retrieve = False,\
39             customcond = ''' -c 'title:"Earth" or title:"terrestrial" or title:"Andes"' ''',\
40             linkads = "link.spiga",\
41             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
42             title = "<h2>Publications about the Earth</h2>")
43
44ads.makepage('pubmars',\
45             embedded = True,\
46             retrieve = False,\
47             customcond = ''' -c 'title:"Mars" or title:"martian"' ''',\
48             linkads = "link.spiga",\
49             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
50             title = "<h2>Publications about Mars</h2>")
51
52ads.makepage('pubbl',\
53             embedded = True,\
54             retrieve = False,\
55             customcond = ''' -c 'title:"boundary layer" or title:"microscale" or title:"large-eddy simulations"' ''',\
56             linkads = "link.spiga",\
57             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
58             title = "<h2>Publications about planetary boundary layer</h2>")
59
60ads.makepage('pubremote',\
61             embedded = True,\
62             retrieve = False,\
63             customcond = ''' -c 'title:"spectrometer"' ''',\
64             linkads = "link.spiga",\
65             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
66             title = "<h2>Publications about remote sensing</h2>")
67
68ads.makepage('pub',\
69             embedded = True,\
70             retrieve = False,\
71             listyear = [2013,2012,2011,2010,2009,2008,2007],\
72             linkads = "link.spiga",\
73             addpdf = "http://dl.dropbox.com/u/11078310/my_papers/ref/",\
74             title = "",\
75addlink = '''
76Planet:
77<a href="pubmars.html">Mars</a> /
78<a href="pubearth.html">the Earth</a><br>
79Topic:
80<a href="pubmeso.html">Mesoscale meteorology</a> /
81<a href="pubremote.html">Remote sensing</a> /
82<a href="pubbl.html">Planetary Boundary layer</a> /
83<a href="pubcloud.html">Clouds</a> /
84<a href="pubdd.html">Dust devils</a> /
85<a href="pubgw.html">Gravity waves</a>
86'''+"<br><br /><hr><br>"+open('inpress.html').read())
Note: See TracBrowser for help on using the repository browser.