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