...
|
...
|
@@ -15,9 +15,11 @@ groupes[GDR]='Groupe de la Gauche démocrate et républicaine'
|
15
|
15
|
groupes[LT]='Groupe Libertés et Territoires'
|
16
|
16
|
groupes[NI]='Non inscrits'
|
17
|
17
|
|
18
|
|
-if test -n "${groupes[$groupe]}"; then
|
|
18
|
+if test -n "${groupes[$groupe]}" -a -n "${groupes[$groupe_ref]}"; then
|
19
|
19
|
groupes[$groupe]='/<p class="nomgroupe">'${groupes[$groupe]}' <span class="block topmargin">/,/<div class="TTgroupe topmargin-lg">/'
|
20
|
|
- groupes[$groupe_ref]='/<p class="nomgroupe">'${groupes[$groupe_ref]}' <span class="block topmargin">/,/<div class="TTgroupe topmargin-lg">/'
|
|
20
|
+ if test $groupe != $groupe_ref; then
|
|
21
|
+ groupes[$groupe_ref]='/<p class="nomgroupe">'${groupes[$groupe_ref]}' <span class="block topmargin">/,/<div class="TTgroupe topmargin-lg">/'
|
|
22
|
+ fi
|
21
|
23
|
else
|
22
|
24
|
echo "groupe \"$groupe\" inconnu:"
|
23
|
25
|
for g in ${!groupes[@]}; do
|
...
|
...
|
@@ -47,6 +49,7 @@ done
|
47
|
49
|
echo >> "$result"
|
48
|
50
|
|
49
|
51
|
last=$(wget -qO- 'http://www2.assemblee-nationale.fr/scrutins/liste/(legislature)/15/(type)/TOUS/(idDossier)/TOUS' | sed -rn 's,^.*<td class="denom">(.+)</td>.*$,\1,p' | head -1)
|
|
52
|
+last=1
|
50
|
53
|
for scrutin in $(seq $last); do
|
51
|
54
|
wget -qO- $tempfile "http://www2.assemblee-nationale.fr/scrutins/detail/(legislature)/15/(num)/$scrutin" > $tempfile
|
52
|
55
|
|